Results 1 to 5 of 5
currently i am using Fedora release 12 (Constantine)
with mysql and apache server installed ,i also installed wordpress and tried to link mysql with wordpress but unable to do so.
...
- 09-21-2010 #1Just Joined!
- Join Date
- Sep 2010
- Posts
- 20
"error in database in connection" of wordpress with mysql server
currently i am using Fedora release 12 (Constantine)
with mysql and apache server installed ,i also installed wordpress and tried to link mysql with wordpress but unable to do so.
what i tried ........
1.i installed wordpress using :- yum install wordpress
2.then i move /usr/share/wordpress folder to /var/www/html/ folder and
used:
service httpd start;
service mysqld start;
and in browser i write localhost/wordpress
and it displayed
"error in database connection"
please help
- 09-22-2010 #2
Hi,
you must configure your database autentification.
rename wp-config-sample.php to wp-config.php and config it:
define('DB_NAME', ‘wp_name');
define('DB_USER', ‘username');
define('DB_PASSWORD', ‘password');
define('DB_HOST', ‘localhost');
username must be a valid user of mysql...
next step is to run http.//localhost/wp_name/wp-admin/install.phpThere are people trying to avoid mistakes and another that tries to target.
- 09-23-2010 #3Just Joined!
- Join Date
- Sep 2010
- Posts
- 20
thank you..........
i started the httpd server and then Not Found
The requested URL /wp_name/wp-admin/install.php was not found on this server.
Apache/2.2.15 (Fedora) Server at localhost Port 80
ERROR occured............
plz exactly tell the steps .................. that how to do ...................
- 09-23-2010 #4
Hi,
sorry...
change wp_name for your wordpress name folder and make sure that have right permissions to open file install.php./wp_name/wp-admin/install.php
You can open /var/www/html/"wordpress folder"/wp-admin/ and you should find install.php there.
Then go to web browser to http://"wordpress folder"/wp-admin/install.php
I hope this help youThere are people trying to avoid mistakes and another that tries to target.
- 11-30-2010 #5
Did you create the database and add the user to that database? If so is the password correct? If all that information is correct and you are still gettin this error try verify that you are using "localhost" or the IP of the remote MySQL server.


Reply With Quote