Hi all,
i am experimenting some installation troubles.
I'm trying to install drupal 7.x over easyPhp 2.0.0.0, that means Php 5.2.0 and MySql 5.0.27, on Windows Xp.

while trying to run the install.php script it prints out this message:

"In your ./sites/default/settings.php file you have configured Drupal to use a server, however your PHP installation currently does not support this database type"

notice that i have modified the settings.php with these lines:

$databases = array(
'driver' => 'mysql',
'database' => 'drupaltest',
'username' => 'myUser',
'password' => 'password',
'host' => 'localhost',
);

and i have first created a databased named "drupaltest" and a user named "myUser" with all the privileges.

thank you in advance

Comments

feloescoto’s picture

"In your ./sites/default/settings.php file you have configured Drupal to use a server, however your PHP installation currently does not support this database type"

This seams to be a php problem, can you confirm that the installation is correct, this I have heard that this easyphp has problems sometimes, I actually could never get it to run in my windows box?

Your phpinfo() information could help too.

http://inTribu.com

oadaeh’s picture

needs to be changed to:

$databases['default']['default'] = array(
 

I know the documentation says it's not necessary, but my tests proved otherwise.

And here's the bug report: http://drupal.org/node/299661

feloescoto’s picture

Thanks for the tip.

http://inTribu.com