Hello guys, I hope someone can help me out Smiling

I have a site on a shared server and because the garbage collect was too short I had to change my session path to increase the session time.
But after this the Thumbnails do not show anymore :S

I have to specify the session path on the upload.php file, so it doesnt give me the error message.

Here is parth of the upload.php:
------------------------------------------------------------------------------------------
// Code for Session Cookie workaround
if (isset($_POST["PHPSESSID"])) {
session_id($_POST["PHPSESSID"]);
} else if (isset($_GET["PHPSESSID"])) {
session_id($_GET["PHPSESSID"]);
}

session_save_path('../../../../cgi-bin/tmp/sessions/');
session_start();
// Check post_max_size (http://us3.php.net/manual/en/features.file-upload.php#73762)....
-------------------------------------------------------------------------------------------

And the message error:

-------------------------------------------------------------------------------------------
Warning: session_start() [function.session-start]: open(tmp/sessions/sess_956be156943ab602d5a7285a7d063a8a, O_RDWR) failed: No such file or directory (2) in /data/18/1/6/94/1821420/user/1974605/htdocs/rgreenroom/upload/simple/upload_both.php on line 49
--------------------------------------------------------------------------------------------

Apparentelly it cannot open the session path... But I dont undestand why it is searching for the session folder inside it, when it is specified out site the folder :S