Pilot has asked for the wisdom of the Perl Monks concerning the following question:
I have tried opening and closing the file in FrontPage, that doesn't work. I have tried refreshing the page all over the place. That doesn't work either. If anyone has an idea of how to get this include to come up in a browser, please let me know. I am new to this site in general and I hope someone has an idea.############ WRITE INDEX FILE print "writing $web_target/index.htm\n"; open(OUTFILE, "> $outdir$web_target/index.htm"); start_narrow_page(\*OUTFILE, "$field2{title}", $field5{stylesheet2}); ########THIS IS THE INCLUDE HTML CODE##################; print OUTFILE "<p><span class=\"title\"></span><!--webbot bot=\"Includ +e\" U-Include=\"index_content.htm\" -->"; ########THIS IS THE INCLUDE HTML CODE##################; end_narrow_page(\*OUTFILE, "######\@###.lmco.com"); close(OUTFILE); print LOGFILE "$web_target/index.htm\n"; ############ WRITE INDEX_CONTENT FILE print "writing $web_target/index_content.htm\n"; open(OUTFILE, "> $outdir$web_target/index_content.htm"); # start_narrow_page(\*OUTFILE, "$field2{title}", $field5{stylesheet2 +}); #blah blah blah; #blah blah blah; # end_narrow_page(\*OUTFILE, "########@####.lmco.com"); close(OUTFILE); print LOGFILE "$web_target/index_content.htm\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Puzzling Include Problem
by FamousLongAgo (Friar) on Oct 28, 2002 at 14:32 UTC | |
|
Re: Puzzling Include Problem
by hiseldl (Priest) on Oct 28, 2002 at 14:37 UTC |