數(shù)據(jù)庫鏈接錯誤 : Too many connections
- /home/zglyht/domains/zglyht.com/public_html/Comm/MyFrame/Drivers/mysql.php on line 112
107.
* @param dbConfig 數(shù)據(jù)庫配置
108.
*/
109.
public function __construct($dbConfig)
110.
{
111.
$linkfunction = ( TRUE == $dbConfig['persistent'] ) ? 'mysql_pconnect' : 'mysql_connect';
112.
113.
$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ù)庫,請確認(rèn)數(shù)據(jù)庫名稱正確!");
114.
$this->exec("SET NAMES UTF8");
115.
}
116.
/**
117.
* 對特殊字符進(jìn)行過濾
- /home/zglyht/domains/zglyht.com/public_html/Comm/MyFrame/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.
header("location:404.php");
153.
//spError($class_name."類定義不存在,請檢查。");
154.
}
- /home/zglyht/domains/zglyht.com/public_html/Comm/MyFrame/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.
*
- /home/zglyht/domains/zglyht.com/public_html/Comm/MyFrame/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.
header("location:404.php");
153.
//spError($class_name."類定義不存在,請檢查。");
154.
}
- /home/zglyht/domains/zglyht.com/public_html/Comm/MyFrame/Extensions/spAcl.php on line 78
73.
{
74.
GLOBAL $__controller, $__action;
75.
$checker = $this->checker; $name = $this->get();
76.
77.
if( is_array($checker) ){
78.
79.
return spClass($checker[0])->{$checker[1]}($name, $__controller, $__action);
}else{
80.
return call_user_func_array($checker, array($name, $__controller, $__action));
81.
}
82.
}
83.
/**
- /home/zglyht/domains/zglyht.com/public_html/Comm/MyFrame/Extensions/spAcl.php on line 61
56.
/**
57.
* 有限的權(quán)限控制,適用于前臺。僅在權(quán)限表聲明禁止的頁面起作用,其他無聲明頁面均可進(jìn)入
58.
*/
59.
public function mincheck()
60.
{
61.
62.
$acl_handle = $this->check();
if( 0 === $acl_handle ){
63.
$this->prompt();
64.
return FALSE;
65.
}
66.
return TRUE;
- /home/zglyht/domains/zglyht.com/public_html/Comm/MyFrame/spFunctions.php on line 183
178.
*/
179.
function spLaunch($configname, $launchargs = null, $returns = FALSE ){
180.
if( isset($GLOBALS['G_SP']['launch'][$configname]) && is_array($GLOBALS['G_SP']['launch'][$configname]) ){
181.
foreach( $GLOBALS['G_SP']['launch'][$configname] as $launch ){
182.
if( is_array($launch) ){
183.
184.
$reval = spClass($launch[0])->{$launch[1]}($launchargs);
}else{
185.
$reval = call_user_func_array($launch, $launchargs);
186.
}
187.
if( TRUE == $returns )return $reval;
188.
}
- /home/zglyht/domains/zglyht.com/public_html/Comm/MyFrame/spFunctions.php on line 12
7.
* spRun 執(zhí)行用戶代碼
8.
*/
9.
function spRun(){
10.
GLOBAL $__controller, $__action;
11.
// 對路由進(jìn)行自動執(zhí)行相關(guān)操作
12.
13.
spLaunch("router_prefilter");
// 對將要訪問的控制器類進(jìn)行實(shí)例化
14.
$handle_controller = spClass($__controller, null, $GLOBALS['G_SP']["controller_path"].'/'.$__controller.".php");
15.
// 調(diào)用控制器出錯將調(diào)用路由錯誤處理函數(shù)
16.
if(!is_object($handle_controller) || !method_exists($handle_controller, $__action)){
17.
eval($GLOBALS['G_SP']["dispatcher_error"]);
- /home/zglyht/domains/zglyht.com/public_html/index.php on line 18
13.
//加載配置文件
14.
require(APP_PATH.'/data/config.php');
15.
//加載框架核心
16.
require(SP_PATH.'/SpeedPHP.php');
17.
//執(zhí)行應(yīng)用
18.
spRun();