Hello,
im having the hardest time setting up drupal on my server.. i had an older version that i use to host which i plan to upgrade but i cant even finish this fresh install. its saying that it can select my database
my website is www.allensworld.org and also trying www.allensworld.org/upgrade.php
I do have other php database driven websites that work...

(System)
Windows Platform
apache_2.2.3-win32-x86-no_ssl.msi
mysql-essential-5.0.24-win32.msi
php-5.1.5-Win32.zip

(config)
$db_url = 'mysql://allen@%:password@localhost/drupal';
$db_prefix = '';

(error)
We were able to connect to the MySQL database server (which means your username and password are okay) but not able to select the database.

The MySQL error was: No database selected.

Currently, the database is . The username is and the database server is .

(i didnt edit this error, it just didnt return any information)

Comments

heine’s picture

$db_url = 'mysql://allen@%:password@localhost/drupal';

Try:

$db_url = 'mysql://allen:password@localhost/drupal';

--
The Manual | Troubleshooting FAQ | Tips for posting | How to report a security issue.

allen’s picture

Thanks for the reply

I tryed that as well.. that gives me an incorrect username/password error.

theres no incompatabbilities with the php version im using and drupal is there?.. my other sites work with the same setup

ejuarros’s picture

allen’s picture

mabee i should try creating a user in my sql without the @% an see how that works

allen’s picture

i created a new user @localhost instead and no luck
i tryed two differnt database and no luck

I need Help

heine’s picture

What connection string did you use now? The server shouldn't comeback in the username (ie allen@% is not going to work).
--
The Manual | Troubleshooting FAQ | Tips for posting | How to report a security issue.