Posted by HWForums [s010642031a3b2f55.vf.shawcable.net at 70.68.18.70] on October 06, 2004 at 13:16:18:
In Reply to: after months ..my forum is not working now posted by Micky on October 05, 2004 at 08:19:09:
The scr1pt doesn't know where library.pl is.
Change this line: require "library.pl";
to this: require "/path/to/your/cgi-bin/library.pl";
If that doesn't work, add this line before the library.pl call:
use lib "/path/to/your/cgi-bin";
Of course, you must change "/path/to/your/cgi-bin" to the actual path.