I just need the info how i can get the session ID from the session
object.
And then on the other page from the get-data set the session-id back
to the session, so its seams like that person is logged in.

Like this in poseido code:

@auth.requires_login()
def upload_image()
   sessionid = session.id
   return dict(sessionid=sessionid)
   # Then the files are uploaded to "uploader_handler?sessionID=%s"
sessionid


def uploader_handler():
   if not hasattr(request.vars, 'sessionID'):
     raise HTTP(404, "No such page")
   sesson.setID(request.vars.sessionID)
   if not auth.is_logged_in():
      raise HTTP(404, "No such page")
   # Save files


/R

On Jun 20, 4:29 pm, Trollkarlen <robbelibob...@gmail.com> wrote:
> Can anyone describe how to set and get the session id and set it as an
> get.data ?
>
> /R
>
> On Jun 19, 3:50 pm, "mr.freeze" <nat...@freezable.com> wrote:
>
> > It seems to be a bug in flash's 
> > FileReference.upload:http://www.visible-form.com/blog/flash-file-upload-and-session-cookie...
>
> > On Jun 19, 8:11 am, mdipierro <mdipie...@cs.depaul.edu> wrote:
>
> > > Yes but I am sure there is a way to pass the cookie in flash.
>
> > > On Jun 19, 7:58 am, "mr.freeze" <nat...@freezable.com> wrote:
>
> > > > Would it be possible to pass a session id with the upload url and
> > > > manually connect to the session somehow?
>
> > > > On Jun 19, 7:24 am, mdipierro <mdipie...@cs.depaul.edu> wrote:
>
> > > > > There must be a way to pass the cookie. If you find a solution let us
> > > > > know.
>
> > > > > On Jun 19, 1:22 am, Trollkarlen <robbelibob...@gmail.com> wrote:
>
> > > > > > I think that can be hard because the user is in this case already
> > > > > > logged in.
> > > > > > The upload page requiers login, then it sends the files to a new 
> > > > > > page.
>
> > > > > > So in this stage i dont have the login credentials (password).
>
> > > > > > /R
>
> > > > > > On Jun 19, 5:28 am, mdipierro <mdipie...@cs.depaul.edu> wrote:
>
> > > > > > > you can try using basic authentication.
>
> > > > > > > On Jun 18, 2:36 pm, Robert Marklund <robbelibob...@gmail.com> 
> > > > > > > wrote:
>
> > > > > > > > Hi,
> > > > > > > > I have a flash uploader that don't send the session cookie to 
> > > > > > > > the upload
> > > > > > > > function.
> > > > > > > > And there for cant do auth.
>
> > > > > > > > Is there any way i solve this ?
> > > > > > > > Perhaps with post or get data to send the session id ?
>
> > > > > > > > /R
>
> > > > > > > > --
> > > > > > > > ______________________________________________
> > > > > > > > Robert Marklund
>
> > > > > > > > Phone: +46 (0)46 19 36 82
> > > > > > > > Mobile: +46 (0)70 213 22 76
> > > > > > > > E-mail: robbelibob...@gmail.com
> > > > > > > > ______________________________________________
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"web2py Web Framework" group.
To post to this group, send email to web2py@googlegroups.com
To unsubscribe from this group, send email to 
web2py+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to