Hai,

In My server Session has some problem but Session values are setted correctly
Some times The empty page is dispalyed with this message.

[Wed Nov 15 02:38:13 2006] [warn-phpd] mmap cache can't open D:\Home\cybersof\cybersoftwebdesigns.com\bala\newfavors\checkout1.php (pid 292 th 2708)

How to i solve this session problem

Server configdetails
http://cybersoftwebdesigns.com/bala/info.php

Thanks
Bala

    Why do u think that this error has anything to do with sessions?

      Thanks for ur attention,then Why that error is coming, session value also not displayed if particular page
      Bala

        If the apache error log is showing something similar to this:

        [Wed Nov 15 02:38:13 2006] [warn-phpd] mmap cache can't open
        D:\Home\cybersof\cybersoftwebdesigns.com\bala\newfavors\checkout1.php (pid 292 th 2708)

        Apache is hitting it's limit on the number of files it can open. To view the current amount of files allowed to be opened, use this command:

        ulimit -n

        Edit the apache startup script, whether it be /etc/init.d/httpd, or /usr/local/apache/bin/apachectl, and add this before anything else:

        # Raise The File Limit 
        ulimit -n 16384 

        Specifying a value after the '-n' flag will change the limit to that value. When setting the value, remember that it must be in increments of 1024. Now restart apache using one of the above referenced startup scripts and this should alleviate the problem.

          Write a Reply...