[PHP-DEV] Bug #14518 Updated: --enable-trans-id doesn't work

2001-12-16 Thread theseer

ID: 14518
User updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
Status: Critical
Bug Type: Session related
Operating System: LInux 2.4.16 (RH7.2 based)
PHP Version: 4.1.0
New Comment:

I developed my stuff using the cvs-version and downgraded my workstation to 4.1.0 
Release-Version to verify my code will be working on the live server...
[ glad, i did that though ;-) ]

To simplify and verify that it's not a stupid bug in my code, i did a simple testcode 
that works fine on my 4.2.0-dev system, but doesn't work on any 4.1.0 i tried it with.

You can have a look for yourself:

 http://sugar.freepoint.de/session/

the index.php ( source as index.phps ) will start a session and setup one simple var 
with a value.

The link displayed should have a SESSION-ID as a parameter since php is not configured 
to use cookies ( verify by /session/info.php ) and to use trans-id's.

The logical result is that following the link will not have a session thus no value ( 
page2.php / page2.phps )

Again this code works with cvs on my workstation - my code beeing unchanged. Due to 
the use of $_SESSION it won't work with older versions of course..



Previous Comments:


[2001-12-15 21:52:47] [EMAIL PROTECTED]

theseer, do you use ob_end_*() in your script?
Could you add more details?

-- Yasuo



[2001-12-15 12:05:11] [EMAIL PROTECTED]

I can not reproduce this with 4.1.0



[2001-12-15 11:46:59] [EMAIL PROTECTED]

Can anybody else reproduce this on *4.1.0*?




[2001-12-14 20:38:46] [EMAIL PROTECTED]

Just note: I can not reproduce this with latest CVS.




[2001-12-14 12:48:23] [EMAIL PROTECTED]

I suppose you've verified problem ;) Type = Critical




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/?id=14518


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


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Bug #14518 Updated: --enable-trans-id doesn't work

2001-12-16 Thread theseer

ID: 14518
User updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
Old Status: Critical
Status: Closed
Bug Type: Session related
Operating System: LInux 2.4.16 (RH7.2 based)
PHP Version: 4.1.0
New Comment:

Found the reason:

the cvs-version doesn't seem to support or even care about --enable-trans-sid  where 
the 4.1.0 needs/uses the switch. I had a typo ( same as in the summary, dropped the s 
for in --enable-trans-sid ) in my config.nice-file i used to compile  all my 
php-versions with. 

Strange thing though is, that the phpinfo() stills shows the trans-sid to be 
enabled... Reading the note in the php.ini make this a little bit more clear: 

; use transient sid support if enabled by compiling with --enable-trans-sid.

the keyword here is if... I dunno if that is changed in cvs but it defintivly 
should, since is not very consitent ( at least to me..)

Sorry for all the trouble..  Recompiling 4.1.0 with a correct --enable-trans-sid 
seems to have fixed my problems.




Previous Comments:


[2001-12-16 12:04:10] [EMAIL PROTECTED]

I developed my stuff using the cvs-version and downgraded my workstation to 4.1.0 
Release-Version to verify my code will be working on the live server...
[ glad, i did that though ;-) ]

To simplify and verify that it's not a stupid bug in my code, i did a simple testcode 
that works fine on my 4.2.0-dev system, but doesn't work on any 4.1.0 i tried it with.

You can have a look for yourself:

 http://sugar.freepoint.de/session/

the index.php ( source as index.phps ) will start a session and setup one simple var 
with a value.

The link displayed should have a SESSION-ID as a parameter since php is not configured 
to use cookies ( verify by /session/info.php ) and to use trans-id's.

The logical result is that following the link will not have a session thus no value ( 
page2.php / page2.phps )

Again this code works with cvs on my workstation - my code beeing unchanged. Due to 
the use of $_SESSION it won't work with older versions of course..





[2001-12-15 21:52:47] [EMAIL PROTECTED]

theseer, do you use ob_end_*() in your script?
Could you add more details?

-- Yasuo



[2001-12-15 12:05:11] [EMAIL PROTECTED]

I can not reproduce this with 4.1.0



[2001-12-15 11:46:59] [EMAIL PROTECTED]

Can anybody else reproduce this on *4.1.0*?




[2001-12-14 20:38:46] [EMAIL PROTECTED]

Just note: I can not reproduce this with latest CVS.




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/?id=14518


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


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Bug #14518 Updated: --enable-trans-id doesn't work

2001-12-16 Thread cmk

ID: 14518
Updated by: cmk
Reported By: [EMAIL PROTECTED]
Old Status: Closed
Status: Critical
Bug Type: Session related
Operating System: LInux 2.4.16 (RH7.2 based)
PHP Version: 4.1.0
New Comment:

Checked with the code you provided and still can not reproduce this.

Previous Comments:


[2001-12-16 13:00:06] [EMAIL PROTECTED]

Found the reason:

the cvs-version doesn't seem to support or even care about --enable-trans-sid  where 
the 4.1.0 needs/uses the switch. I had a typo ( same as in the summary, dropped the s 
for in --enable-trans-sid ) in my config.nice-file i used to compile  all my 
php-versions with. 

Strange thing though is, that the phpinfo() stills shows the trans-sid to be 
enabled... Reading the note in the php.ini make this a little bit more clear: 

; use transient sid support if enabled by compiling with --enable-trans-sid.

the keyword here is if... I dunno if that is changed in cvs but it defintivly 
should, since is not very consitent ( at least to me..)

Sorry for all the trouble..  Recompiling 4.1.0 with a correct --enable-trans-sid 
seems to have fixed my problems.






[2001-12-16 12:04:10] [EMAIL PROTECTED]

I developed my stuff using the cvs-version and downgraded my workstation to 4.1.0 
Release-Version to verify my code will be working on the live server...
[ glad, i did that though ;-) ]

To simplify and verify that it's not a stupid bug in my code, i did a simple testcode 
that works fine on my 4.2.0-dev system, but doesn't work on any 4.1.0 i tried it with.

You can have a look for yourself:

 http://sugar.freepoint.de/session/

the index.php ( source as index.phps ) will start a session and setup one simple var 
with a value.

The link displayed should have a SESSION-ID as a parameter since php is not configured 
to use cookies ( verify by /session/info.php ) and to use trans-id's.

The logical result is that following the link will not have a session thus no value ( 
page2.php / page2.phps )

Again this code works with cvs on my workstation - my code beeing unchanged. Due to 
the use of $_SESSION it won't work with older versions of course..





[2001-12-15 21:52:47] [EMAIL PROTECTED]

theseer, do you use ob_end_*() in your script?
Could you add more details?

-- Yasuo



[2001-12-15 12:05:11] [EMAIL PROTECTED]

I can not reproduce this with 4.1.0



[2001-12-15 11:46:59] [EMAIL PROTECTED]

Can anybody else reproduce this on *4.1.0*?




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/?id=14518


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


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Bug #14518 Updated: --enable-trans-id doesn't work

2001-12-16 Thread cmk

ID: 14518
Updated by: cmk
Reported By: [EMAIL PROTECTED]
Old Status: Critical
Status: Closed
Bug Type: Session related
Operating System: LInux 2.4.16 (RH7.2 based)
PHP Version: 4.1.0
New Comment:

Great that you could solve the problem.
And never mind about the trouble, user feedback is always appreciated.

Closing.

Previous Comments:


[2001-12-16 13:00:40] [EMAIL PROTECTED]

Checked with the code you provided and still can not reproduce this.



[2001-12-16 13:00:06] [EMAIL PROTECTED]

Found the reason:

the cvs-version doesn't seem to support or even care about --enable-trans-sid  where 
the 4.1.0 needs/uses the switch. I had a typo ( same as in the summary, dropped the s 
for in --enable-trans-sid ) in my config.nice-file i used to compile  all my 
php-versions with. 

Strange thing though is, that the phpinfo() stills shows the trans-sid to be 
enabled... Reading the note in the php.ini make this a little bit more clear: 

; use transient sid support if enabled by compiling with --enable-trans-sid.

the keyword here is if... I dunno if that is changed in cvs but it defintivly 
should, since is not very consitent ( at least to me..)

Sorry for all the trouble..  Recompiling 4.1.0 with a correct --enable-trans-sid 
seems to have fixed my problems.






[2001-12-16 12:04:10] [EMAIL PROTECTED]

I developed my stuff using the cvs-version and downgraded my workstation to 4.1.0 
Release-Version to verify my code will be working on the live server...
[ glad, i did that though ;-) ]

To simplify and verify that it's not a stupid bug in my code, i did a simple testcode 
that works fine on my 4.2.0-dev system, but doesn't work on any 4.1.0 i tried it with.

You can have a look for yourself:

 http://sugar.freepoint.de/session/

the index.php ( source as index.phps ) will start a session and setup one simple var 
with a value.

The link displayed should have a SESSION-ID as a parameter since php is not configured 
to use cookies ( verify by /session/info.php ) and to use trans-id's.

The logical result is that following the link will not have a session thus no value ( 
page2.php / page2.phps )

Again this code works with cvs on my workstation - my code beeing unchanged. Due to 
the use of $_SESSION it won't work with older versions of course..





[2001-12-15 21:52:47] [EMAIL PROTECTED]

theseer, do you use ob_end_*() in your script?
Could you add more details?

-- Yasuo



[2001-12-15 12:05:11] [EMAIL PROTECTED]

I can not reproduce this with 4.1.0



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/?id=14518


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


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Bug #14518 Updated: --enable-trans-id doesn't work

2001-12-16 Thread yohgaki

ID: 14518
Updated by: yohgaki
Reported By: [EMAIL PROTECTED]
Status: Closed
Bug Type: Session related
Operating System: LInux 2.4.16 (RH7.2 based)
PHP Version: 4.1.0
New Comment:

Current PHP allows bogus configure options in many ways.
I hope this design is going to be changed.

Previous Comments:


[2001-12-16 13:06:29] [EMAIL PROTECTED]

Great that you could solve the problem.
And never mind about the trouble, user feedback is always appreciated.

Closing.



[2001-12-16 13:00:40] [EMAIL PROTECTED]

Checked with the code you provided and still can not reproduce this.



[2001-12-16 13:00:06] [EMAIL PROTECTED]

Found the reason:

the cvs-version doesn't seem to support or even care about --enable-trans-sid  where 
the 4.1.0 needs/uses the switch. I had a typo ( same as in the summary, dropped the s 
for in --enable-trans-sid ) in my config.nice-file i used to compile  all my 
php-versions with. 

Strange thing though is, that the phpinfo() stills shows the trans-sid to be 
enabled... Reading the note in the php.ini make this a little bit more clear: 

; use transient sid support if enabled by compiling with --enable-trans-sid.

the keyword here is if... I dunno if that is changed in cvs but it defintivly 
should, since is not very consitent ( at least to me..)

Sorry for all the trouble..  Recompiling 4.1.0 with a correct --enable-trans-sid 
seems to have fixed my problems.






[2001-12-16 12:04:10] [EMAIL PROTECTED]

I developed my stuff using the cvs-version and downgraded my workstation to 4.1.0 
Release-Version to verify my code will be working on the live server...
[ glad, i did that though ;-) ]

To simplify and verify that it's not a stupid bug in my code, i did a simple testcode 
that works fine on my 4.2.0-dev system, but doesn't work on any 4.1.0 i tried it with.

You can have a look for yourself:

 http://sugar.freepoint.de/session/

the index.php ( source as index.phps ) will start a session and setup one simple var 
with a value.

The link displayed should have a SESSION-ID as a parameter since php is not configured 
to use cookies ( verify by /session/info.php ) and to use trans-id's.

The logical result is that following the link will not have a session thus no value ( 
page2.php / page2.phps )

Again this code works with cvs on my workstation - my code beeing unchanged. Due to 
the use of $_SESSION it won't work with older versions of course..





[2001-12-15 21:52:47] [EMAIL PROTECTED]

theseer, do you use ob_end_*() in your script?
Could you add more details?

-- Yasuo



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/?id=14518


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


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Bug #14518 Updated: --enable-trans-id doesn't work

2001-12-15 Thread zeev

ID: 14518
Updated by: zeev
Reported By: [EMAIL PROTECTED]
Status: Critical
Bug Type: Session related
Operating System: LInux 2.4.16 (RH7.2 based)
PHP Version: 4.1.0
New Comment:

Can anybody else reproduce this on *4.1.0*?


Previous Comments:


[2001-12-14 20:38:46] [EMAIL PROTECTED]

Just note: I can not reproduce this with latest CVS.




[2001-12-14 12:48:23] [EMAIL PROTECTED]

I suppose you've verified problem ;) Type = Critical




[2001-12-14 11:35:41] [EMAIL PROTECTED]

I compiled php4.1.0 with --enable-trans-id, configured to use no cookies for sessions.

Verifiying with phpinfo() shows the correct settings for cookies and enable-trans-id 
but php fails to add the session-id to any tag.

Passing a session-id manually works though.





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


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Bug #14518 Updated: --enable-trans-id doesn't work

2001-12-15 Thread cmk

ID: 14518
Updated by: cmk
Reported By: [EMAIL PROTECTED]
Status: Critical
Bug Type: Session related
Operating System: LInux 2.4.16 (RH7.2 based)
PHP Version: 4.1.0
New Comment:

I can not reproduce this with 4.1.0

Previous Comments:


[2001-12-15 11:46:59] [EMAIL PROTECTED]

Can anybody else reproduce this on *4.1.0*?




[2001-12-14 20:38:46] [EMAIL PROTECTED]

Just note: I can not reproduce this with latest CVS.




[2001-12-14 12:48:23] [EMAIL PROTECTED]

I suppose you've verified problem ;) Type = Critical




[2001-12-14 11:35:41] [EMAIL PROTECTED]

I compiled php4.1.0 with --enable-trans-id, configured to use no cookies for sessions.

Verifiying with phpinfo() shows the correct settings for cookies and enable-trans-id 
but php fails to add the session-id to any tag.

Passing a session-id manually works though.





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


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Bug #14518 Updated: --enable-trans-id doesn't work

2001-12-15 Thread yohgaki

ID: 14518
Updated by: yohgaki
Reported By: [EMAIL PROTECTED]
Status: Critical
Bug Type: Session related
Operating System: LInux 2.4.16 (RH7.2 based)
PHP Version: 4.1.0
New Comment:

theseer, do you use ob_end_*() in your script?
Could you add more details?

-- Yasuo

Previous Comments:


[2001-12-15 12:05:11] [EMAIL PROTECTED]

I can not reproduce this with 4.1.0



[2001-12-15 11:46:59] [EMAIL PROTECTED]

Can anybody else reproduce this on *4.1.0*?




[2001-12-14 20:38:46] [EMAIL PROTECTED]

Just note: I can not reproduce this with latest CVS.




[2001-12-14 12:48:23] [EMAIL PROTECTED]

I suppose you've verified problem ;) Type = Critical




[2001-12-14 11:35:41] [EMAIL PROTECTED]

I compiled php4.1.0 with --enable-trans-id, configured to use no cookies for sessions.

Verifiying with phpinfo() shows the correct settings for cookies and enable-trans-id 
but php fails to add the session-id to any tag.

Passing a session-id manually works though.





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


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Bug #14518 Updated: --enable-trans-id doesn't work

2001-12-14 Thread yohgaki

ID: 14518
Updated by: yohgaki
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Critical
Bug Type: Session related
Operating System: LInux 2.4.16 (RH7.2 based)
PHP Version: 4.1.0
New Comment:

I suppose you've verified problem ;) Type = Critical


Previous Comments:


[2001-12-14 11:35:41] [EMAIL PROTECTED]

I compiled php4.1.0 with --enable-trans-id, configured to use no cookies for sessions.

Verifiying with phpinfo() shows the correct settings for cookies and enable-trans-id 
but php fails to add the session-id to any tag.

Passing a session-id manually works though.





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


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Bug #14518 Updated: --enable-trans-id doesn't work

2001-12-14 Thread sniper

ID: 14518
Updated by: sniper
Reported By: [EMAIL PROTECTED]
Status: Critical
Bug Type: Session related
Operating System: LInux 2.4.16 (RH7.2 based)
PHP Version: 4.1.0
New Comment:

Just note: I can not reproduce this with latest CVS.


Previous Comments:


[2001-12-14 12:48:23] [EMAIL PROTECTED]

I suppose you've verified problem ;) Type = Critical




[2001-12-14 11:35:41] [EMAIL PROTECTED]

I compiled php4.1.0 with --enable-trans-id, configured to use no cookies for sessions.

Verifiying with phpinfo() shows the correct settings for cookies and enable-trans-id 
but php fails to add the session-id to any tag.

Passing a session-id manually works though.





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


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]