My hosting provider requires me to create a Perl script that will redirect the users to a .php file on my server. This is a very trivial process. However, it has been a nuisance.
This is what the Perl script looks like :
#!/usr/bin/perl
print "Location: http://www. site-.com/Pas/expiredpasswords.php\n\n";
print "Content-type: text/html\n
It should launched the webpage. However, I continue to get this meaningless, "Internal Server Error" message. The Php file works fine.
The .pl file is in my cgi-local directory calling the expiredpasswords.php file.
What is the deal with this? Any suggestions.
VT