有时Godaddy数据库没有连接

时间:2014-04-29 09:31:53

标签: php sql phpmyadmin

从今天早上开始,我得到了一个奇怪的错误。我的网站变慢了,有时我的网站没有连接到数据库。我从早上得到错误页面可能是15次。我与Godaddy讨论,他们尝试,他们也有一次错误。经过1小时的讨论,他们说它的编码问题和服务器工作正常。他们说下面的句子

错误:警告:mysql_connect()[function.mysql-connect]:

我们能够让错误页面显示一次,但无法一致地复制它。我们清除了数据库上的队列并在服务器上运行了诊断程序。我们发现服务器没有错误,并且很高兴地报告服务器正在按预期运行。此问题很可能看起来像脚本错误导致数据库查询花费太长时间来解决,导致数据库队列填满。

我强烈反对他们关于编码问题,因为它从今天开始。但我不知道如何为此辩护并找到解决方案。任何人都可以帮助我吗?/

myconnection脚本

<?php

 //Variables for connecting to your database.
            //These variable values come from your hosting account.
            $hostname = "xxxxxx.db.xxxxxx.hostedresource.com";
            $usernamedbadmin = "xxxxxxxxx";
            $dbname = "xxxxxxx";

            //These variable values need to be changed by you before deploying
            $passworddbadmin = "xxxxxxxxx";

            //Connecting to your database
            mysql_connect($hostname, $usernamedbadmin, $passworddbadmin) OR DIE ("Unable to 
            connect to database! Please try again later.");
            mysql_select_db($dbname);

            unset($usernamedbadmin);
            unset($passworddbadmin);
?>

谢谢

0 个答案:

没有答案