Re: [fpc-pascal] Apache processing cgi requests

2006-07-26 Thread Graeme Geldenhuys
On 7/26/06, Michael Van Canneyt <[EMAIL PROTECTED]> wrote: They are processed at the same time. Apache works threaded, so multiple versions of your CGI script could be running at the same time. You could simply have used the GetTempFileName function from SysUtils to avoid concurrency problems. Al

Re: [fpc-pascal] Apache processing cgi requests

2006-07-26 Thread Michael Van Canneyt
On Wed, 26 Jul 2006, Graeme Geldenhuys wrote: > For all those Apache and CGI gurus... > > [This might be off-topic] > > I have written a CGI app for my client that decrypts a Macromedia > Flash files (*.swf) to a set path and name ("/flash/movie.swf"), I > then generate a html file to view tha

[fpc-pascal] Apache processing cgi requests

2006-07-26 Thread Graeme Geldenhuys
For all those Apache and CGI gurus... [This might be off-topic] I have written a CGI app for my client that decrypts a Macromedia Flash files (*.swf) to a set path and name ("/flash/movie.swf"), I then generate a html file to view that file, and the client (web browser) gets served. The average