Welcome, Guest. Please login or register.
Did you miss your activation email?
May 26, 2012, 12:47:31 PM

Login with username, password and session length
Search:     Advanced search
Wollen Sie dem WebsiteBaker Team beitreten?
Nähere Informationen finden Sie unter hier und auf unserer neuen Webseite.
155537 Posts in 21712 Topics by 7736 Members
Latest Member: chris85
* Home Help Search Login Register
Pages: [1]   Go Down
Print
Author Topic: Please add custom message, when mysql server isn't working or not evalible  (Read 782 times)
Eugine

Offline Offline

Posts: 7



WWW
« on: November 04, 2010, 04:29:52 PM »

Hi
Please add custom message incliude
WB-PATH\framework\class.database.php

Code:

// 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;
}



, when mysql server isn't working or not evalible
Logged

Ruud
WebsiteBaker Org e.V.

Offline Offline

Posts: 2296



WWW
« Reply #1 on: November 04, 2010, 11:45:06 PM »

Hi
Please add custom message incliude WB-PATH\framework\class.database.php
, when mysql server isn't working or not evalible

Could you explain a bit more what you mean?

What message and where should it be placed?
Logged

Professional WebsiteBaker Solutions
Eugine

Offline Offline

Posts: 7



WWW
« Reply #2 on: November 05, 2010, 04:57:34 AM »

Let's say the script works correctly, but it does happen to malfunction hosting and stuff.
The request was implemented to issue an error message connecting to the database.
Watch as done in Wordpress

Code:

$ 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 ');
}
Logged

DarkViper
Development Team
*****
Offline Offline

Posts: 1252


« Reply #3 on: November 05, 2010, 01:14:50 PM »

it's not necessary(and dangerous)  to show such a message to each visitor of a site.
This kind of message appears in setup/install only.
Logged

Anleitungen lesen und selber nachdenken ist anstrengend...  Da lass ich doch lieber andere für mich denken...

In 1984:  Nineteen Eighty-Four is a unrealistic utopia!!
In 2012:  Nineteen Eighty-Four is a little piece only of our reality!!
Pages: [1]   Go Up
Print
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.16 | SMF © 2011, Simple Machines Valid XHTML 1.0! Valid CSS!