数据库链接错误 : Access denied for user 'kitchenman'@'107.180.119.14' (using password: YES)
- /home/kitchenman2017/public_html/SpeedPHP/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("无法找到数据库,请确认数据库名称正确!");
94.
$this->exec("SET NAMES UTF8");
95.
}
96.
/**
97.
* 对特殊字符进行过滤
- /home/kitchenman2017/public_html/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.
- /home/kitchenman2017/public_html/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.
* 从数据表中查找一条记录
57.
*
- /home/kitchenman2017/public_html/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.
- /home/kitchenman2017/public_html/controller/index/common.php on line 17
12.
}else{
13.
$addition = ' name_'.$this->getLang().'!="" AND ';
14.
}
15.
16.
//site info
17.
18.
$site = spClass('config_list')->find('id=1');
// $site['qq'] = explode(',', $site['qq']);
19.
$this->site = $site;
20.
21.
22.
if('cn' == $this->getLang()){
- /home/kitchenman2017/public_html/controller/index/productlist.php on line 5
1.
<?php
2.
class productlist extends spController{
3.
4.
function index(){
5.
6.
require('common.php');
$this->className = __CLASS__;
7.
$this->p_nav=spClass('goods_cate')->findAll($addition.'is_open=1 AND pid=25', 'sort_id ASC, update_time DESC');
8.
$pid = isset($_GET['pid']) ? intval($_GET['pid']) : '';
9.
10.
$row = spClass('goods_cate')->find('id='.$pid);
- /home/kitchenman2017/public_html/SpeedPHP/spFunctions.php on line 21
16.
if(!is_object($handle_controller) || !method_exists($handle_controller, $__action)){
17.
eval($GLOBALS['G_SP']["dispatcher_error"]);
18.
exit;
19.
}
20.
// 路由并执行用户代码
21.
22.
$handle_controller->$__action();
// 控制器程序运行完毕,进行模板的自动输出
23.
if(FALSE != $GLOBALS['G_SP']['view']['auto_display']){
24.
$__tplname = $__controller.$GLOBALS['G_SP']['view']['auto_display_sep'].
25.
$__action.$GLOBALS['G_SP']['view']['auto_display_suffix']; // 拼装模板路径
26.
$handle_controller->auto_display($__tplname);
- /home/kitchenman2017/public_html/index.php on line 26
21.
require(SP_PATH."/SpeedPHP.php");
22.
23.
// 这里是入口文件全局位置
24.
import(APP_PATH.'/include/index/tpl_func.php');
25.
26.
spRun(); // SpeedPHP 3新特性