At using ActivePerl5.8.7 there isn't the problem with file opening, but at using mod_perl2.0.2 it is:
print "Content-type: text/html\n\n"; $path = "textdata.txt"; open FH, $path; while(<FH>) {print} close FH Why and how to solve the problem? Thanx.
At using ActivePerl5.8.7 there isn't the problem with file opening, but at using mod_perl2.0.2 it is:
print "Content-type: text/html\n\n"; $path = "textdata.txt"; open FH, $path; while(<FH>) {print} close FH Why and how to solve the problem? Thanx.