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:
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: