My customer's host was bought out and the site was transferred to a new server. Since then, most of the time I get the following server error when session_start() is on the top of certain pages (this does not happen on all pages, and it does not happen every time on the affected pages):
Warning: session_start() [function.session-start]: open(/tmp/php-ses/sess_cf2faa9fcef60fba09ef68fd1c572683, O_RDWR) failed: No such file or directory (2) in /home/vg002web02/20/51/1015120/web/my_directory/my_page.php on line 2
The new server uses PHP 4.4.4-8+etch6.
I don't know what was installed on the old server.
My test server use PHP 5.2.5 and does not throw errors.
I noticed that the hosting company is using these settings:
session.use_only_cookies is OFF
session.use_trans_sid is ON
register_globals is ON
My limited understanding is that these are neither secure nor standard settings. Is that correct? Could those settings be a contributing cause to the above error or is something else going on? Any suggestions for the hosting company? (so far they don't seem to know what they are doing).
Warning: session_start() [function.session-start]: open(/tmp/php-ses/sess_cf2faa9fcef60fba09ef68fd1c572683, O_RDWR) failed: No such file or directory (2) in /home/vg002web02/20/51/1015120/web/my_directory/my_page.php on line 2
The new server uses PHP 4.4.4-8+etch6.
I don't know what was installed on the old server.
My test server use PHP 5.2.5 and does not throw errors.
I noticed that the hosting company is using these settings:
session.use_only_cookies is OFF
session.use_trans_sid is ON
register_globals is ON
My limited understanding is that these are neither secure nor standard settings. Is that correct? Could those settings be a contributing cause to the above error or is something else going on? Any suggestions for the hosting company? (so far they don't seem to know what they are doing).