PDA

View Full Version : Uploadify Session


Kozmek
12-10-2012, 08:16 PM
Hi guys,

I have a strange session problem that I have been scratching my head over. This particular problem only appears to be on Internet Explorer and only happens when you use the session table and not cookies.

What I have is an external page VB page that has an upload function.

I use uploadify (http://www.uploadify.com) which is a flash based file uploader. When I upload a file and return the results, for some reason a new session gets created for the user and the previous session isn't used, resulting in the user being logged off once a page is refreshed or when you want to submit the whole form.

Now what uploadify are saying is

In Uploadify, the Flash file is what communicates with the backend script. Because of a bug in Flash, the session cookie is not picked up by the Flash file. To circumvent this, you will need to pass the session data via the formData option. To do this in PHP, use the following code when initializing Uploadify on the front-end page:

http://www.uploadify.com/documentation/uploadify/using-sessions-with-uploadify/

They are suggesting in using

$('#file_upload).uploadify({
// Your normal options here
formData : { '<?php echo session_name();?>' : '<?php echo session_id();?>' }
});

But as far I know, this method of session isn't used in vbulletin?:erm:

So I have tried adding


$s = $vbulletin->session->vars['dbsessionhash'];


then used this in the javascript portion

formData : { 's' : '$sessionhash' }

but no dice. Anyone has any other suggestions? Anything that I have come across regarding uploadify was to do with session_start() which is no use?

Many thanks and hope someone can help me out :up:

Simon Lloyd
12-11-2012, 01:39 AM
Unfortunately you'll probebly not get your answer here as it's not a plugin developed here or to do with any core vbulletin files, however, they are showing you that they would use echo to enter the sessions has so i assume you'd want something like
$idhash = md5($_SERVER['HTTP_USER_AGENT'] . $vbuser['userid']);
$sessionhash = md5($now . request_uri() . $idhash . $_SERVER['REMOTE_ADDR'] );
$('#file_upload).uploadify({
// Your normal options here
formData : { '<?php echo $sessionhash;?>' : '<?php echo $idhash;?>' }
});

Kozmek
12-11-2012, 10:27 AM
Hi Simon,

Thanks for the reply. I understand that this might not be anything to do with Vbulletin although I am using the backend completely.

I will give this a go, I am wondering, if I do manage to pickup the current ID hash and Session Hash, how do I tell vbulletin to use this in a session, rather than creating a new session as it is doing right now?

Even if it is not using uploadify. Would the sessionhash as a $_POST['$sessionhash'] variable be picked up by vbulletin automatically and check if it exists or is there a special variable I can use?

During the upload function I can pull all the details from session class, is there another class I can use to re-instate the session at all?

Many thanks