Jan 31st, 2010, 7:55 PM
Hey Louie,
I'm not sure if those other apps use sessions or not; it sounds like that's the cause of your problems. It does sound rather like something funky is going on on your server... the inconsistent behavior just doesn't make sense. Form Tools need to keep track of various information about the user while they're logged in. If it can't, it'll just boot you out and show that message like you described.
I encountered a problem like this once before and it was due to some additional server-side restrictions in place that limited the amount of information that can be stored in sessions at one time. Could you check to see if you have suhosin installed? You can find it if you load up a page with this content:
That will list most pertinent information about your PHP environment.
Also: who's your hosting provider?
- Ben
I'm not sure if those other apps use sessions or not; it sounds like that's the cause of your problems. It does sound rather like something funky is going on on your server... the inconsistent behavior just doesn't make sense. Form Tools need to keep track of various information about the user while they're logged in. If it can't, it'll just boot you out and show that message like you described.
I encountered a problem like this once before and it was due to some additional server-side restrictions in place that limited the amount of information that can be stored in sessions at one time. Could you check to see if you have suhosin installed? You can find it if you load up a page with this content:
Code:
<?php
phpinfo();
?>
That will list most pertinent information about your PHP environment.
Also: who's your hosting provider?
- Ben