數據庫鏈接錯誤 : No such file or directory
- /www/wwwroot/www.layarfilm.top/Comm/MyFrame/Drivers/mysql.php on line 92
87.
* @param dbConfig 數據庫配置
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("數據庫鏈接錯誤 : " . mysql_error());
mysql_select_db($dbConfig['database'], $this->conn) or spError("無(wú)法找到數據庫,請確認數據庫名稱(chēng)正確!");
94.
$this->exec("SET NAMES UTF8");
95.
}
96.
/**
97.
* 對特殊字符進(jìn)行過(guò)濾
- /www/wwwroot/www.layarfilm.top/Comm/MyFrame/spFunctions.php on line 159
154.
}
155.
}
156.
if(FALSE != $has_define){
157.
$argString = '';$comma = '';
158.
if(null != $args)for ($i = 0; $i < count($args); $i ++) { $argString .= $comma . "\$args[$i]"; $comma = ', '; }
159.
160.
eval("\$GLOBALS['G_SP']['inst_class'][\$class_name]= new \$class_name($argString);");
return $GLOBALS['G_SP']["inst_class"][$class_name];
161.
}
162.
spError($class_name."類(lèi)定義不存在,請檢查。");
163.
}
164.
- /www/wwwroot/www.layarfilm.top/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.
* 從數據表中查找一條記錄
57.
*
- /www/wwwroot/www.layarfilm.top/Comm/MyFrame/spFunctions.php on line 159
154.
}
155.
}
156.
if(FALSE != $has_define){
157.
$argString = '';$comma = '';
158.
if(null != $args)for ($i = 0; $i < count($args); $i ++) { $argString .= $comma . "\$args[$i]"; $comma = ', '; }
159.
160.
eval("\$GLOBALS['G_SP']['inst_class'][\$class_name]= new \$class_name($argString);");
return $GLOBALS['G_SP']["inst_class"][$class_name];
161.
}
162.
spError($class_name."類(lèi)定義不存在,請檢查。");
163.
}
164.
- /www/wwwroot/www.layarfilm.top/Comm/MyFrame/SpeedPHP.php on line 86
81.
$__action = isset($_REQUEST[$GLOBALS['G_SP']["url_action"]]) ?
82.
$_REQUEST[$GLOBALS['G_SP']["url_action"]] :
83.
$GLOBALS['G_SP']["default_action"];
84.
85.
// 自動(dòng)執行用戶(hù)代碼
86.
87.
$conf = spClass('m_conf')->find();
define("RCMAPRQ",$conf['rcmaprq']);
88.
define("YUEFEN",$conf['yuefen']);
89.
if(RCMAPRQ<>date('Y-m-d')){
90.
define("GENGXIN",TRUE);
91.
}else{
- /www/wwwroot/www.layarfilm.top/index.php on line 10
5.
define('APP_PATH', dirname(__FILE__));
6.
define('SP_PATH', dirname(__FILE__).'/Comm/MyFrame');
7.
//加載配置文件
8.
require('config.php');
9.
//加載框架核心
10.
11.
require(SP_PATH.'/SpeedPHP.php');
//執行應用
12.
spRun();
13.
?>