views:

62

answers:

3

I am running a site on php with a mysql backend. Things have been fine but suddenly one users account started getting a 500 error. Each user has his own profile when they log into the any box so his internet explorer settings are the same no matter what box he logs on to. Does anyone know if this could be an internet explorer setting causing this? I have tried to debug everything on the client side and no matter what I do he is getting rejected. No other account is having this issue. I am not really an SA but the only thing I think it can be at this point is some setting within his profile which is causing this. This is also happening on firefox but instead of a 500 error I am getting a blank white screen. (I assume friendly error messages are turned on)

A: 

What does the server log say?

Aif
server logs say nothing thats why its so weird
fiktionvt
A: 

If this is programming related, it might help turning error displaying on in php, using error reporting:

<? error_reporting(E_ALL); ?>

Could be the browser acting up, sending weird headers or mangling requests because of addons or malware.

Sune Rievers
A: 

The issue had to do with a permission not properly set in one of the log folders. The system was trying to write to the log folder and for some reason that particular user was not set to have write access. The problem was impossible to track down but thanks for the help.

fiktionvt
Your explanation of the cause of the issue somewhat proves that the problem wasn't quite as impossible to track down as you seem to suggest.
Jon Cram