|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-08-02 00:49 UTC] waldschrott@php.net
[2000-08-02 00:50 UTC] waldschrott@php.net
[2000-08-02 01:18 UTC] waldschrott@php.net
[2000-08-02 09:06 UTC] david at interpont dot hu
[2001-04-27 20:26 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 19:00:01 2025 UTC |
Hi! My problem is that I can't make sessions work. I have the following script: <? session_start(); session_register('count'); $count++; echo "<P>You have been here $count times. Thanks!</P>"; ?> And php returns: Warning: open(/tmp/sess_e1aa51f9a5c92f30bc18b2ae9eb153e4, O_RDWR) failed: m (2) in Unknown on line 0 /tmp is created and read/write/execute/script are all allowed. After 3 times of refreshing the page php reports: Warning: Nesting level too deep - recursive dependency? in Unknown on line 0 And it keeps on reporting this untill I stop the hole IIS service and start it again. I am using the ISAPI module of php. What can be the problem? Please help me if you can reproduce the failure or not and tell me about all the possible solutions. Thanks, David Szilagyi