Hi Fiona
May be it’s too late for you, but my Stéphane, he have found the solution and I write here if a future person have a same problem :
the solution of my friend Stéphane :
add the modification in the line 16 in the file wp-insert.php:
if(!@include(‘wp-config.php’)) {
require_once($root.’/wp-config.php’);
}
mysql_connect(DB_HOST,DB_USER,DB_PASSWORD);
add the modification on the line 10 in the file wp-pro.php:
$root = dirname(dirname(dirname(dirname(__FILE__))));
if(!@include(‘wp-config.php’)) {
require_once($root.’/wp-config.php’);
}
mysql_connect(DB_HOST,DB_USER,DB_PASSWORD);