S
sakshale@
Guest
Could someone point me to some documentation, other than the FAQs, on how to use perl?
My problem is simple. I want to run a perl script as my root document, to envoke the real script in /cgi-bin. I have the following script in [domain]/httpdocs/wiki.pl
#!/usr/bin/perl
package OddMuse;
$DataDir = '/wiki';
do 'current.pl' or die;
How do I specify the path to [domain]/cgi-bin/current.pl in the wrapper script?
My problem is simple. I want to run a perl script as my root document, to envoke the real script in /cgi-bin. I have the following script in [domain]/httpdocs/wiki.pl
#!/usr/bin/perl
package OddMuse;
$DataDir = '/wiki';
do 'current.pl' or die;
How do I specify the path to [domain]/cgi-bin/current.pl in the wrapper script?