Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. optionalreaction

    What is wrong with my script

    I also had to upload in ASCII format ('Premature end of script headers' error in log) Keith
  2. optionalreaction

    What is wrong with my script

    That's it! I got it going. It looks like this... #!/usr/bin/perl ######################################## ## INITIALIZE CGI ###################### ######################################## use CGI; use CGI::Carp qw(fatalsToBrowser); $cgi = new CGI; ######################################## ##...
  3. optionalreaction

    What is wrong with my script

    When I call this ... #!/usr/bin/perl use lib qw(.); use CGI; use CGI::Carp qw(fatalsToBrowser); $cgi = new CGI; print header(); print "Hello World"; exit; ... I get nothing. Keith
  4. optionalreaction

    What is wrong with my script

    I renamed the .htm to .shtml and now I get [an error occured when processing this directive] when using #include virtual, nothing with #exec cgi. Is there any way I can call a CGI script from a webpage without using .shtml as the extention (all my files use .htm ATM)? And, what does [an error...
  5. optionalreaction

    What is wrong with my script

    I also tried <!--#include virtual but it made no difference. R
  6. optionalreaction

    What is wrong with my script

    I think the problem is with SSIs. I cannot get any kind of out put at all; I don't think the script is being called by the <--#exec cgi command. Is there anything I could try? Keith
  7. optionalreaction

    What is wrong with my script

    Can anyone tell me what is wrong with this???... #!/usr/bin/perl ######################################## ## INITIALIZE CGI ###################### ######################################## use lib qw(.); use CGI; use CGI::Carp qw(fatalsToBrowser); $cgi = new CGI...

Part and Inventory Search

Back
Top