JonB
JonB

Reputation: 1320

LAMP Whitescreen on Magento

First off, sorry if this shouldn't be on Stack Overflow, and instead should be on Server Fault / Super User. I am pretty sure it is a programming issue...

I am getting a whitescreen on a Magento install for a PDF generation script. I usually attribute whitescreens to memory issues on Apache, but:

The current memory for PHP is 256M which should be enough for an application like Magento.

I am a bit stuck now as to what is happening, and although have Zend Framework experience, don't want to go into the code too much at the moment to try and debug what is happening.

If anyone has any suggestions, it would be much appreciated.

I have command line access to the server.

Upvotes: 0

Views: 957

Answers (2)

jhogendorn
jhogendorn

Reputation: 6140

I would step through it using xdebug and netbeans personally.

Upvotes: 1

Will Earp
Will Earp

Reputation: 312

maybe you will have to go old skool, using the following code:

echo 'hi';
exit();

move it down line by line, until you get the white screen again, then you can narrow down the code that is causing the problem.

Upvotes: 0

Related Questions