Hello,
I'm trying to migrate a Perl site from a linux server to IIS. Everytime I try to require another perl script I get an error that the file cannot be found.
Even when the file is in the same directory - the same error still comes up:
What could I be missing here?
I'm trying to migrate a Perl site from a linux server to IIS. Everytime I try to require another perl script I get an error that the file cannot be found.
Even when the file is in the same directory - the same error still comes up:
Code:
#!/usr/bin/perl
use CGI::Carp "fatalsToBrowser";
use CGI ":all"; use MD5; use strict;
use CGI qw(:standard);
print "Content-type:text/html\n\n";
require "common_functions.pl";
What could I be missing here?