Just for giggles, try:
Code:
var vbsessionurlsecuritytoken = "securitytoken";
uploader.upload(fileID, "http://tforum.mydomain.com/uploadzip.php",
"POST",
{"do":"doupload",
"albumid":jababumid,
"jabuniquezip":jabuniquezip,
vbsessionurlsecuritytoken.valueOf():SECURITYTOKEN},
"upload");
The
.valueOf() method will return the primitive value of the string, which might be substitutable for the literal value.
Quote:
Originally Posted by Dismounted
The security token is not stored anywhere - it is dynamically generated from other variables (e.g. time, user ID, etc.). (It is only needed on POST forms/requests.)
The session hash (SESSIONURL) is needed when the user does not have cookies enabled - it is empty otherwise.
|
Really? That's good to know, but then why does every submission form append the session to the post in a hidden type?