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.
Ihave this problem with MySQL.....
Hey :: I have the next message in the install.php page
It appears as though you do not have MySQL enabled for PHP. You will need a working copy of MySQL and PHP's MySQL extensions enabled in order to run Vanilla.
What Im doing wrong ??? or Whats wrong ???
Thanks !!!!! Im new with this things
0
This discussion has been closed.
Comments
If you have command-line access to the machine, type:
php -i | grep -i mysql
You should get some output that looks like this:
mysql MySQL Support => enabled MYSQL_MODULE_TYPE => none MYSQL_SOCKET => /tmp/mysql.sock MYSQL_INCLUDE => MYSQL_LIBS => mysql.allow_persistent => Off => Off mysql.connect_timeout => 20 => 20 mysql.default_host => no value => no value mysql.default_password => no value => no value mysql.default_port => no value => no value mysql.default_socket => no value => no value mysql.default_user => no value => no value mysql.max_links => Unlimited => Unlimited mysql.max_persistent => Unlimited => Unlimited mysql.trace_mode => Off => Off
If you don't, the MySQL extension isn't installed for the installation of PHP on the server.
The output of
uname -a
will be helpful to us in figuring out how to get that PHP extension installed.Also, if you have command line access to MySQL, how did you connect? Through Windows CMD or through a terminal emulation program (PuTTY)?
Don't worry you're not disturbing anyone. This is what forums are for. However, you may get more attentive and specific advice if you use a forum for your hosting provider or one that's specific to PHP.
php.ini is the configuration file that PHP uses to determine how it should behave before it begins parsing and processing .php files. The phpinfo page (same information is also accessible by typing "php -i" on the command line of the server that is serving your PHP files) is a list of the "environment" that PHP is running in: which extensions are installed, the settings of variables you specified in php.ini and a bunch of other environment variables.
Please give us your setup if you'd like any useful help.
What is the configuration of your web server (IIS, from your previous post)? Is PHP properly installed on this machine?
What is the configuration of your MySQL server? Is MySQL installed on the same machine as IIS and PHP?