For UNIX servers. You may need to
set the location of your Perl in the scripts. The default location
set for Perl in the script is:
#!/usr/local/bin/perl
If this path is correct for your
server, you can skip to the next section.
The Perl location is the first
line of the following files:
RatingsHandler.cgi
admin_script.cgi
admin_user.cgi
If your server allows you to run
Perl scripts with the cgi extension or you have other Perl
scripts on your server that use the extension cgi, you can
skip this step. Most server will allow cgi extensions.
If your server only allows pl
extensions to be ran, at this point you must rename all the
cgi files to pl files.
Example:
admin_script.pl
admin_user.pl
RatingsHandler.pl
subs_global.pl
subs_main.pl
Once you have renamed each of these
files, you must edit the following files and indicate in them that
you are using the pl extension:
RatingsHandler.pl
admin_script.pl
admin_user.pl
To edit them, open each files in a
text editor. Find the line that says:
$cgiext = 'cgi';
This line must be changed so
that it reads:
$cgiext = 'pl';
Once you have edited each file and
saved them, you are ready to go using the pl extension.