1
vote
0answers
8 views

Does Apache really “fork” in mod_php/python way for request handling?

I am a dummy in web apps. I have a doubt regaring the functioning of apache web server. My question is mainly centered on "how apache handles each incoming request" Q: When apache is running in the ...
1
vote
2answers
26 views

HTML form action to execute cgi is not working

I have been trying to run a simple perl-cgi script on windows XP. This is a simple HTML form with an Submit button where clicking on Submit button displays some text(Username). But clicking the Submit ...
0
votes
0answers
34 views

Apache setting on CentOS for driving PHP with CGI

I've use Apache2.2.22+PHP5.3.1x. And I’ve used PHP as module with mod_php. I want to change it to as CGI. I think I can confirm PHP is as CGI if the value of ServerAPI changes Apache 2.0 Handler ...
2
votes
1answer
39 views

PHP - POST Method - What happens when content exceeds content length header?

I don't mean the POST content limit imposed by php.ini, I mean in the request header the content length is set as say 1mb, but 2mb of actual content is sent.
0
votes
0answers
24 views

C++ Displaying user selections made from an HTML table

I'm hoping I can get a little help. I have an Apache server setup, and I am trying to collect some information from the user. I have a table set up, which looks like this ...
0
votes
0answers
14 views

Installing Python module package on Apache Server

So I have this package of Python modules I'd like to use. "Pattern" module package I've successfully installed and ran it on my OSX machine which is fine. However, I'd like to use some of the ...
0
votes
0answers
16 views

Getting a 403 error in Apache when trying to configure a alias to cgi-bin

As in title, I'm trying to configure a ScriptAlias to cgi-bin on Apache2 on OS X. Whenever I try to access it, however, I end up with a 403 Forbidden error. I think the relevant lines from ...
-1
votes
1answer
16 views

What version of Apache to download [closed]

I'm just beginning to program and I don't know which version of Apache to download. I need Apache to run my code is my understanding. "Python web scripts are server-side scripts, meaning they must ...
0
votes
1answer
18 views

“import nltk” - Not working on xampp

I'm new to python and nltk. I have problem on import nltk. I installed python in xampp on windows under the path C:\xampp\Python. And I installed nltk under the path C:\xampp\Python. After this I ...
0
votes
0answers
14 views

Desperate with Apache2 and cgi (Ubuntu 12.04). Help :(

m having an issue installing apache2 in Ubuntu 12.04. Im trying to set the cgi-bin folder in the path /home/www/cgi-bin. Ive followed and search all over the internet but I still dont get it... ...
0
votes
2answers
40 views

Use bat file in CGI Python on localhost

I'm quite stuck with with a complex mix of files and languages! The problem: My webform starts a python script, as a cgi script, on localhost(apache). In this python script I want to execute a ...
-1
votes
1answer
66 views

First cgi script in perl and don't know what it does

I am new to Perl and I am looking into CGI programs. I tried the following from Perl Monks and it works. But I have no idea what it does. 1) What is the END_HERE? that is followed by HTML? : print ...
0
votes
0answers
4 views

Redirection Port Apache or CGI

I want to redirect one Apache server to another Apache server. IP of server are same but port changed. I want to redirect: https://192.168.1.1:8080/cgi-bin/mypage.cgi to ...
0
votes
2answers
61 views

Perl: use HTML::Entities error

I'm connecting to a server running a HTML page with the following code: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <meta name="generator" ...
0
votes
1answer
26 views

Using custom module with Python CGI script

I'm running a python CGI script on my localhost that needs to import and use another python module that I wrote. I placed the CGI script in the Apache cgi-bin directory (I'm running this on windows). ...
1
vote
3answers
60 views

Error on python web page

I have installed Python and configured in apache. I created a Python web file and open this in browser, I get an error. But the same code working in command-line. I hope the problem is from my apache ...
0
votes
0answers
33 views

Eclipse Perl CGI debugging

I have an existing web application, written in Perl, running on Apache HTTP 2.2 server. I'm using Eclipse and Windows Server 2008. I'm trying to setup Perl-cgi debug configuration. Here is my folders ...
0
votes
0answers
56 views

Hello World in Python on Apache

I have been dabbling in Python over the past few weeks and thought it might be fun to mess around with writing some output in python on a website. Understanding that apache isn't the "ideal" ...
0
votes
1answer
51 views

Invoking a dos batch file to run on a VM, using cgi, running on apache

kindly help me here. My requirement is that we have a VM, on which few dos batch scripts need to be run, based on the parameters chosen on a web page form, which is hosted via Apache on the VM. I ...
0
votes
1answer
38 views

Apache server preprocessing POSTed FORM data

I want to display a progress bar showing the live status of a file upload. I had a solution which involved perl reading from STDIN and then me AJAXing the file every second or so and it worked fine, ...
0
votes
0answers
38 views

Apache CGI script: File does not exist (Trying to access file outside cgi-bin)

I have a cgi script that needs to output html that contains a script outside the cgi-bin directory. Unfortunately, for the apache err_log it appears that the script is still being searched for within ...
0
votes
1answer
43 views

Run cgi or perl script without printing header in apache server

Hi can any one tell me how to run the perl or cgi script in apache server without printing header?
0
votes
0answers
55 views

Using Apache to mirror a Tor Hidden Service on the public Internet

I have been fooling around with using apache as a reverse/CGI proxy to forward a tor hidden service to the public Internet. Similar to what the tor2web project does. It looks like ProxyPass is my ...
0
votes
1answer
27 views

Can I use the same PHP code for module and CGI installation

A simple and maybe stupid question: Can I use the exact same PHP code no matter whether PHP is installed as a module or as a cgi binary? I understand that the processing is different in these two ...
2
votes
1answer
100 views

run python script as cgi apache server

I am trying to make a python script run as cgi, using an Apache server. My script looks something like this: #!/usr/bin/python import cgi if __name__ == "__main__": print("Content-type: ...
0
votes
1answer
40 views

How can I tell my dev environment to always load CGI::Carp 'fatalsToBrowser'?

I'm running a development environment for (mostly) a CGI app with Linux (openSuse) and Apache. Many of the apps we run used to have CGI::Carp 'fatalsToBrowser' all the time, and of course we do not ...
0
votes
2answers
51 views

Python CGI - Script outputs source of generated page

I have a CGI script that I wrote in python to use as the home page of the website I am creating. Everything works properly except when you view the page instead of seeing the page that it outputs you ...
1
vote
0answers
24 views

matplotlib CGI doesn't work

I'd like to publish a figure generated by matplotlib on web site based on Windows Apache Server. A Scipy example code (below) shows just tiny icon which link is broken. The code of related question ...
-1
votes
1answer
64 views

500 errors for images used by Perl CGI application [closed]

I've installed Foswiki but I've problem when my app try load images. The images don't load... I've get a solution but I'm not sure if is correct ... This is my configuration for CGI directory # # ...
0
votes
1answer
63 views

running perl cgi script problec

I am trying to run a simple hello world script as CGI (from the Beginning Perl book). i am running to the following problems: I do not find a folder /cgi-bin/ at any place on my computer (Mac OSX ...
0
votes
2answers
202 views

HTML form action ends up downloading perl file instead of executing it

I have been trying to run a simple perl-cgi script on windows 7. This is a simple HTML form with an OK button where clicking on OK button displays some text. But clicking the OK button on the HTML ...
0
votes
0answers
18 views

RedirectMatch on a cgi query not working

I'm trying to redirect URLs to a cgi script that match certain criteria. I.e. I don't want to redirect every query to that script, just those with a particular parameter. But I can't get it to work. ...
2
votes
2answers
130 views

Executing CGI Scripts with Apache+SSL

I'm having some problems trying to execute a CGI script through apache. This script is identical to the OpenLayers proxy.cgi which allows to make AJAX requests outside of one's domain. This script ...
2
votes
2answers
404 views

Perl CGI to download a file via web browser

Need some cgi-perl script which can download a file from a server machine. EX: click on a download link and it will open a "save as" window and will allow me to save the file on my local machine. I ...
1
vote
0answers
145 views

How to run cgi scripts in tomcat in Windows system

I installed tomcat and removed the comments of cgi script in web.xml in conf folder Now iam not able to understand where to place my cgi script I have read many resources and i placed it in a ...
0
votes
0answers
84 views

Starting VLC through Apache CGI

This is the shell script I am trying to communicate with via CGI #!/bin/bash echo "Content-type: text/html" echo "" QUERY_STRING=4FuSI-LcC54 timeout 600 vlc -vvv ...
0
votes
0answers
66 views

Apache Doesn't Detect CGI Script

I am running ubuntu with apache2. I have already edited my httpd.conf file to say... ScriptAlias /cgi-bin/ /usr/local/apache2/cgi-bin/ I have also created a bash script and made it executable, and ...
0
votes
0answers
49 views

How can a CGI application determine if Apache would allow access to a URL?

In brief, I'd like to have a function that I can call from a CGI app (in any language, I'm not choosy*) that looks something like: isReadable(url, user) ... returning true if and only if Apache ...
0
votes
1answer
64 views

Apache ignoring max_execution_time when running a CGI script

I have inherited perl script that gets executed via a web GUI (using CGI). Without fail, the script quits at exactly 10 minutes every time. I've updated the apache php.ini max_execution_time and ...
0
votes
2answers
262 views

Perl Apache : Perl script displayed as plain text

While configuring with apache and perl cgi scripts, don't know why index.cgi/index.pl are displayed as plain text instead of executing them. When I put http://localhost in browser it displays below ...
0
votes
1answer
16 views

Apache configuration to route only example.com and example.com/ but not example.com/something

I am using php and python based pages on my website. I want my root page example.com and example.com/ to be served using python and remaining all the pages by php say (example.com/url). If I add a ...
0
votes
1answer
36 views

Cgi script wont refresh form

I'm writing a cgi script using Bash and this form submitted the url for my form and now it won't refresh even if I change the code to take less queries. echo '<form method=GET ...
1
vote
0answers
71 views

apache 403 forbidden on OSX

I can't get apache on one OSX system to allow permission to execute a CGI script. It works on a different OSX system and on an Ubuntu system. Here are the relevant directives from the apache config ...
0
votes
1answer
149 views

cgi bash script not waiting for all output of command

I have a cgi script running but I am having issues with the cgi script not waiting for all of the output of the commands. Here is the cgi script: #!/bin/bash echo Content-type: text/plain echo "" ...
0
votes
0answers
23 views

CGI returns status 500 and text Not found

I have this cgi in my web host root: #!/bin/bash git pull composer.phar install date +"%F %T %:z" >> git-deploy.log echo Content-type: text/plain echo echo Done When I visit this in my ...
0
votes
1answer
87 views

cgi-bin ScriptAlias on difference directory

please help me to resolve this problem! Currently i have a server with 2 HDDs mounted as /site01 and /site02 and i've created 2 sites on each HDDs. And now i would like to run cgi script on both ...
2
votes
1answer
66 views

Setting up a Fossil server on Apache

I'm trying to set up a Fossil server on an externally hosted Apache server without much luck. I created the cgi script and placed it and the executable in the cgi folder. I don't have access to any ...
1
vote
1answer
78 views

Linux allowed open files limit differs between CGI and CLI

I'm having problems with my open files limits when running my script through command line vs through apache. My apache server is running under the user "apache" and it has its limits overridden in ...
0
votes
1answer
64 views

thread error in python cgi script

I'm getting the following error on a CGI script I'm running.... Traceback (most recent call last):, referer: http://mysite/cgi-bin/dev/testing.py File "/var/www/cgi-bin/dev/testing.py", line 908, ...
0
votes
0answers
18 views

how make cgi connection from apache to second local webserver

I've apache webserver insite chroot (squeeze) and when queried by a webclient it serves the cgi query but it wont make a cgi connection to an other local webserver jetty within the same chroot. When ...

1 2 3 4 5 7