bustya
09-29-2008, 10:55 PM
PHP version 4.4.6
This issue has completely stopped my development.
I read everything I could find on this topic and I've tried all within my (php) script and via .htaccess. I don't have access to php.ini, so I'm probably going to have to rethink my design.
Perhaps it's the way I'm calling up the forms.
Within my menu file (which is included itself), I do this:
if ((($action=='login') || ($action=='reset') || ($action=='register') && (!$session->logged_in)){
echo ' <div id="logger">';
include( INCLUDES.'/login.php' );
}
else{
echo ' <div id="notification">';
}
I've tried both of these in my .htaccess file:
php_value session.use_only_cookies 1
php_value session.use_trans_sid 0
<IfModule mod_php4.c>
php_flag session.use_trans_sid off
php_flag register_globals off
</IfModule>
And at the top of my php script, both before and after the beginning of the session I tried this:
ini_set('session.use_trans_sid', false);
Any ideas appreciated.
This issue has completely stopped my development.
I read everything I could find on this topic and I've tried all within my (php) script and via .htaccess. I don't have access to php.ini, so I'm probably going to have to rethink my design.
Perhaps it's the way I'm calling up the forms.
Within my menu file (which is included itself), I do this:
if ((($action=='login') || ($action=='reset') || ($action=='register') && (!$session->logged_in)){
echo ' <div id="logger">';
include( INCLUDES.'/login.php' );
}
else{
echo ' <div id="notification">';
}
I've tried both of these in my .htaccess file:
php_value session.use_only_cookies 1
php_value session.use_trans_sid 0
<IfModule mod_php4.c>
php_flag session.use_trans_sid off
php_flag register_globals off
</IfModule>
And at the top of my php script, both before and after the beginning of the session I tried this:
ini_set('session.use_trans_sid', false);
Any ideas appreciated.