There's no DB_USER or DB_PASSWORD in the config file. That might explain the error messages, though why these values are missing needs some investigation. I'll report a bug, but we won't be able to investigate right now. It'll make it into the next release cycle, which will likely be a few months. In the meantime if you do discover why these values were not written to the file, you can post your research here for later reference.
http://atutor.ca/atutor/mantis/view.php?id=5095
Here's a template you can use to replace the current config file, filing in the appropriate values
[php]
/************************************************************************/
/* ATutor */
/************************************************************************/
/* Copyright (c) 2002-2010 */
/* http://atutor.ca */
/* */
/* This program is free software. You can redistribute it and/or */
/* modify it under the terms of the GNU General Public License */
/* as published by the Free Software Foundation. */
/************************************************************************/
/* This file was generated by the ATutor 2.0.3 installation script. */
/* File generated 2012-03-29 11:03:49 */
/************************************************************************/
/************************************************************************/
/* the database user name */
define('DB_USER', 'replace_with_db_username');
/* the database password */
define('DB_PASSWORD', 'replace_with_db_password');
/* the database host */
define('DB_HOST', 'localhost');
/* the database tcp/ip port */
define('DB_PORT', '3306');
/* the database name */
define('DB_NAME', 'replace_with_db_name');
/* The prefix to add to table names to avoid conflicts with existing */
/* tables. Default: AT_ */
define('TABLE_PREFIX', 'AT_');
/* Where the course content files are located. This includes all file */
/* manager and imported files. If security is a concern, it is */
/* recommended that the content directory be moved outside of the web */
/* accessible area. */
define('AT_CONTENT_DIR', 'replace_with_path_to_content_directory');
/* Whether or not to use the default php.ini SMTP settings. */
/* If false, then mail will try to be sent using sendmail. */
define('MAIL_USE_SMTP', false);
/* Whether or not to use the AT_CONTENT_DIR as a protected directory. */
/* If set to FALSE then the content directory will be hard coded */
/* to ATutor_install_dir/content/ and AT_CONTENT_DIR will be ignored. */
/* This option is used for compatability with IIS and Apache 2. */
define('AT_FORCE_GET_FILE', TRUE);
/* DO NOT ALTER THIS LAST LINE */
define('AT_INSTALL', TRUE);
[/php]
[reply][b]In reply to:[/b]
I only have ports for the Database in my config file. There is nothing pertaining to viewing the website.
<?php
/************************************************************************/
/* ATu...
[op]forums/view.php?fid=7&pid=23722&page=1#23730[/op][/reply]