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.
Rename Vanilla folder for easy reference
Can someone please explain how I can install the Vanilla folder into something other than mydomain.com/Vanilla-1.1.1 and still have it work?
I want it to be more directory specific like this one:
http://lussumo.com/community/discussions/
Please advise.
0
This discussion has been closed.
Comments
Posted: Friday, 9 March 2007 at 11:45AM (AEDT)
There are some references in the database too I believe.
Can someone give doko a definitive list?
Here's a couple I found just now...
- conf/settings.php
- themes/...styles, CSS
Posted: Friday, 9 March 2007 at 2:40PM (AEDT)
Did you delete the old database?
Did you completely delete the old Vanilla install?
Posted: Friday, 9 March 2007 at 5:04PM (AEDT)
Create a test db connection script and use the same values to connect to the db as you did in Vanilla's install script - to make sure that your db hasn't changed in some way. Doing basic connection tests with mysql is pretty easy. Create a new blank text file called mysqltest.php and put this inside:
<?php // Turn on all errors error_reporting(E_ALL); // Customize your database connection $Host = "Your MySQL Host Name"; $User = "Your MySQL Username"; $Password = "Your MySQL Password"; $Database = "Your MySQL database name"; // Open a database connection (you may see some errors here) $Connection = mysql_connect($Host, $User, $Password); // Attempt to select your database if ($Connection && !mysql_select_db($Database, $Connection)) echo("Failed to connect to the '".$Database."' database."); ?>
Give that a go and see what happens.