Hello,
I have some big problems with sessions in my web-application. It a system, where people can order some thinks (it is not eshop - because it is a system for a company employees). They are choosing some products. Because the page is often reloading a reading new data about products, many variables are stored in session (user id, products in order... etc)...
There is no problem, when is my application used by one user only... But when is here cca 50 users at the same time the value of the session is sometimes lost. (i was choosing echo($_SESSION['variable'); and there was no value )Sometimes in three minutes of using this application, sometimes earlier...
My application is runnig for a year... in begin this problem was only seldom, but it grows with time (maybe with count of users) ...
- The system have about 5000 users and usually about 50-100 users work a the same time
- Every script begins <?php @session_start(); ......
- typical use of session in the application: $SESSION['final_sklad'.$abs_cpolozky]="praha"; ..... echo($SESSION['final_sklad'.$abs_cpolozky]);
- In php.ini are no definitions about sessions, so all options should by default.
- Apache server is restared every night
- It runs on Open VMS system, PHP version 4.1.1
I really dont know what to do because the application is almost unusable... your comment will be very helpful because it is very important run the application as soon as possible