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.
Cannot get started
I have installed MySql databases before, I have the right version of MySql.
I added a database called "vanilla" and a user with a password.
Installing Vanilla for the first time I get this message...
----------------------------------------------------------------------
The database responded with the following message:
Access denied for user: 'JoeV@srv8512.com.au' (Using password: YES)
----------------------------------------------------------------------
What's up? I tried changing passwords and a different user, still no go!
0
This discussion has been closed.
Comments
<?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.