ID:               21312
 Comment by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
 Status:           Open
 Bug Type:         Session related
 Operating System: Windows 2000 Server
 PHP Version:      4.3.0
 New Comment:

I reported this same bug back in November of last year, and have had no
luck with anyone at php.net replying with any acknowledgements to the
bug or fixes.

Here is the link to the bug I reported, with some of the php.net
developers' replies.

http://bugs.php.net/bug.php?id=20583


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

[2003-01-14 19:14:04] [EMAIL PROTECTED]

PHP 4.3.0, Apache/1.3.27, RedHat Linux 7.3.

The same problem with Horde webmail. Webmail works fine,
but it shows that f warning each time on login page:

Warning: Unknown(): Your script possibly relies on a session
side-effect which existed until PHP 4.2.3. Please be advised that the
session extension does not consider global variables as a source of
data, unless register_globals is enabled. You can disable this
functionality and this warning by setting session.bug_compat_42 or
session.bug_compat_warn to off, respectively. in Unknown on line 0

I've tried to play with
register_globals
session.bug_compat_42
session.bug_compat_warn
in /etc/php.ini file, each time I've restarted apache
of course :) but no luck.

Please, tell me what's wrong?

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

[2003-01-12 13:06:47] [EMAIL PROTECTED]

Is anyone taking a look at this?  I just want to know how long I should
wait.

Sorry if this sounds impatient, it isnt meant to be.  I am just
wondering.  :)

Charles

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

[2003-01-03 10:38:26] [EMAIL PROTECTED]

Tryed that and still the same results.

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

[2003-01-03 10:22:52] [EMAIL PROTECTED]

Try adding this to your php.ini file:

session.bug_compat_42 = 1
session.bug_compat_warn = 0

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

[2003-01-01 12:19:47] [EMAIL PROTECTED]

i've the same problem with linux (apache 1.3.27) + mysql.
contents of nearly all variable are exchanged!

with a small function i had fixed this temporarly:

function dp_session_register($variable) {
  global ${$variable};
  if(is_null(${$variable}))
    ${$variable}="";
  return session_register($variable);
}

i hope, this will fixed as soon as posible. thanks.
daniel prior

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

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/21312

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

Reply via email to