by Kevin Duggan.
I am letting Moodle do everything, I did shange permissions of the folders to 777.. I had a person telling me to add .txt extension to the httaccess file which I could only find in the Moodledata folder and he said do the same thing w/ PHP.ini which I cant even find, here is the config.php which I think is good?
I have two folders one called, digitalmediauniversity.us and the other, digitalmedia_moodledata would the .us interfere in the main folder?
I changed permissions on both to 777.
Below is from the config.php
file, _________________________________
<?php // Moodle configuration file
unset($CFG);
global $CFG;
$CFG = new stdClass();
$CFG->dbtype = 'mysqli';
$CFG->dblibrary = 'native';
$CFG->dbhost = 'mysql.digitalmediauniversity.us';
$CFG->dbname = 'moodlekev';
$CFG->dbuser = '_user__';
$CFG->dbpass = '_pass_';
$CFG->prefix = 'mdl_';
$CFG->dboptions = array (
'dbpersist' => 0,
'dbsocket' => 0,
);
$CFG->wwwroot = 'http://www.digitalmediauniversity.us';
$CFG->dataroot = '/home/kelvis/digitalmedia_moodledata';
$CFG->admin = 'admin';
$CFG->directorypermissions = 0777;
require_once(dirname(__FILE__) . '/lib/setup.php');
// There is no php closing tag in this file,
// it is intentional because it prevents trailing whitespace problems!
Thanks
Kevin