Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
fixing mySQL databases after transfering domain - HELP!
I had a few standard hosting accounts with Godaddy before I realized that a deluxe account would be much better (money wise). I have my entire forum backed up including the mysql database. Transfered everything over to the new hosting account, which requires the site to now be in a sub-folder instead of the root. The problem is that the mysql databases are only in the root folder, so it looks like my forum doesn't know where to look for the mysql database. How can I fix this problem? You can see the error messages here:
http://www.coltsalumni.org/forum
It looks like the problem is in the /appg/init_vanilla.php file but I don't know what to change to fix it. Thanks in advance for the help!
0
This discussion has been closed.
Comments
eg:
$Configuration['DATABASE_PATH'] = '/home/content/c/o/l/coltsalumni/html/forum/conf/database.php';
should be
$Configuration['DATABASE_PATH'] = '/home/content/b/e/n/bengoheen/html/coltsalumni.org/forum/conf/database.php';
$Configuration['LIBRARY_PATH'] = '/home/content/b/e/n/bengoheen/html/coltsalumni.org/forum/library/';
(line 6 of conf/settings.php)$Configuration['DATABASE_HOST'] = 'linhostssl16.prod.mesa1.secureserver.net'; $Configuration['DATABASE_NAME'] = 'SomeDBname'; $Configuration['DATABASE_USER'] = 'b_goheen'; $Configuration['DATABASE_PASSWORD'] = 'xxxxxx';
The address of the DB, the name of the DB, your db user name or your password might have changed.