ID:               16102
 Comment by:       twjohnso at hotmail dot com
 Reported By:      martin_jones at bigfoot dot com
 Status:           No Feedback
 Bug Type:         Session related
 Operating System: Windows 2000/XP
 PHP Version:      4.1.2
 New Comment:

I too am having the same issue... here is my info...
PHP Version: 4.3.1 (Windows Binary)
OS Version: Win2K, SP2
Webserver: IIS
MySQL version: 4.0.10 gamma (win32)

PHP Settings...
file_uploads = On/Off (someone said this helped for them, didnt seem to
make a difference for me)
register_globals = On/Off (someone said this helped for them, didnt
seem to make a difference for me)
session support = enabled

I thought it might be worthwhile noting that this issue still doesnt
appear to be resolved in the latest version as of 2/21/03.

Regards,
Tj


Previous Comments:
------------------------------------------------------------------------

[2002-11-30 05:25:00] seema at infovergix dot com

This is a major bug in this version of php 4.1.2

------------------------------------------------------------------------

[2002-11-13 04:31:59] albaity at php4web dot com

PHP Session is not work with IIS in windows2000/WinXP

try this code :

<?
session_start();
//هذي الداله تفحص اذا كان الشخص قام بتسجيل الدخول ام لا 
function is_login(){
Global $test;
                if (session_is_registered("test") ){
                                return true;
                }//end if
                else{
                                return false;
                }//end else
}// end is_login() function

//هذه الدالة تقوم بتسجيل الدخول 
function make_login(){
Global $test;
$test = 123;
session_register('test');

}
//هذه الداله تقوم بتسجيل الخروج
function Logout(){
Global $test;
session_destroy();
}
//الان تجربة لعمل الدوال 
if (is_login()){
//اذا كان الشخص قد قام بتسجيل الدخول فاطبع قيمة المتغير test 

echo $test;
logout();
}else{
make_login();
?>
<a href="test.php">tryagain</a>
<?
}
?>


it must output "123" but is output *NOTHING*

------------------------------------------------------------------------

[2002-05-04 00:00:04] php-bugs at lists dot php dot net

No feedback was provided for this bug for over a month, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".

------------------------------------------------------------------------

[2002-04-03 01:22:04] [EMAIL PROTECTED]

Nothing changed between 4.1.1 and 4.1.2, but you can try the windows
binaries for php 4.2.0rc1 from www.php.net/~derick

------------------------------------------------------------------------

[2002-04-02 19:42:57] andreas at kampanjportalen dot com

OK, so this obviously doesn't work in the 4.1.2 version of PHP...

Does anybody have a link to somewhere I could download the previous
4.1.1 version?? Can't seem to find it...

Thanks!

------------------------------------------------------------------------

The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
    http://bugs.php.net/16102

-- 
Edit this bug report at http://bugs.php.net/?id=16102&edit=1

Reply via email to