Jorgen Bodde wrote:
I think SquirrelMail runs on the main server because it is a hosted one. It is not ran on my account but the PHP installation must be global and having problems with that.
[snip]
Just another idea. There is a php nuke script running on there, with messageboard and all. Could that be the bad guy? I read somewhere that global settings for sessions should be reset but they are not. Whenever someone is accessing the board, could it be that my session is screwed up ?
Try adding these lines to your LocalSettings.php and see if it helps:
session_module_name( "files" ); session_save_path( "/tmp" ); session_name( "MediaWikiSession" );
This should reset the session system to use files in the system /tmp directory (SquirrelMail may be leaving it in a customized mode which isn't being reset properly when the server process is reused for a request for your wiki) and use a different cookie name to avoid possible stomping from other apps using the default.
I'm hoping that being in safe mode won't disable these settings... :P
-- brion vibber (brion @ pobox.com)