WebsiteBaker 2.13.8 is now available!
R.I.P Dietmar (luisehahne) and thank you for all your valuable work for WBhttps://forum.websitebaker.org/index.php/topic,32355.0.html
// Connect to the database function connect() { $status = $this->db_handle = @mysql_connect(DB_HOST, DB_USERNAME, DB_PASSWORD); if(mysql_error()) { $this->connected = false; $this->error = mysql_error(); } else { if(!mysql_select_db(DB_NAME)) { $this->connected = false; $this->error = mysql_error(); } else { $this->connected = true; } } return $this->connected; }
HiPlease add custom message incliude WB-PATH\framework\class.database.php, when mysql server isn't working or not evalible
$ This-> $ dbhname = @ mysql_connect ($ details ['db_host'], $ details ['db_user'], $ details ['db_password']);if (! $ this-> $ dbhname) {$ This-> bail (sprintf (/ * WP_I18N_DB_CONN_ERROR * / '<h1> Failed to connect to the database </ h1><p> This means that either your username and password in a file <code> wp-config.php </ code> is incorrect or we can not contact the database server at <code>% s </ code>. Perhaps the server is unavailable. </ P><ul><li> you sure you have the correct username and password? </ li><li> Are you sure you entered the correct server name? </ li><li> Are you sure that the database server is running? </ li></ Ul><p> If you do not know what these terms mean - you may want to contact your hosting provider. If after this you need some help - you can always visit the <a href=\'http://ru.forums.wordpress.org/\'> forum support WordPress </ a>. </ P>'/ * / WP_I18N_DB_CONN_ERROR * /, $ details [' db_host ']),' db_connect_fail ');}