in reply to require fails in CGI

Something bad is happening when you do:
require 'vcol-utils.pl';

If you can't check the server's error log, why not add some code to find out what went wrong?:

eval { require 'vcol-utils.pl' }; print "Loading of utils: $@\n";

I bet the error message will tell you what is wrong... ;-)

Liz