Wordpress: veritabanı bağlantısı kurma hatası.

0 Cevap php

Bu beni deli ediyor! Ben aniden çalışmayı durdurdu benim MacBook Pro, yüklü Wordpress bir test örneği var. Ben baş Eğer http://localhost:9003/wp-admin/ alıyorum:

Error establishing a database connection

This either means that the username and password information in your wp-config.php file is incorrect or we can't contact the database server at localhost. This could mean your host's database server is down.

Are you sure you have the correct username and password?

Are you sure that you have typed the correct hostname?

Are you sure that the database server is running?

If you're unsure what these terms mean you should probably contact your host. If you still need help you can always visit the WordPress Support Forums.

Hmmph! Ben yaş için yapılandırma dokunulmaz değil. Burada ilgili satırları şu anda bakmak nasıl:

define('DB_NAME', 'wordpress');
define('DB_USER', 'wordpress');
define('DB_PASSWORD', 'wordpress');
define('DB_HOST', 'localhost');
$table_prefix  = 'wp_';

Değerleri tüm iyi:

$ mysql -h localhost -u wordpress --password=wordpress \
> wordpress -e 'select user_login from wp_users'
+------------+
| user_login |
+------------+
| simon      |
+------------+

Hiçbir şey MySQL hata günlüğünde, ne de Apache hata günlüğüne var. Ben farklı bir MySQL kullanıcı ve farklı bir veritabanı kullanarak denedim, ama ben aynı hatayı alıyorum. Ben scuppered ediyorum - orada herhangi WordPress uzmanları eksik biliyor musun?


Php Çıktı - ri mysql:

$ php --ri mysql

mysql

MySQL Support => enabled
Active Persistent Links => 0
Active Links => 0
Client API version => mysqlnd 5.0.7-dev - 091210 - $Revision: 294543 $

Directive => Local Value => Master Value
mysql.allow_persistent => On => On
mysql.max_persistent => Unlimited => Unlimited
mysql.max_links => Unlimited => Unlimited
mysql.default_host => no value => no value
mysql.default_user => no value => no value
mysql.default_password => no value => no value
mysql.default_port => no value => no value
mysql.default_socket => /var/mysql/mysql.sock => /var/mysql/mysql.sock
mysql.connect_timeout => 60 => 60
mysql.trace_mode => Off => Off
mysql.allow_local_infile => On => On

0 Cevap