我已经在 XAMPP 中部署了我的源代码。我收到以下错误。
注意:只有变量引用应该在 C:\xampp\htdocs\3c_app\public_html\system\core\Common.php 中的第 257 行通过引用返回
致命错误:在 C:\xampp\htdocs\3c_app 中找不到类 'CI_Controller' \public_html\system\core\CodeIgniter.php 在第 233 行。
我的源文件是:
通用.php
// Are any values being dynamically replaced?
if (count($replace) > 0)
{
foreach ($replace as $key => $val)
{
if (isset($config[$key]))
{
$config[$key] = $val;
}
}
}
return $_config[0] =& $config;
}
第 257 行是: return $_config[0] =& $config;
和
Codeigniter.php
// Fetch the config file
if ( ! file_exists($file_path))
{
exit('The configuration file does not exist.');
}
require($file_path);
第 233 行:if ( ! file_exists($file_path))
有谁能帮忙???