在 Debug 一个问题,原有系统是 shopex ,代码是加密的,没法调试,在 showmycode 那个网站可以解密,但是解密之后的文件运行有问题,感觉不应该是解密的问题,但也想不出还有什么不对的。。。
错误信息: PHP Fatal error: Call to a member function base_url() on a non-object
出错的代码在下面构造函数中:
public function mdl_storager( )
{
$this->system = $system;
$this->base_url = $this->system->base_url( );
$this->class_name = defined( "WITH_STORAGER" ) ? constant( "WITH_STORAGER" ) : "fs_storage";
require_once( PLUGIN_DIR."/functions/".$this->class_name.".php" );
$this->worker = new $this->class_name( );
if ( defined( "HOST_MIRRORS" ) )
{
$host_mirrors = preg_split( "/[,\\s]+/", constant( "HOST_MIRRORS" ) );
if ( is_array( $host_mirrors ) && isset( $host_mirrors[0] ) )
{
$this->host_mirrors =& $host_mirrors;
$this->host_mirrors_count = count( $host_mirrors ) - 1;
}
}
}
上面的 modoel 是从这里引用的:
public function save( $brand_id, $aData )
{
$storager =& $this->system->loadModel( "system/storager" );
$oTemplate = $this->system->loadModel( "system/template" );
if ( $_FILES )
{
$aData['brand_logo'] = $storager->save_upload( $_FILES['brand_logo'], "brand" );
}
.... ......
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.