Apache2+PHP5+mySQL leads to blank screen

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Raul Elms

    Apache2+PHP5+mySQL leads to blank screen

    Hi,

    I'm running Apache2 together with the php and mysql modules on an opensuse
    10.1 machine. Most scripts run well, I can connect and query databases
    without any problems. But some well known scripts like phpMyAdmin or
    Nucleus fail. When accessing a database or table (I don't really know when
    PHP crashes) PHP just returns a blank screen (HTML source code is blank as
    well).

    For instance phpMyAdmin: With only one server configured I can connect to
    this server and list all databases and so on. When I try to connect to one
    db a blank screen is returned. With two servers configured I receive a
    blank screen after choosing one server.
    Nucleus seems to be able to access some tables, but some modules fail (with
    a blank screen).
    I've activated STRICT error reporting but the log is empty ;-(

    Does anybody of you know this problem?

    Cheers,
    Raul
  • Jerry Stuckle

    #2
    Re: Apache2+PHP5+my SQL leads to blank screen

    Raul Elms wrote:
    Hi,
    >
    I'm running Apache2 together with the php and mysql modules on an opensuse
    10.1 machine. Most scripts run well, I can connect and query databases
    without any problems. But some well known scripts like phpMyAdmin or
    Nucleus fail. When accessing a database or table (I don't really know when
    PHP crashes) PHP just returns a blank screen (HTML source code is blank as
    well).
    >
    For instance phpMyAdmin: With only one server configured I can connect to
    this server and list all databases and so on. When I try to connect to one
    db a blank screen is returned. With two servers configured I receive a
    blank screen after choosing one server.
    Nucleus seems to be able to access some tables, but some modules fail (with
    a blank screen).
    I've activated STRICT error reporting but the log is empty ;-(
    >
    Does anybody of you know this problem?
    >
    Cheers,
    Raul
    error_reporting = E_ALL | E_STRICT;

    not just E_STRICT.

    And ensure you're looking at the correct log file, or enable
    display_errors (if this is a test environment).

    --
    =============== ===
    Remove the "x" from my email address
    Jerry Stuckle
    JDS Computer Training Corp.
    jstucklex@attgl obal.net
    =============== ===

    Comment

    Working...