> Hi Graeme,
>
> Thanks for the suggestion. Unluckily for me, it doesn't seem to be
> working though ...
>
> I've tried it a number of different ways. I guess if I put the code
> after an exception, then the code won't be called.
> So I ran an error in the python script and then I called the
> sys
On Apr 19, 1:52 am, dbee <[EMAIL PROTECTED]> wrote:
> On Apr 19, 12:31 am, Graham Dumpleton <[EMAIL PROTECTED]>
> wrote:
>
>
>
> > After calling whatever it is that is writing to standard output/error,
> > do:
>
> > import sys
> > sys.stdout.flush()
> > sys.stderr.flush()
>
> > This should ca
On Apr 19, 12:31 am, Graham Dumpleton <[EMAIL PROTECTED]>
wrote:
> After calling whatever it is that is writing to standard output/error,
> do:
>
> import sys
> sys.stdout.flush()
> sys.stderr.flush()
>
> This should cause any buffered data to be immediately flushed to the
> main Apache error
After calling whatever it is that is writing to standard output/error,
do:
import sys
sys.stdout.flush()
sys.stderr.flush()
This should cause any buffered data to be immediately flushed to the
main Apache error log, ie., don't look in any virtual host logs, check
the main one.
Graham
On A
Right. I've got a really, really annoying/difficult/time consuming
problem with my development environment. I'm using django to build a
web app with paypal integration. My server is hosted remotely, and it
is receiving IPN (payment notifications) POST requests from Paypal.
I've checked on google an