Mohit Jain
Mohit Jain

Reputation: 43939

session is not working in uploadify plugin of jquery

session is not working in uploadify plugin...

Edit...

@ marcgg When i am trying to upload images using uploadify plugin.. My session is nt working at back end.. Boss what else i can say.. should i post the default code i got from uploadify plugin...

Upvotes: 1

Views: 779

Answers (1)

Mohit Jain
Mohit Jain

Reputation: 43939

Flash doesn't forward cookies from the browser, so $_SESSION will not work correctly. (The code is most likely failing when you require_once the session file.)

To summarize the concept:

  1. Pass the session_id as a POST variable with Uploadify using scriptData
  2. Manually call session_id($_POST['session_id']) prior to calling session_start();

this will also work..

         'scriptData': {'ts' : <?= time() ?>}

Upvotes: 3

Related Questions