Hello, By the looks of it, mod_fcgi has a limit as to how much time it could wait for response from a script. Since you're doing a heavy operation that takes a while, i guess it times out.
The point is - if your executed action takes so much time, you're clearly having a wrong conception on when and how you should be executing it. It could be better off as an external process (that still uses django in its code) that is triggered by certain actions in your web-application, or scheduled by cron. In any case - it is not the job of your django view to handle bulk transfers, it was not meant to be doing that, even if the mod_fcgi didn't have the timeout. On 30/03/07, Anderson Santos Silva <[EMAIL PROTECTED]> wrote: > > Hello, I have a process that sends an e-mail to more then 5000 addresses > (grouping it in 50 each time) and after a while it gives me the error: > > ------- > Internal Server Error > > The server encountered an internal error or misconfiguration and was > unable to complete your request. > > Please contact the server administrator, [EMAIL PROTECTED] and > inform them of the time the error occurred, and anything you might have > done that may have caused the error. > > More information about this error may be available in the server error log. > > Additionally, a 404 Not Found error was encountered while trying to use > an ErrorDocument to handle the request. > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---