I have several Perl scripts that I am publishing soon, and I want to make sure that they work in mod fcgid mode so that the server loads as little as possible. I used to just run scripts that tested FastCGI (i.e. while (my $ q = new CGI :: Fast) {$ count ++; echo $ count;}) or used larger Perl packages (like MovableType), which claim to run as FCGI until you have correctly configured Apache and FastCGI / mod fcgid and change the file suffix to ".fcgi".
So, here is my question: do I need to do something other than change the suffix of my script file, and if so, then what?
Jim
source share