Ask a Question related to PHP Bugs, Design and Development.
-
sup1382 at accedo dot es #1
#39833 [NEW]: Session variables overwritten by local variables (register_globals=off)
From: sup1382 at accedo dot es
Operating system: OpenBSD 3.9
PHP version: 5.2.0
PHP Bug Type: Session related
Bug description: Session variables overwritten by local variables (register_globals=off)
Description:
------------
Session variables are being overwritten by local variables with everything
(that I've checked) set as default, register_globals=off,
bug_compat_42=off, etc.
In my workstation (Fedora Core 5), I get the correct output.
(Surprisingly first time I execute the script in the OpenBSD box I get
the correct output. Then always the buggie one).
This are the options used in 'configure':
--with-apxs=/usr/sbin/apxs --without-mysql --enable-xml --enable-wddx
--enable-cli --with-gettext=/usr/local/base/ --enable-dio
--with-pear=/usr/share/pear --enable-bcmath --enable-session
--enable-trans-sid --enable-calendar --enable-ctype --enable-ftp
--with-pcre-regex --with-posix --enable-sockets --enable-sysvsem
--enable-sysvshm --enable-yp --enable-exif --without-sqlite
(Copied from the OpenBSD ports, the same problem applies also to the
packaged version in OpenBSD 3.9, PHP 5.05, I've recompiled and tested with
5.2 to check if the problem continues, and it does).
Reproduce code:
---------------
<?php
session_start();
$_SESSION["test"] = "test";
$test = null;
print("<br>Local var test: '".$test."'");
print("<br>Session var test: '".$_SESSION["test"]."'");
?>
Expected result:
----------------
Local var test: ''
Session var test: 'test'
Actual result:
--------------
Local var test: ''
Session var test: ''
--
Edit bug report at [url]http://bugs.php.net/?id=39833&edit=1[/url]
--
Try a CVS snapshot (PHP 4.4): [url]http://bugs.php.net/fix.php?id=39833&r=trysnapshot44[/url]
Try a CVS snapshot (PHP 5.2): [url]http://bugs.php.net/fix.php?id=39833&r=trysnapshot52[/url]
Try a CVS snapshot (PHP 6.0): [url]http://bugs.php.net/fix.php?id=39833&r=trysnapshot60[/url]
Fixed in CVS: [url]http://bugs.php.net/fix.php?id=39833&r=fixedcvs[/url]
Fixed in release: [url]http://bugs.php.net/fix.php?id=39833&r=alreadyfixed[/url]
Need backtrace: [url]http://bugs.php.net/fix.php?id=39833&r=needtrace[/url]
Need Reproduce Script: [url]http://bugs.php.net/fix.php?id=39833&r=needscript[/url]
Try newer version: [url]http://bugs.php.net/fix.php?id=39833&r=oldversion[/url]
Not developer issue: [url]http://bugs.php.net/fix.php?id=39833&r=support[/url]
Expected behavior: [url]http://bugs.php.net/fix.php?id=39833&r=notwrong[/url]
Not enough info: [url]http://bugs.php.net/fix.php?id=39833&r=notenoughinfo[/url]
Submitted twice: [url]http://bugs.php.net/fix.php?id=39833&r=submittedtwice[/url]
register_globals: [url]http://bugs.php.net/fix.php?id=39833&r=globals[/url]
PHP 3 support discontinued: [url]http://bugs.php.net/fix.php?id=39833&r=php3[/url]
Daylight Savings: [url]http://bugs.php.net/fix.php?id=39833&r=dst[/url]
IIS Stability: [url]http://bugs.php.net/fix.php?id=39833&r=isapi[/url]
Install GNU Sed: [url]http://bugs.php.net/fix.php?id=39833&r=gnused[/url]
Floating point limitations: [url]http://bugs.php.net/fix.php?id=39833&r=float[/url]
No Zend Extensions: [url]http://bugs.php.net/fix.php?id=39833&r=nozend[/url]
MySQL Configuration Error: [url]http://bugs.php.net/fix.php?id=39833&r=mysqlcfg[/url]
sup1382 at accedo dot es Guest
-
#39447 [NEW]: Want to optionally handle apc_upload_progress variables using session variables
From: krudtaa at yahoo dot com Operating system: All PHP version: 5.2.0 PHP Bug Type: Feature/Change Request Bug... -
Variables are overwritten when another person logs in
Hello I've created an ASP.NET page, which uses some variables which are set after login. When person A logs in, a new public object is instanced... -
#24562 [Opn->Csd]: Server variables are invisible with register_globals on
ID: 24562 Updated by: sniper@php.net Reported By: sagi at boom dot org dot il -Status: Open +Status: ... -
#24562 [Bgs->Opn]: Server variables are invisible with register_globals on
ID: 24562 User updated by: sagi at boom dot org dot il Reported By: sagi at boom dot org dot il -Status: Bogus... -
#24562 [Opn->Bgs]: Server variables are invisible with register_globals on
ID: 24562 Updated by: sniper@php.net Reported By: sagi at boom dot org dot il -Status: Open +Status: ... -
judas dot iscariote at gmail dot com #2
#39833 [Com]: Session variables overwritten by local variables (register_globals=off)
ID: 39833
Comment by: judas dot iscariote at gmail dot com
Reported By: sup1382 at accedo dot es
Status: Open
Bug Type: Session related
Operating System: OpenBSD 3.9
PHP Version: 5.2.0
New Comment:
works as expected here, are you sure register_globals is disabled ?
Previous Comments:
------------------------------------------------------------------------
[2006-12-14 14:33:14] sup1382 at accedo dot es
Description:
------------
Session variables are being overwritten by local variables with
everything (that I've checked) set as default, register_globals=off,
bug_compat_42=off, etc.
In my workstation (Fedora Core 5), I get the correct output.
(Surprisingly first time I execute the script in the OpenBSD box I get
the correct output. Then always the buggie one).
This are the options used in 'configure':
--with-apxs=/usr/sbin/apxs --without-mysql --enable-xml --enable-wddx
--enable-cli --with-gettext=/usr/local/base/ --enable-dio
--with-pear=/usr/share/pear --enable-bcmath --enable-session
--enable-trans-sid --enable-calendar --enable-ctype --enable-ftp
--with-pcre-regex --with-posix --enable-sockets --enable-sysvsem
--enable-sysvshm --enable-yp --enable-exif --without-sqlite
(Copied from the OpenBSD ports, the same problem applies also to the
packaged version in OpenBSD 3.9, PHP 5.05, I've recompiled and tested
with 5.2 to check if the problem continues, and it does).
Reproduce code:
---------------
<?php
session_start();
$_SESSION["test"] = "test";
$test = null;
print("<br>Local var test: '".$test."'");
print("<br>Session var test: '".$_SESSION["test"]."'");
?>
Expected result:
----------------
Local var test: ''
Session var test: 'test'
Actual result:
--------------
Local var test: ''
Session var test: ''
------------------------------------------------------------------------
--
Edit this bug report at [url]http://bugs.php.net/?id=39833&edit=1[/url]
judas dot iscariote at gmail dot com Guest
-
sup1382 at accedo dot es #3
#39833 [Opn]: Session variables overwritten by local variables (register_globals=off)
ID: 39833
User updated by: sup1382 at accedo dot es
Reported By: sup1382 at accedo dot es
Status: Open
Bug Type: Session related
Operating System: OpenBSD 3.9
PHP Version: 5.2.0
New Comment:
Yes, absolutely. The most strange behavior, is that first output is ok,
then always the bad one.
Previous Comments:
------------------------------------------------------------------------
[2006-12-14 19:14:31] judas dot iscariote at gmail dot com
works as expected here, are you sure register_globals is disabled ?
------------------------------------------------------------------------
[2006-12-14 14:33:14] sup1382 at accedo dot es
Description:
------------
Session variables are being overwritten by local variables with
everything (that I've checked) set as default, register_globals=off,
bug_compat_42=off, etc.
In my workstation (Fedora Core 5), I get the correct output.
(Surprisingly first time I execute the script in the OpenBSD box I get
the correct output. Then always the buggie one).
This are the options used in 'configure':
--with-apxs=/usr/sbin/apxs --without-mysql --enable-xml --enable-wddx
--enable-cli --with-gettext=/usr/local/base/ --enable-dio
--with-pear=/usr/share/pear --enable-bcmath --enable-session
--enable-trans-sid --enable-calendar --enable-ctype --enable-ftp
--with-pcre-regex --with-posix --enable-sockets --enable-sysvsem
--enable-sysvshm --enable-yp --enable-exif --without-sqlite
(Copied from the OpenBSD ports, the same problem applies also to the
packaged version in OpenBSD 3.9, PHP 5.05, I've recompiled and tested
with 5.2 to check if the problem continues, and it does).
Reproduce code:
---------------
<?php
session_start();
$_SESSION["test"] = "test";
$test = null;
print("<br>Local var test: '".$test."'");
print("<br>Session var test: '".$_SESSION["test"]."'");
?>
Expected result:
----------------
Local var test: ''
Session var test: 'test'
Actual result:
--------------
Local var test: ''
Session var test: ''
------------------------------------------------------------------------
--
Edit this bug report at [url]http://bugs.php.net/?id=39833&edit=1[/url]
sup1382 at accedo dot es Guest
-
sup1382 at accedo dot es #4
#39833 [Opn]: Session variables overwritten by local variables (register_globals=off)
ID: 39833
User updated by: sup1382 at accedo dot es
Reported By: sup1382 at accedo dot es
Status: Open
Bug Type: Session related
Operating System: OpenBSD 3.9
PHP Version: 5.2.0
New Comment:
BTW, in my parameters of 'config' there was one directory wrong
--with-gettext=/usr/local/base/ is really
--with-gettext=/usr/local/bin/
I've made a symlink to avoid this, but I believe this problem has
nothing to do with gettext (same result anyway)
Previous Comments:
------------------------------------------------------------------------
[2006-12-14 22:48:10] sup1382 at accedo dot es
Yes, absolutely. The most strange behavior, is that first output is ok,
then always the bad one.
------------------------------------------------------------------------
[2006-12-14 19:14:31] judas dot iscariote at gmail dot com
works as expected here, are you sure register_globals is disabled ?
------------------------------------------------------------------------
[2006-12-14 14:33:14] sup1382 at accedo dot es
Description:
------------
Session variables are being overwritten by local variables with
everything (that I've checked) set as default, register_globals=off,
bug_compat_42=off, etc.
In my workstation (Fedora Core 5), I get the correct output.
(Surprisingly first time I execute the script in the OpenBSD box I get
the correct output. Then always the buggie one).
This are the options used in 'configure':
--with-apxs=/usr/sbin/apxs --without-mysql --enable-xml --enable-wddx
--enable-cli --with-gettext=/usr/local/base/ --enable-dio
--with-pear=/usr/share/pear --enable-bcmath --enable-session
--enable-trans-sid --enable-calendar --enable-ctype --enable-ftp
--with-pcre-regex --with-posix --enable-sockets --enable-sysvsem
--enable-sysvshm --enable-yp --enable-exif --without-sqlite
(Copied from the OpenBSD ports, the same problem applies also to the
packaged version in OpenBSD 3.9, PHP 5.05, I've recompiled and tested
with 5.2 to check if the problem continues, and it does).
Reproduce code:
---------------
<?php
session_start();
$_SESSION["test"] = "test";
$test = null;
print("<br>Local var test: '".$test."'");
print("<br>Session var test: '".$_SESSION["test"]."'");
?>
Expected result:
----------------
Local var test: ''
Session var test: 'test'
Actual result:
--------------
Local var test: ''
Session var test: ''
------------------------------------------------------------------------
--
Edit this bug report at [url]http://bugs.php.net/?id=39833&edit=1[/url]
sup1382 at accedo dot es Guest
-
tony2001@php.net #5
#39833 [Opn->Fbk]: Session variables overwritten by local variables (register_globals=off)
ID: 39833
Updated by: [email]tony2001@php.net[/email]
Reported By: sup1382 at accedo dot es
-Status: Open
+Status: Feedback
Bug Type: Session related
Operating System: OpenBSD 3.9
PHP Version: 5.2.0
New Comment:
Add phpinfo() to end of this code and put the URL here.
Previous Comments:
------------------------------------------------------------------------
[2006-12-14 23:07:53] sup1382 at accedo dot es
BTW, in my parameters of 'config' there was one directory wrong
--with-gettext=/usr/local/base/ is really
--with-gettext=/usr/local/bin/
I've made a symlink to avoid this, but I believe this problem has
nothing to do with gettext (same result anyway)
------------------------------------------------------------------------
[2006-12-14 22:48:10] sup1382 at accedo dot es
Yes, absolutely. The most strange behavior, is that first output is ok,
then always the bad one.
------------------------------------------------------------------------
[2006-12-14 19:14:31] judas dot iscariote at gmail dot com
works as expected here, are you sure register_globals is disabled ?
------------------------------------------------------------------------
[2006-12-14 14:33:14] sup1382 at accedo dot es
Description:
------------
Session variables are being overwritten by local variables with
everything (that I've checked) set as default, register_globals=off,
bug_compat_42=off, etc.
In my workstation (Fedora Core 5), I get the correct output.
(Surprisingly first time I execute the script in the OpenBSD box I get
the correct output. Then always the buggie one).
This are the options used in 'configure':
--with-apxs=/usr/sbin/apxs --without-mysql --enable-xml --enable-wddx
--enable-cli --with-gettext=/usr/local/base/ --enable-dio
--with-pear=/usr/share/pear --enable-bcmath --enable-session
--enable-trans-sid --enable-calendar --enable-ctype --enable-ftp
--with-pcre-regex --with-posix --enable-sockets --enable-sysvsem
--enable-sysvshm --enable-yp --enable-exif --without-sqlite
(Copied from the OpenBSD ports, the same problem applies also to the
packaged version in OpenBSD 3.9, PHP 5.05, I've recompiled and tested
with 5.2 to check if the problem continues, and it does).
Reproduce code:
---------------
<?php
session_start();
$_SESSION["test"] = "test";
$test = null;
print("<br>Local var test: '".$test."'");
print("<br>Session var test: '".$_SESSION["test"]."'");
?>
Expected result:
----------------
Local var test: ''
Session var test: 'test'
Actual result:
--------------
Local var test: ''
Session var test: ''
------------------------------------------------------------------------
--
Edit this bug report at [url]http://bugs.php.net/?id=39833&edit=1[/url]
tony2001@php.net Guest
-
sup1382 at accedo dot es #6
#39833 [Fbk->Opn]: Session variables overwritten by local variables (register_globals=off)
ID: 39833
User updated by: sup1382 at accedo dot es
Reported By: sup1382 at accedo dot es
-Status: Feedback
+Status: Open
Bug Type: Session related
Operating System: OpenBSD 3.9
PHP Version: 5.2.0
New Comment:
Ups, this is a hosting production server I prefer, too much server info
to disclose it to the public, if it is posible I'll send you by mail the
url
Previous Comments:
------------------------------------------------------------------------
[2006-12-15 09:55:29] [email]tony2001@php.net[/email]
Add phpinfo() to end of this code and put the URL here.
------------------------------------------------------------------------
[2006-12-14 23:07:53] sup1382 at accedo dot es
BTW, in my parameters of 'config' there was one directory wrong
--with-gettext=/usr/local/base/ is really
--with-gettext=/usr/local/bin/
I've made a symlink to avoid this, but I believe this problem has
nothing to do with gettext (same result anyway)
------------------------------------------------------------------------
[2006-12-14 22:48:10] sup1382 at accedo dot es
Yes, absolutely. The most strange behavior, is that first output is ok,
then always the bad one.
------------------------------------------------------------------------
[2006-12-14 19:14:31] judas dot iscariote at gmail dot com
works as expected here, are you sure register_globals is disabled ?
------------------------------------------------------------------------
[2006-12-14 14:33:14] sup1382 at accedo dot es
Description:
------------
Session variables are being overwritten by local variables with
everything (that I've checked) set as default, register_globals=off,
bug_compat_42=off, etc.
In my workstation (Fedora Core 5), I get the correct output.
(Surprisingly first time I execute the script in the OpenBSD box I get
the correct output. Then always the buggie one).
This are the options used in 'configure':
--with-apxs=/usr/sbin/apxs --without-mysql --enable-xml --enable-wddx
--enable-cli --with-gettext=/usr/local/base/ --enable-dio
--with-pear=/usr/share/pear --enable-bcmath --enable-session
--enable-trans-sid --enable-calendar --enable-ctype --enable-ftp
--with-pcre-regex --with-posix --enable-sockets --enable-sysvsem
--enable-sysvshm --enable-yp --enable-exif --without-sqlite
(Copied from the OpenBSD ports, the same problem applies also to the
packaged version in OpenBSD 3.9, PHP 5.05, I've recompiled and tested
with 5.2 to check if the problem continues, and it does).
Reproduce code:
---------------
<?php
session_start();
$_SESSION["test"] = "test";
$test = null;
print("<br>Local var test: '".$test."'");
print("<br>Session var test: '".$_SESSION["test"]."'");
?>
Expected result:
----------------
Local var test: ''
Session var test: 'test'
Actual result:
--------------
Local var test: ''
Session var test: ''
------------------------------------------------------------------------
--
Edit this bug report at [url]http://bugs.php.net/?id=39833&edit=1[/url]
sup1382 at accedo dot es Guest
-
sup1382 at accedo dot es #7
#39833 [Opn]: Session variables overwritten by local variables (register_globals=off)
ID: 39833
User updated by: sup1382 at accedo dot es
Reported By: sup1382 at accedo dot es
Status: Open
Bug Type: Session related
Operating System: OpenBSD 3.9
PHP Version: 5.2.0
New Comment:
I've send you by mail the URLs, I've forgotten to write here that this
script was running under a SSL connection, this seems to be a important
fact becouse testing under the standard port doesn't produce any errors,
this appears only under SSL, as you can see in the URLs.
Previous Comments:
------------------------------------------------------------------------
[2006-12-15 11:10:54] sup1382 at accedo dot es
Ups, this is a hosting production server I prefer, too much server info
to disclose it to the public, if it is posible I'll send you by mail the
url
------------------------------------------------------------------------
[2006-12-15 09:55:29] [email]tony2001@php.net[/email]
Add phpinfo() to end of this code and put the URL here.
------------------------------------------------------------------------
[2006-12-14 23:07:53] sup1382 at accedo dot es
BTW, in my parameters of 'config' there was one directory wrong
--with-gettext=/usr/local/base/ is really
--with-gettext=/usr/local/bin/
I've made a symlink to avoid this, but I believe this problem has
nothing to do with gettext (same result anyway)
------------------------------------------------------------------------
[2006-12-14 22:48:10] sup1382 at accedo dot es
Yes, absolutely. The most strange behavior, is that first output is ok,
then always the bad one.
------------------------------------------------------------------------
[2006-12-14 19:14:31] judas dot iscariote at gmail dot com
works as expected here, are you sure register_globals is disabled ?
------------------------------------------------------------------------
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
[url]http://bugs.php.net/39833[/url]
--
Edit this bug report at [url]http://bugs.php.net/?id=39833&edit=1[/url]
sup1382 at accedo dot es Guest
-
tony2001@php.net #8
#39833 [Opn]: Session variables overwritten by local variables (register_globals=off)
ID: 39833
Updated by: [email]tony2001@php.net[/email]
Reported By: sup1382 at accedo dot es
Status: Open
Bug Type: Session related
Operating System: OpenBSD 3.9
PHP Version: 5.2.0
New Comment:
I am currently away from my computer and don't have access to my
mailbox.
Previous Comments:
------------------------------------------------------------------------
[2006-12-15 11:31:43] sup1382 at accedo dot es
I've send you by mail the URLs, I've forgotten to write here that this
script was running under a SSL connection, this seems to be a important
fact becouse testing under the standard port doesn't produce any errors,
this appears only under SSL, as you can see in the URLs.
------------------------------------------------------------------------
[2006-12-15 11:10:54] sup1382 at accedo dot es
Ups, this is a hosting production server I prefer, too much server info
to disclose it to the public, if it is posible I'll send you by mail the
url
------------------------------------------------------------------------
[2006-12-15 09:55:29] [email]tony2001@php.net[/email]
Add phpinfo() to end of this code and put the URL here.
------------------------------------------------------------------------
[2006-12-14 23:07:53] sup1382 at accedo dot es
BTW, in my parameters of 'config' there was one directory wrong
--with-gettext=/usr/local/base/ is really
--with-gettext=/usr/local/bin/
I've made a symlink to avoid this, but I believe this problem has
nothing to do with gettext (same result anyway)
------------------------------------------------------------------------
[2006-12-14 22:48:10] sup1382 at accedo dot es
Yes, absolutely. The most strange behavior, is that first output is ok,
then always the bad one.
------------------------------------------------------------------------
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
[url]http://bugs.php.net/39833[/url]
--
Edit this bug report at [url]http://bugs.php.net/?id=39833&edit=1[/url]
tony2001@php.net Guest
-
sup1382 at accedo dot es #9
#39833 [Opn]: Session variables overwritten by local variables (register_globals=off)
ID: 39833
User updated by: sup1382 at accedo dot es
Reported By: sup1382 at accedo dot es
Status: Open
Bug Type: Session related
Operating System: OpenBSD 3.9
PHP Version: 5.2.0
New Comment:
If you have any webmail (Gmail-Hotmail, etc) account I'll send you
again the URLs, or I'll wait no problem.
Previous Comments:
------------------------------------------------------------------------
[2006-12-15 11:46:31] [email]tony2001@php.net[/email]
I am currently away from my computer and don't have access to my
mailbox.
------------------------------------------------------------------------
[2006-12-15 11:31:43] sup1382 at accedo dot es
I've send you by mail the URLs, I've forgotten to write here that this
script was running under a SSL connection, this seems to be a important
fact becouse testing under the standard port doesn't produce any errors,
this appears only under SSL, as you can see in the URLs.
------------------------------------------------------------------------
[2006-12-15 11:10:54] sup1382 at accedo dot es
Ups, this is a hosting production server I prefer, too much server info
to disclose it to the public, if it is posible I'll send you by mail the
url
------------------------------------------------------------------------
[2006-12-15 09:55:29] [email]tony2001@php.net[/email]
Add phpinfo() to end of this code and put the URL here.
------------------------------------------------------------------------
[2006-12-14 23:07:53] sup1382 at accedo dot es
BTW, in my parameters of 'config' there was one directory wrong
--with-gettext=/usr/local/base/ is really
--with-gettext=/usr/local/bin/
I've made a symlink to avoid this, but I believe this problem has
nothing to do with gettext (same result anyway)
------------------------------------------------------------------------
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
[url]http://bugs.php.net/39833[/url]
--
Edit this bug report at [url]http://bugs.php.net/?id=39833&edit=1[/url]
sup1382 at accedo dot es Guest
-
tony2001@php.net #10
#39833 [Opn->Fbk]: Session variables overwritten by local variables (register_globals=off)
ID: 39833
Updated by: [email]tony2001@php.net[/email]
Reported By: sup1382 at accedo dot es
-Status: Open
+Status: Feedback
Bug Type: Session related
Operating System: OpenBSD 3.9
PHP Version: 5.2.0
New Comment:
..
Previous Comments:
------------------------------------------------------------------------
[2006-12-15 11:49:47] sup1382 at accedo dot es
If you have any webmail (Gmail-Hotmail, etc) account I'll send you
again the URLs, or I'll wait no problem.
------------------------------------------------------------------------
[2006-12-15 11:46:31] [email]tony2001@php.net[/email]
I am currently away from my computer and don't have access to my
mailbox.
------------------------------------------------------------------------
[2006-12-15 11:31:43] sup1382 at accedo dot es
I've send you by mail the URLs, I've forgotten to write here that this
script was running under a SSL connection, this seems to be a important
fact becouse testing under the standard port doesn't produce any errors,
this appears only under SSL, as you can see in the URLs.
------------------------------------------------------------------------
[2006-12-15 11:10:54] sup1382 at accedo dot es
Ups, this is a hosting production server I prefer, too much server info
to disclose it to the public, if it is posible I'll send you by mail the
url
------------------------------------------------------------------------
[2006-12-15 09:55:29] [email]tony2001@php.net[/email]
Add phpinfo() to end of this code and put the URL here.
------------------------------------------------------------------------
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
[url]http://bugs.php.net/39833[/url]
--
Edit this bug report at [url]http://bugs.php.net/?id=39833&edit=1[/url]
tony2001@php.net Guest
-
sup1382 at accedo dot es #11
#39833 [Fbk->Opn]: Session variables overwritten by local variables (SSL, register_globals=off)
ID: 39833
User updated by: sup1382 at accedo dot es
-Summary: Session variables overwritten by local variables
(register_globals=off)
Reported By: sup1382 at accedo dot es
-Status: Feedback
+Status: Open
Bug Type: Session related
Operating System: OpenBSD 3.9
PHP Version: 5.2.0
New Comment:
..
Previous Comments:
------------------------------------------------------------------------
[2006-12-18 10:53:01] [email]tony2001@php.net[/email]
..
------------------------------------------------------------------------
[2006-12-15 11:49:47] sup1382 at accedo dot es
If you have any webmail (Gmail-Hotmail, etc) account I'll send you
again the URLs, or I'll wait no problem.
------------------------------------------------------------------------
[2006-12-15 11:46:31] [email]tony2001@php.net[/email]
I am currently away from my computer and don't have access to my
mailbox.
------------------------------------------------------------------------
[2006-12-15 11:31:43] sup1382 at accedo dot es
I've send you by mail the URLs, I've forgotten to write here that this
script was running under a SSL connection, this seems to be a important
fact becouse testing under the standard port doesn't produce any errors,
this appears only under SSL, as you can see in the URLs.
------------------------------------------------------------------------
[2006-12-15 11:10:54] sup1382 at accedo dot es
Ups, this is a hosting production server I prefer, too much server info
to disclose it to the public, if it is posible I'll send you by mail the
url
------------------------------------------------------------------------
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
[url]http://bugs.php.net/39833[/url]
--
Edit this bug report at [url]http://bugs.php.net/?id=39833&edit=1[/url]
sup1382 at accedo dot es Guest
-
sup1382 at accedo dot es #12
#39833 [Opn]: Session variables overwritten by local variables (SSL, register_globals=off)
ID: 39833
User updated by: sup1382 at accedo dot es
Reported By: sup1382 at accedo dot es
Status: Open
Bug Type: Session related
Operating System: OpenBSD 3.9
PHP Version: 5.2.0
New Comment:
I've checked that in a SSL connection, register_globals always is being
"on" (yet in 5.2 version), php.ini is right parsed, and there
register_globals is off, I know it because several personalized vars
are ok (include_path, etc), but register_globals always stay true, no
matter what I put in php.ini, or httpd.conf (php_flag register_globals
off, etc). No problems in normal transmision (port 80). Seems to be a
very big problem for only being suffered by me. Anybody using SSL with
register_globals=off out there without problems?
Previous Comments:
------------------------------------------------------------------------
[2006-12-19 10:14:07] sup1382 at accedo dot es
..
------------------------------------------------------------------------
[2006-12-18 10:53:01] [email]tony2001@php.net[/email]
..
------------------------------------------------------------------------
[2006-12-15 11:49:47] sup1382 at accedo dot es
If you have any webmail (Gmail-Hotmail, etc) account I'll send you
again the URLs, or I'll wait no problem.
------------------------------------------------------------------------
[2006-12-15 11:46:31] [email]tony2001@php.net[/email]
I am currently away from my computer and don't have access to my
mailbox.
------------------------------------------------------------------------
[2006-12-15 11:31:43] sup1382 at accedo dot es
I've send you by mail the URLs, I've forgotten to write here that this
script was running under a SSL connection, this seems to be a important
fact becouse testing under the standard port doesn't produce any errors,
this appears only under SSL, as you can see in the URLs.
------------------------------------------------------------------------
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
[url]http://bugs.php.net/39833[/url]
--
Edit this bug report at [url]http://bugs.php.net/?id=39833&edit=1[/url]
sup1382 at accedo dot es Guest
-
tony2001@php.net #13
#39833 [Opn->Fbk]: Session variables overwritten by local variables (SSL, register_globals=off)
ID: 39833
Updated by: [email]tony2001@php.net[/email]
Reported By: sup1382 at accedo dot es
-Status: Open
+Status: Feedback
Bug Type: Session related
Operating System: OpenBSD 3.9
PHP Version: 5.2.0
New Comment:
Please make sure you're using right php.ini (the correct one can be
found in phpinfo()), restarted Apache and did not set register_globals
in VirtualHost section, htaccess etc. etc.
Previous Comments:
------------------------------------------------------------------------
[2006-12-19 10:23:08] sup1382 at accedo dot es
I've checked that in a SSL connection, register_globals always is being
"on" (yet in 5.2 version), php.ini is right parsed, and there
register_globals is off, I know it because several personalized vars
are ok (include_path, etc), but register_globals always stay true, no
matter what I put in php.ini, or httpd.conf (php_flag register_globals
off, etc). No problems in normal transmision (port 80). Seems to be a
very big problem for only being suffered by me. Anybody using SSL with
register_globals=off out there without problems?
------------------------------------------------------------------------
[2006-12-19 10:14:07] sup1382 at accedo dot es
..
------------------------------------------------------------------------
[2006-12-18 10:53:01] [email]tony2001@php.net[/email]
..
------------------------------------------------------------------------
[2006-12-15 11:49:47] sup1382 at accedo dot es
If you have any webmail (Gmail-Hotmail, etc) account I'll send you
again the URLs, or I'll wait no problem.
------------------------------------------------------------------------
[2006-12-15 11:46:31] [email]tony2001@php.net[/email]
I am currently away from my computer and don't have access to my
mailbox.
------------------------------------------------------------------------
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
[url]http://bugs.php.net/39833[/url]
--
Edit this bug report at [url]http://bugs.php.net/?id=39833&edit=1[/url]
tony2001@php.net Guest
-
sup1382 at accedo dot es #14
#39833 [Fbk->Csd]: Session variables overwritten by local variables (SSL, register_globals=off)
ID: 39833
User updated by: sup1382 at accedo dot es
Reported By: sup1382 at accedo dot es
-Status: Feedback
+Status: Closed
Bug Type: Session related
Operating System: OpenBSD 3.9
PHP Version: 5.2.0
New Comment:
Ok, now I understand what happened, I had a (%$*"&!!) "php_admin_value
register_globals on" in the <VirtualHost [ip]> section of the ssl
subdomain, in httpd.conf, the problem was that version 5.05 don't
reflected this change [phpinfo() shows register_globals as off, even
with this line activated in httpd.conf], things get clearer with v.5.2
Thank you for the support and sorry for the bogus info.
Previous Comments:
------------------------------------------------------------------------
[2006-12-19 10:29:42] tony2001@php.net
Please make sure you're using right php.ini (the correct one can be
found in phpinfo()), restarted Apache and did not set register_globals
in VirtualHost section, htaccess etc. etc.
------------------------------------------------------------------------
[2006-12-19 10:23:08] sup1382 at accedo dot es
I've checked that in a SSL connection, register_globals always is being
"on" (yet in 5.2 version), php.ini is right parsed, and there
register_globals is off, I know it because several personalized vars
are ok (include_path, etc), but register_globals always stay true, no
matter what I put in php.ini, or httpd.conf (php_flag register_globals
off, etc). No problems in normal transmision (port 80). Seems to be a
very big problem for only being suffered by me. Anybody using SSL with
register_globals=off out there without problems?
------------------------------------------------------------------------
[2006-12-19 10:14:07] sup1382 at accedo dot es
..
------------------------------------------------------------------------
[2006-12-18 10:53:01] tony2001@php.net
..
------------------------------------------------------------------------
[2006-12-15 11:49:47] sup1382 at accedo dot es
If you have any webmail (Gmail-Hotmail, etc) account I'll send you
again the URLs, or I'll wait no problem.
------------------------------------------------------------------------
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/39833
--
Edit this bug report at http://bugs.php.net/?id=39833&edit=1
sup1382 at accedo dot es Guest
-
tony2001@php.net #15
#39833 [Csd->Bgs]: Session variables overwritten by local variables (SSL, register_globals=off)
ID: 39833
Updated by: [email]tony2001@php.net[/email]
Reported By: sup1382 at accedo dot es
-Status: Closed
+Status: Bogus
Bug Type: Session related
Operating System: OpenBSD 3.9
PHP Version: 5.2.0
Previous Comments:
------------------------------------------------------------------------
[2006-12-19 11:54:14] sup1382 at accedo dot es
Ok, now I understand what happened, I had a (%$*"&!!) "php_admin_value
register_globals on" in the <VirtualHost [ip]> section of the ssl
subdomain, in httpd.conf, the problem was that version 5.05 don't
reflected this change [phpinfo() shows register_globals as off, even
with this line activated in httpd.conf], things get clearer with v.5.2
Thank you for the support and sorry for the bogus info.
------------------------------------------------------------------------
[2006-12-19 10:29:42] tony2001@php.net
Please make sure you're using right php.ini (the correct one can be
found in phpinfo()), restarted Apache and did not set register_globals
in VirtualHost section, htaccess etc. etc.
------------------------------------------------------------------------
[2006-12-19 10:23:08] sup1382 at accedo dot es
I've checked that in a SSL connection, register_globals always is being
"on" (yet in 5.2 version), php.ini is right parsed, and there
register_globals is off, I know it because several personalized vars
are ok (include_path, etc), but register_globals always stay true, no
matter what I put in php.ini, or httpd.conf (php_flag register_globals
off, etc). No problems in normal transmision (port 80). Seems to be a
very big problem for only being suffered by me. Anybody using SSL with
register_globals=off out there without problems?
------------------------------------------------------------------------
[2006-12-19 10:14:07] sup1382 at accedo dot es
..
------------------------------------------------------------------------
[2006-12-18 10:53:01] tony2001@php.net
..
------------------------------------------------------------------------
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/39833
--
Edit this bug report at http://bugs.php.net/?id=39833&edit=1
tony2001@php.net Guest



Reply With Quote

