Err: "/www/wwwroot/hnhuashang.net/skins/xisubaozhuang/tpl/tag_index.html" is not exists!
- /www/wwwroot/hnhuashang.net/protected/include/core.php on line 379
374.
if(isset($conditions[0]) && $sql = $conditions[0]) unset($conditions[0]);
375.
foreach($conditions as $key => $condition)
376.
{
377.
if(substr($key, 0, 1) != ":")
378.
{
379.
380.
unset($conditions[$key]);
$conditions[":".$key] = $condition;
381.
}
382.
$join[] = "`{$key}` = :{$key}";
383.
}
384.
if(!$sql) $sql = join(" AND ",$join);
- /www/wwwroot/hnhuashang.net/protected/controller/general_controller.php on line 25
20.
21.
protected function compiler($tpl_name)
22.
{
23.
$div = '/tpl/';
24.
$path = $GLOBALS['cfg']['enabled_theme'].$div.$tpl_name;
25.
26.
$this->display($path);
}
27.
28.
protected function prompt($type = null, $text = '', $redirect = null, $time = 3)
29.
{
30.
if(empty($type)) $type = 'default';
- /www/wwwroot/hnhuashang.net/protected/include/core.php on line 187
182.
public function __construct(){$this->init();}
183.
public function __get($name){return $this->_data[$name];}
184.
public function __set($name, $value){$this->_data[$name] = $value;}
185.
186.
public function display($tpl_name)
187.
188.
{
if(!$this->_v) $this->_v = new View(VIEW_DIR, APP_DIR.DS.'protected'.DS.'cache'.DS.'template');
189.
$this->_v->assign($this->_data);
190.
echo $this->_v->render($tpl_name);
191.
}
192.
}
- /www/wwwroot/hnhuashang.net/index.php on line 5
1.
<?php
2.
define('APP_DIR', realpath('./'));
3.
defined('DS') or define('DS', DIRECTORY_SEPARATOR);
4.
define('INCL_DIR', APP_DIR.DS.'protected'.DS.'include');
5.
require(INCL_DIR.DS.'core.php');