Troube迁移了一个codeigniter系统

时间:2017-06-16 14:30:02

标签: php codeigniter

我尝试为我的localhost迁移codeigniter系统,但我收到此消息:

A PHP Error was encountered

Severity: Notice

Message: Only variable references should be returned by reference

Filename: core/Common.php

Line Number: 257

Fatal error: Class 'CI_Controller' not found in C:\xampp\htdocs\sistema-emisa\system\core\CodeIgniter.php on line 233

我已从主机下载以下页面:

  

申请〜   public_html~   系统

我更改了BD的输入以获取我本地主机上的更正,但仍然无法正常工作。我必须做一些设置或下载别的东西吗?

服务器具有以下结构:

enter image description here

1 个答案:

答案 0 :(得分:0)

需要快速解决一个问题。

转到system / core / Common.php文件。 并搜索return $_config[0] =& $config;

并使用以下两个代码段中的任何一个替换此内容:

$_config[0] =& $config;
return $_config[0];

OR

return isset($_config[0][$item]) ? $_config[0][$item] : NULL;

以上两段代码都可以使用。