ECCE Not Running Properly


Click here for full thread
Gets Around
Gary,
I've posted a possible fix in the 'problems with httpd' thread. Basically it boils down to replacing
require "getopts.pl";

with
use Getopt::Std

and making sure that all instances of getops are lower case.

I just noticed that it's basically the same solution that this post suggests:
[1]
+-require 'getopts.pl';
++use Getopt::Std;

/Andy