Ad Widget

Collapse

Blank web pages after 1.4.4 frontend upgrade

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ptader
    Member
    • Sep 2007
    • 52

    #1

    Blank web pages after 1.4.4 frontend upgrade

    My server was running version 1.4.2. Downloaded and compiled v1.4.4 with no problems then copied over the 1.4.4 php frontend scripts. The server daemon (zabbix_server) is running fine but every php script that I try to load provides a blank web page - no errors on the page or in apache logs. I did download the 1.4.3 version and copied over the php frontend scripts (didn't compile anything) and that works. Even went back to the original 1.4.2 php scripts - works fine. I also installed my own "phpinfo()" script and that does compile.

    Did 1.4.4 frontend exceed my PHP version?

    PHP Version 4.3.9
    Apache/2.0.52
  • ptader
    Member
    • Sep 2007
    • 52

    #2
    Resolved.

    Resolved. There weren't any errors being displayed because my php.ini had errors (error_reporting, display_errors, etc) turned off. Once I enabled error reporting it was obvious that I was dealing with the bug reported in thread 29320

    In short, I changed every instance of:

    /* protected */ static
    to
    /* protected static */

    and
    /* public */ static
    to
    /* public static */

    in file include/copt.lib.php

    and all is well.

    Comment

    Working...