运行我的网站时数组到字符串的转换';s本地主机上的服务器代码


Array to string conversion on running my website's server code on local host

我使用的是joomla 3.5.0。我正在尝试使用example在本地主机上运行服务器代码。我得到以下错误:

注意:数组到字符串的转换在第356行的C:''examplep''htdocs''Site''libraries''joomla''registry''registry.php中

注意:数组到字符串的转换在C:''examplep''htdocs''Site''libraries''joomla''registry''registry.php中的第358行

注意:数组到字符串的转换在C:''examplep''htdocs''Site''libraries''joomla''registry''registry.php的361 行

注意:数组到字符串的转换在第365行的C:''examplep''htdocs''Site''libraries''joomla''registry''registry.php 中

注意:数组到字符串的转换在第356行的C:''examplep''htdocs''Site''libraries''joomla''registry''registry.php中

代码为:第353至366行

// Traverse the registry to find the correct node for the result.
            for ($i = 0, $n = count($nodes) - 1; $i < $n; $i++)
            {
                if (!isset($node->$nodes[$i]) && ($i != $n))
                {
                    $node->$nodes[$i] = new stdClass;
                }
                $node = (object) $node->$nodes[$i];
            }
            // Get the old value if exists so we can return it
            $result = $node->$nodes[$i] = $value;
        }

我也配置了configuration.php文件。

请帮我解决这个问题。

感谢

Xampp有时在某些环境中运行Joomla似乎有问题。您可以尝试Wamp Server,类似的堆栈替代方案

阅读更多Joomla论坛