我在Joomla网站上遇到问题,当我将所有Joomla网站文件和文件夹转移到Test
文件夹时,出现以下错误
:- Assigning the return value of new by reference is deprecated in includes/joomla.php.
我通过从includes/joomla.php
移除&(&符号)解决了这个问题,但现在我遇到的问题是我没有看到任何内容。我只能看到一个空白页面。请查看topodds.com/Test
我在includes / joomla.php中尝试过这段代码,但没有成功
$temp = func_get_args();
array_shift( $temp );
$args = array();
foreach ($temp as $k => $v) {
$args[] = &$temp[$k];
}