Cgi Server

How can you tell if your server allows cgi?
I run my webpage from my own server I own. I am trying to run a CGI script on it but I get this error: Method Not Allowed The requested method POST is not allowed for the URL /old/cgi-bin/vote/showresults.cgi. So, in trying to fix it, I wonder if my server even allows cgi at all. Any way to check? Or any other ideas? The server is Apache, if that makes any difference..

http://httpd.apache.org/docs/2.0/mod/mod_cgi.html . Actually, it's more practical to use http://www.fastcgi.com/ or perhaps http://en.wikipedia.org/wiki/SCGI . So your server doesn't allow CGI unless it has been enabled. Check the enabled modules list in httpd.conf to see if a CGI module is enabled. Either mod_cgi, or mod_fastcgi, or mod_scgi. One more thing. CGI is just an interface between a program and the server. Your computer must still be able to run that program. For a compiled program like C++, this is not an issue, as your OS and processor deal with it. But for something like Perl, or Python, or Ruby, you need the appropriate interpreter. So sticking a bunch of Perl CGIs with mod_cgi is useless unless you also have the Perl interpreter.

WHAT IS THE MEANING OF "The online testing may be used only from the CGI server". Ref?
I am scheduled to take an online test, however, I keep on getting this error message "The online testing may be used only from the CGI server. Ref" . Is this error something that I can fix and if yes how do I fix it

Wow, I thought this would be an easy one given that Gateway is pretty easy to work through. I found you some reference material but not much else. Maybe you'll have the time to sift through the site below and others (type "CGI server" into your search engine). Sorry, best I could do is get you started.

How can I run a CGI script and use a server for a form for free?
Ok, so i just started my own little website... www.rybomedia.com...i know, it's not much but i've had school and haven't had a lot of time to work on it...my idea is to have people submit their artwork to the site to be displayed...if you click on the "Submit Art" link, you'll see that i already have the form set up...however, it uses the mailto feature, which i don't want, plus it won't mail files...i downloaded a PERL cgi script, but am confused about what to do next...ANY tips would be great...thanks...

You can run your own server on an old computer. Thats what I do. It sounds like you could have it just run the script and nothing else. Then link to it from the webpage you are trying to do. Or you can look for a webhost that will allow you to upload a script. Those are rare because they have to check each script to make sure you didnt put anything bad in it. Or you can look for a webhost that already has a script available to its users which does the same thing. Thats probably most likely.

How to get my server to recognize perl as CGI!?
Hello, I just want to know first of all how do I know if my server is Apache or not, and how can I get it to recognize Perl as CGI script. Thanks.

If you are using Apache on a Unixish system, you will need the following things for a CGI program to be run: * ExecCGI set (e.g., "Options ExecCGI" or "Options +ExecCGI" in a .htaccess file) * Appropriate content handlers (e.g., "SetHandler cgi-script" or "AddHandler cgi-script .cgi") * Appropriate read and execute permissions (0755 is safe) * A proper shebang (e.g., "#!/usr/bin/perl") for text executables - or a binary executable See the Apache CGI how-to guide at http://httpd.apache.org/docs/2.0/howto/cgi.html

How do I batch trim mp3s on the web (server-side using php, CGI, or PERL)?
I know there is image editing scripts and modules like Image Magick and GD library for editing images, is there any for mp3s or sound files? I want mp3s that are uploaded to be trimmed automatically to one minute. It can be done client side, or server side. (but i prefer server-side so files can be uploaded via ftp).

I don't think there exists such a server-side solution. What you might do is try to find a unix program, and write a shell script that calls the program and passes in some arguments that perform the trimming you need. I don't personally know of a command-line mp3-trimmer, but I'm sure some bearded unix ninja has written one somewhere. Google. This all, of course, depends on you having app-execution access on your webserver, and assumes that it is running unix!

What file types go into the cgi-bin folder on a web-server?
Does the server check the file extension to determine how to execute the file e.g. .cgi, .php, etc or is there some sort of declaration in the file?

Anything and everything can go into the cgi-bin folder. Depends on the host.They may only check this folder for executable .cgi , they may not. Some hosts will insist your .cgi file go into that folder, but anything else can go there as well. Good hosts impose no restriction of location of .cgi files. .cgi files may want to reference files on its server and its often convenient to have those files in the same directory.

i need a site that give me about 100MB webspace asp2.0 cgi sql server 2005 for free?
i need a site that give me about 100MB webspace asp2.0 cgi sql server 2005 for free plz send it link to me: goldenkalagh3000@gmail.com

You can find a detailed review on my website of the websites that support ASP and SQL Server. Lunarpages on 15 February launched it's new Microsoft Web hosting plan which i consider very convenient.

How do i request a cgi sever?
How do I request a cgi server?I went to my domain control panel and i cant find it.And I bought my domain with yahoo so someone please help me.

get a better server. Yahoo's hosting is terrible. I suggest dreamhost or site5.

how do i install a cgi proxy in my own server?
im using apache 2.2 and i downloaded the cgi script from: http://www.jmarshall.com/tools/cgiproxy/ but i dont know where to put it dont tell me to install phproxy cuz i already did but i also want to install a cgi proxy.

Unpack the distribution. Set any desired options in nph-proxy.cgi by editing the file. See all the options below; the defaults are probably fine if you don't feel like messing with it. If you have special server or network issues, like an SSL server on a non-standard port or an HTTP or SSL proxy that you must use, then see the options category "OPTIONS RELATED TO YOUR SERVER/NETWORK ENVIRONMENT". If you don't know Perl, this can get you started. Install the script like any other CGI script (set permissions and path to the Perl interpreter). Be sure it's installed as an NPH script. In Apache and related servers, do this by starting the filename with "nph-". If you're unfamiliar with installing CGI scripts, this FAQ entry may help.

How do you make cgi script for a php server?


Most hosting services will let you run CGI or PHP without a problem. If you are sure that your server will only run PHP, then you'll need to get a script that is written in PHP. To the best of my knowledge the is no way to port it, or 'make it work' if the server doesn't support CGI. I usually just search google or check www.hotscripts.com when I'm looking for pre-written PHP.