How can I convert a string number to a number in Perl?

Make Apache recognize Perl!

  • How can I get my web server to interpret perl I am playing around with perl for the first time in my life. I am using a fedora core 8 machine. It seems to ave all the essentials installed already (apache, php, mySQL, and perl). However, I make a file called perl.pl and it does not seem to translate correctly. Here is what is in the file: #!/usr/bin/perl print "Content-type: text/html \n\n"; #HTTP HEADER # DEFINE SOME SCALAR VARIABLES $number = "5"; $exponent = "2 ** 8"; $string = "Hello, PERL!"; $stringpart_1 = "Hello, "; $stringpart_2 = "PERL!"; $linebreak = " "; #HTML LINEBREAK TAG # PRINT THEM TO THE BROWSER print $number; print $linebreak; print $exponent; print $linebreak; print $string.$linebreak; print $stringpart_1.$stringpart_2; When you go the the browser, you see the following http://[ip address]/perl/perl.pl As you can see, you prints out exactly what I type. Am I doing anything wrong? Am I suppose to enable a perl service or change a configuration file?

  • Answer:

    You need to tell Apache what to do with the perl scripts. See the article http://www.thesitewizard.com/archive/addcgitoapache.shtml for a guide.

kaozity at Ask.Metafilter.Com Visit the source

Was this solution helpful to you?

Other answers

When i follow those instructions, the browser reports back telling me there is an internal Error Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error. More information about this error may be available in the server error log. Apache/2.2.8 (Fedora) Server at [ip address] Port 80

kaozity

The file needs to be executable. Make sure the permissions on perl.pl are set to 755.

staggernation

Also read the Apache log files. While commonly cryptic, you can usually use them as a reference for google (ie, "apache perl "). tail -f -n 0 /var/log/* /var/log/*/* is a fun starting spot.

SirStan

Hello and welcome to web server administration! There's a first time for everything, so here we go: I see you got this message: "More information about this error may be available in the server error log." Now, as a rule you'll find the server isn't going to go out of its way to fabricate lies and tell them to you. Sure, it'll happen from time to time, but generally speaking try to take it at its word first before you go flailing around. In this case it says you probably want to look in the error log. See how it says you might get some additional information from there? Try reading the additional information. Getting used to this process (known overall as "troubleshooting") will keep you from being a helpless system administrator as you go about your duties. Actually reading error messages and paying attention to what they say is a very good first step.

majick

You need to tell Apache how to handle CGI scripts. Rename to perl.cgi, make sure it's executable, and Google for something like http://www.google.com/search?hl=en&q=apache+enable+cgi&btnG=Google+Search. The fact that it's a Perl script is immaterial; that will be taken care of by the shebang line and the operating system.

qxntpqbbbqxl

Yeah, the http://httpd.apache.org/docs/1.3/howto/cgi.html tell you how to get that working. You can also google around on "CGI apache"

a robot made out of meat

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.