Re: Custom upload handlers: Potential multi threading, session, etc issues. Take a look!

2008-10-22 Thread john
On Oct 20, 2008, at 8:11 AM, truebosko wrote: > What is happening: The custom upload handler works, data is being > sent, the session is being set WITHIN the handler but when I call the > function from Javascript to fetch the progress (or even from a simple > manual GET) it does not return anythi

Re: Custom upload handlers: Potential multi threading, session, etc issues. Take a look!

2008-10-20 Thread truebosko
As I said in my post, I put it up on a non-dev server (lighttpd/fcgi setup with mediatemple) because I know dev server can't handle it. On Oct 20, 11:56 am, Ivan Sagalaev <[EMAIL PROTECTED]> wrote: > truebosko wrote: > > What I found though, is that the view that is being called from JS > > will

Re: Custom upload handlers: Potential multi threading, session, etc issues. Take a look!

2008-10-20 Thread Ivan Sagalaev
truebosko wrote: > What I found though, is that the view that is being called from JS > will finally have access to the session variable after the upload is > complete Looks like you're doing it with development server. It's single-process and can't handle and upload and another view simultaneou

Custom upload handlers: Potential multi threading, session, etc issues. Take a look!

2008-10-20 Thread truebosko
Hi there, I wrote a previous post but I have discovered a bit more since. Here's my situation: What I'm trying to do: Write a custom upload handler that allows me to intercept it with Javascript calls and return a simple progress upload bar to the user. What is happening: The custom upload hand