數(shù)據(jù)庫鏈接錯誤 : Can't connect to MySQL server on 'localhost' (10061)
- D:\1\v1016934\wwwroot\SpeedPHP\Drivers\mysql.php on line 92
87.
* @param dbConfig 數(shù)據(jù)庫配置
88.
*/
89.
public function __construct($dbConfig)
90.
{
91.
$linkfunction = ( TRUE == $dbConfig['persistent'] ) ? 'mysql_pconnect' : 'mysql_connect';
92.
93.
$this->conn = $linkfunction($dbConfig['host'].":".$dbConfig['port'], $dbConfig['login'], $dbConfig['password']) or spError("數(shù)據(jù)庫鏈接錯誤 : " . mysql_error());
mysql_select_db($dbConfig['database'], $this->conn) or spError("無法找到數(shù)據(jù)庫,請確認數(shù)據(jù)庫名稱正確!");
94.
$this->exec("SET NAMES UTF8");
95.
}
96.
/**
97.
* 對特殊字符進行過濾
- D:\1\v1016934\wwwroot\SpeedPHP\spFunctions.php on line 149
144.
}
145.
}
146.
if(FALSE != $has_define){
147.
$argString = '';$comma = '';
148.
if(null != $args)for ($i = 0; $i < count($args); $i ++) { $argString .= $comma . "\$args[$i]"; $comma = ', '; }
149.
150.
eval("\$GLOBALS['G_SP']['inst_class'][\$class_name]= new \$class_name($argString);");
return $GLOBALS['G_SP']["inst_class"][$class_name];
151.
}
152.
spError($class_name."類定義不存在,請檢查。");
153.
}
154.
- D:\1\v1016934\wwwroot\SpeedPHP\Core\spModel.php on line 52
47.
{
48.
if( null == $this->tbl_name )$this->tbl_name = $GLOBALS['G_SP']['db']['prefix'] . $this->table;
49.
if( '' == $GLOBALS['G_SP']['db_driver_path'] ){
50.
$GLOBALS['G_SP']['db_driver_path'] = $GLOBALS['G_SP']['sp_drivers_path'].'/'.$GLOBALS['G_SP']['db']['driver'].'.php';
51.
}
52.
53.
$this->_db = spClass('db_'.$GLOBALS['G_SP']['db']['driver'], array(0=>$GLOBALS['G_SP']['db']), $GLOBALS['G_SP']['db_driver_path']);
}
54.
55.
/**
56.
* 從數(shù)據(jù)表中查找一條記錄
57.
*
- D:\1\v1016934\wwwroot\SpeedPHP\spFunctions.php on line 149
144.
}
145.
}
146.
if(FALSE != $has_define){
147.
$argString = '';$comma = '';
148.
if(null != $args)for ($i = 0; $i < count($args); $i ++) { $argString .= $comma . "\$args[$i]"; $comma = ', '; }
149.
150.
eval("\$GLOBALS['G_SP']['inst_class'][\$class_name]= new \$class_name($argString);");
return $GLOBALS['G_SP']["inst_class"][$class_name];
151.
}
152.
spError($class_name."類定義不存在,請檢查。");
153.
}
154.
- D:\1\v1016934\wwwroot\modules\home\common.php on line 10
5.
class common extends mycmscommon
6.
{
7.
var $confSite;
8.
function __construct(){
9.
parent::__construct();
10.
11.
$site= spClass("m_config_site")->find();
$this->confSite=$site;
12.
$this->site_title=$site['sitename'];
13.
$this->site_seotitle=$site['seotitle'];
14.
$this->site_keywords=$site['keywords'];
15.
$this->site_description=$site['description'];
- D:\1\v1016934\wwwroot\modules\home\news.php on line 8
3.
import($GLOBALS['spConfig']['controller_path'].'/common.php');
4.
5.
class news extends common
6.
{
7.
function __construct() {
8.
9.
parent::__construct();
$this->site_seotitle="新聞中心 - ".$this->site_title;
10.
$cid1=$this->spArgs("cid1");
11.
if($cid1){
12.
$this->curclass=spClass("m_newsclass")->find(array("id"=>$cid1));
13.
$this->site_seotitle=$this->curclass['classname']."-新聞中心 - ".$this->site_title;
- D:\1\v1016934\wwwroot\SpeedPHP\spFunctions.php on line 149
144.
}
145.
}
146.
if(FALSE != $has_define){
147.
$argString = '';$comma = '';
148.
if(null != $args)for ($i = 0; $i < count($args); $i ++) { $argString .= $comma . "\$args[$i]"; $comma = ', '; }
149.
150.
eval("\$GLOBALS['G_SP']['inst_class'][\$class_name]= new \$class_name($argString);");
return $GLOBALS['G_SP']["inst_class"][$class_name];
151.
}
152.
spError($class_name."類定義不存在,請檢查。");
153.
}
154.
- D:\1\v1016934\wwwroot\SpeedPHP\spFunctions.php on line 14
9.
function spRun(){
10.
GLOBAL $__controller, $__action;
11.
// 對路由進行自動執(zhí)行相關操作
12.
spLaunch("router_prefilter");
13.
// 對將要訪問的控制器類進行實例化
14.
15.
$handle_controller = spClass($__controller, null, $GLOBALS['G_SP']["controller_path"].'/'.$__controller.".php");
// 調用控制器出錯將調用路由錯誤處理函數(shù)
16.
if(!is_object($handle_controller) || !method_exists($handle_controller, $__action)){
17.
eval($GLOBALS['G_SP']["dispatcher_error"]);
18.
exit;
19.
}
- D:\1\v1016934\wwwroot\index.php on line 29
24.
),
25.
);
26.
27.
28.
require(SP_PATH."/SpeedPHP.php");
29.
spRun();