Fatal error: Uncaught Error: [] operator not supported for strings - Codazon Themeframework -- Categoriestree.php
Fatal error: Uncaught Error: [] operator not supported for strings - Codazon Themeframework -- Categoriestree.php
在服务器之间迁移 Magento 1.9.3.7 站点后,我无法访问设置页面:导航到管理 > 系统 > 配置
显示以下错误:
Fatal error: Uncaught Error: [] operator not supported for strings in /home/defaultwebsite/public/app/code/local/Codazon/Themeframework/Model/System/Config/Source/Categoriestree.php:28
Categoriestree.php:28 错误 >>
$this->_categoriesTree[] = array('value' => $item['category_id'],'label' => str_repeat("–––", $level)." ".$item['name']);
可能这个 post 有帮助,类似于您的问题错误
https://www.key2goal.com/article/wordpress-error-php-71-php-fatal-error-uncaught-error-operator-not-supported-strings
如果您使用 php 7.1,那么您需要适当的数组定义..
可以这样定义
$this->_categoriesTree = array();
在服务器之间迁移 Magento 1.9.3.7 站点后,我无法访问设置页面:导航到管理 > 系统 > 配置 显示以下错误:
Fatal error: Uncaught Error: [] operator not supported for strings in /home/defaultwebsite/public/app/code/local/Codazon/Themeframework/Model/System/Config/Source/Categoriestree.php:28
Categoriestree.php:28 错误 >>
$this->_categoriesTree[] = array('value' => $item['category_id'],'label' => str_repeat("–––", $level)." ".$item['name']);
可能这个 post 有帮助,类似于您的问题错误 https://www.key2goal.com/article/wordpress-error-php-71-php-fatal-error-uncaught-error-operator-not-supported-strings
如果您使用 php 7.1,那么您需要适当的数组定义..
可以这样定义
$this->_categoriesTree = array();