不知道为什么,搜索功能没办法用了~ 只能发问题了,不知道是不是个已经解决的问题。
我用的是Apache Tomcate 7.0 加 resin 4.0.27, 在里边跑OpenCart 1.5.1。打开upload2页面后报以下错误
Notice: Can't access protected field 'ControllerCommonColumnLeft::$output' in D:\working\workspace\OpenCart\TestHelloWorld\WebContent\upload2\system\engine\controller.php on line 55
Notice: Can't access protected field 'ControllerCommonColumnRight::$output' in D:\working\workspace\OpenCart\TestHelloWorld\WebContent\upload2\system\engine\controller.php on line 55
Notice: Can't access protected field 'ControllerModuleSlideshow::$output' in D:\working\workspace\OpenCart\TestHelloWorld\WebContent\upload2\catalog\controller\common\content_top.php on line 72
Notice: Can't access protected field 'ControllerCommonContentTop::$output' in D:\working\workspace\OpenCart\TestHelloWorld\WebContent\upload2\system\engine\controller.php on line 55
Notice: Can't access protected field 'ControllerModuleCarousel::$output' in D:\working\workspace\OpenCart\TestHelloWorld\WebContent\upload2\catalog\controller\common\content_bottom.php on line 72
Notice: Can't access protected field 'ControllerCommonContentBottom::$output' in D:\working\workspace\OpenCart\TestHelloWorld\WebContent\upload2\system\engine\controller.php on line 55
Notice: Can't access protected field 'ControllerCommonFooter::$output' in D:\working\workspace\OpenCart\TestHelloWorld\WebContent\upload2\system\engine\controller.php on line 55
Notice: Can't access protected field 'ControllerCommonHeader::$output' in D:\working\workspace\OpenCart\TestHelloWorld\WebContent\upload2\system\engine\controller.php on line 55

解决方案 »

  1.   

    error_reporting(E_ALL & ~E_NOTICE);  这句加在 controller.php 看行不行。试试看。
      

  2.   

    加在PHP一开始,然后controller.php报的是56行错,不再是55行了。
    我是PHP白痴,这套Opencart程序是在easyphp中布过好用的,现在移到resin里,根目录下没有配php.ini信息,web.xml也没有引用php.ini文件,这个有关系吗?
      

  3.   

    就这样加的啊~~
    <?php
    error_reporting(E_ALL & ~E_NOTICE); 
    abstract class Controller {
      

  4.   

    更新了下resin4.0.28,重启了服务,页面打开了~~
    弱弱的问下那句error_reporting的作用是什么?什么造成了那些Notice?
    太感谢各位了
      

  5.   

    看下 是不是 非法去访问了 类的 protected(受保护) 的类变量或类方法哦