View Single Post
  #18  
Old 2nd January 2020, 19:07
Napon Napon is offline
Banned
 
Join Date: Feb 2016
P2P
Posts: 522
Default
Quote:
Originally Posted by BT-loader View Post
Can you please fix the database connection for "tbdev-01-03-06" too?

PHP Code:
function dbconn($autoclean false){    global $mysql_host$mysql_user$mysql_pass$mysql_db;    if (!@mysql_connect($mysql_host$mysql_user$mysql_pass))    {      switch (mysql_errno())      {        case 1040:        case 2002:            if ($_SERVER[REQUEST_METHOD] == "GET")                die("<html><head><meta http-equiv=refresh content="5 $_SERVER[REQUEST_URI]"></head><body><table border=0 width=100% height=100%><tr><td><h3 align=center>The server load is very high at the moment. Retrying, please wait...</h3></td></tr></table></body></html>");            else                die("Too many users. Please press the Refresh button in your browser to retry.");        default:            die("[" mysql_errno() . "] dbconn: mysql_connect: " mysql_error());      }    }    mysql_select_db($mysql_db)        or die('dbconn: mysql_select_db: ' mysql_error());    userlogin();    if ($autoclean)        register_shutdown_function("autoclean"); } 
</div>

yes i can fix this the above is wrong hes given you too lol
Reply With Quote