Ad Widget

Collapse

Blank page on browser

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • alphademon
    Junior Member
    • Jan 2005
    • 1

    #1

    Blank page on browser

    Hi There,

    I have installed Zabbix 1.0 all according to manual, everything is working fine (mysql,php,apache) . I even have no problem starting zabbix_suckerd and zabbix_trapperd on the server but when I connect my browser to the path, the page is blank.

    I have done a test php page and all is working fine.

    im using freebsd 5.4 ; there is no error whatsoever and that is really annoying. I dont get the login page at all ..
    I have a gallery running on this server, MRTG also, all works fine..

    has anyone encountered this before ? any ideas ?

    Please help

    alpha
    Last edited by alphademon; 23-06-2005, 05:27. Reason: added :
  • samaritan

    #2
    You should try to be more specific when saying there are "no errors whatsoever" on your system. Did you mean that there are no errors in the Apache httpd error_log? Or no errors in the mysql logs?

    The first thing that you should ask is "what do the web server logs say?" If they show an error then search the forums and google for similar problems and solutions. If you require additional help then check back here.

    Hope this helps.

    S

    Comment

    • iphigenie
      Junior Member
      • Dec 2005
      • 5

      #3
      I have just had the same problem.

      Went and set several things in my php.ini (or in my case overriding the php.ini in the apache conf)

      I suspect turning "register globals" is the bit that clinched it but havent started reverting all the other changes to be sure (turned all debug on etc.)

      <IfModule mod_php4.c>
      # PHP CONFIG
      php_admin_flag expose_php Off
      php_admin_value safe_mode Off
      php_admin_value error_reporting E_ALL
      php_admin_flag display_errors On
      php_admin_flag log_errors On
      php_admin_flag track_errors On
      php_admin_value variables_order EGPCS
      php_admin_flag register_globals On
      php_admin_flag track_vars On
      php_admin_flag magic_quotes_gpc On
      php_admin_flag magic_quotes_runtime Off
      php_admin_flag magic_quotes_sybase Off
      </IfModule>

      Comment

      • omenix
        Junior Member
        • Dec 2005
        • 14

        #4
        Hi there,

        Im currently using Centos 4.1 as a server and the agent running on centos 3.5 and still I have blank page and Im using apache 2.0

        Comment

        • omenix
          Junior Member
          • Dec 2005
          • 14

          #5
          Okay i figured out that Im using 1.1beta2 inside folder include/config.inc.php need to change to

          include_once "defines.inc.php";
          include_once "db.inc.php";
          include_once "html.inc.php";
          include_once "locales.inc.php";

          include_once "audit.inc.php";
          include_once "autoregistration.inc.php";
          include_once "escalations.inc.php";
          include_once "hosts.inc.php";
          include_once "users.inc.php";
          include_once "graphs.inc.php";
          include_once "items.inc.php";
          include_once "screens.inc.php";
          include_once "triggers.inc.php";
          include_once "actions.inc.php";
          include_once "profiles.inc.php";
          include_once "services.inc.php";
          include_once "maps.inc.php";
          ----
          (REMOVE include/ )

          Cheers!

          Comment

          Working...