I\'m using uploadify, and i can\'t set sessions in my php files, my script looks like this:
$(\"#uploadify\").uploadify({
\'uploader\' : \'
I found a solution which is far easier to implement, especially if you already have a session-oriented PHP backend for login, etc.:
just write the following code in the jQuery statement:
'script' : '/upload.php?= session_name(); ?>== session_id(); ?>',
which will magically attach your current session name and your session id.