2016-05-08 91 views
0

我剛剛從該站點下載了XAMPP Portable,並將其安裝在我的USB閃存驅動器上。在便攜式XAMPP上運行Codeigniter

https://sourceforge.net/projects/xampp/files/XAMPP%20Windows/5.6.20/ 

當IM運行我的網頁它顯示的錯誤是這樣的:

A PHP Error was encountered 

Severity: Notice 

Message: Only variable references should be returned by reference 

Filename: core/Common.php 

Line Number: 257 

但是,當IM與正常運行XAMPP它(即安裝在我的硬盤驅動器),它運行良好。非常感謝任何幫助,謝謝!

回答

0

您需要的common.php

改變ELINE在您的系統/核心/從

return $_config[0] =& $config; 

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