Re: [Lazarus] fpweb fastcgi debug

2010-12-24 Thread ik
On Fri, Dec 24, 2010 at 01:46, waldo kitty wkitt...@windstream.net wrote: On 12/23/2010 05:34, michael.vancann...@wisa.be wrote: If you can use mod_fastcgi, then this will do it: - Run the fastcgi application, and explicitly set the port. Application.Port:=2015 - In Apache, set

Re: [Lazarus] fpweb fastcgi debug

2010-12-24 Thread Michael Van Canneyt
On Fri, 24 Dec 2010, ik wrote: On Fri, Dec 24, 2010 at 01:46, waldo kitty wkitt...@windstream.net wrote: On 12/23/2010 05:34, michael.vancann...@wisa.be wrote: If you can use mod_fastcgi, then this will do it: - Run the fastcgi application, and explicitly set

Re: [Lazarus] fpweb fastcgi debug

2010-12-24 Thread waldo kitty
On 12/24/2010 04:41, ik wrote: On Fri, Dec 24, 2010 at 01:46, waldo kitty wkitt...@windstream.net mailto:wkitt...@windstream.net wrote: On 12/23/2010 05:34, michael.vancann...@wisa.be mailto:michael.vancann...@wisa.be wrote: If you can use mod_fastcgi, then this will do it:

[Lazarus] fpweb fastcgi debug

2010-12-23 Thread ik
Hello, Is there a way for me to use the fastcgi application I'm writing as a standalone for easier debugging (instead of restarting Apache every time) ? Thanks, Ido LINESIP - Opening the source for communication http://www.linesip.com http://www.linesip.co.il --

Re: [Lazarus] fpweb fastcgi debug

2010-12-23 Thread ik
Thanks, now i can test the templeting issue finally :) Ido LINESIP - Opening the source for communication http://www.linesip.com http://www.linesip.co.il On Thu, Dec 23, 2010 at 12:34, michael.vancann...@wisa.be wrote: On Thu, 23 Dec 2010, ik wrote: Hello, Is there a way for me to

Re: [Lazarus] fpweb fastcgi debug

2010-12-23 Thread waldo kitty
On 12/23/2010 05:34, michael.vancann...@wisa.be wrote: If you can use mod_fastcgi, then this will do it: - Run the fastcgi application, and explicitly set the port. Application.Port:=2015 - In Apache, set FastCgiExternalServer /path/to/server/url -host 127.0.0.1:201 -idle-timeout 30 -flush is