Host is Linux. I have multiple files in the same directory. All of the *.pl files contain the following at the beginning differing only in comments:
#!/usr/bin/perl -w
BEGIN { chdir('/home/httpd/vhosts/mysite.com/httpdocs/newsbot'); unshift(@INC, "/home/httpd/vhosts/mysite.com/httpdocs/newsbot"); }
use Form;
use File;
use Mysite;
#Read in All Form Variables
&ReadInForm;
The file Form.pm contains the ReadInForm subroutine and nothing else.
sub ReadInForm {
}
1;
The weird thing is that the output of the above is completely inconsistent. Sometimes it executes fine, but shows the "Internal Server Error" message at the end of the script and puts the following in the error_log file:
Argument "" isn't numeric in subroutine entry at /usr/lib64/perl5/vendor_perl/5.8.8/x86_64-linux-thread-multi/ModPerl/RegistryCooker.pm line 171.\n, referer: http://www.mysite.com/newsbot/groupkeywords.pl
Other times, it doesn't execute, and outputs the following to the browser:
Undefined subroutine &ModPerl::ROOT::ModPerl::Registry::home_httpd_vhosts_mysite_2ecom_httpdocs_newsbot_groupkeywords_2epl::ReadInForm called at /home/httpd/vhosts/mysite.com/httpdocs/newsbot/groupkeywords.pl line 11.
Other times it works correctly with no error.
The strange thing is that it is inconsistent. I can get one output from a file, refresh a few minutes later and then get the other one. I've even got a few "Internal Server Error" messages and a 500 response header as well with no actual content. Commenting out the line &ReadInForm; solves the problem every time, so I have narrowed it down to that, however it doesn't matter what I put in Form.pm. I can even put an empty subroutine (as I have above) and it still doesn't solve the problem.
I am not even sure how to debug this. How is it even possible for it to be inconsistent? Does the perl compiler do some sort of behind the scenes caching?