1) The Common Gateway Interface is a standard defining how web server software can delegate web page generation to a stand-alone application or executable file. 2) Computer Generated Imagery
0
votes
1answer
18 views
What is the quickest solution for porting a legacy embedded C web interface to Linux?
I'm porting an embedded system to Linux. Currently it uses a proprietary built-in webserver which calls CGI functions integrated into its firmware. The existing code generates the entire page ...
0
votes
1answer
24 views
Strange new lines in my httpd.conf
Few weeks ago I finded new subdomain configuration in my httpd.conf. Here is it:
<VirtualHost *:8080>
ServerName extuser.mysyte.com
ServerAdmin webmaster@localhost
DocumentRoot ...
0
votes
3answers
63 views
I want to encrypt the post data so that the user can not see it
I want to create a authentication mechanism in which the client side is javacript and it fetches the password and username from the client and post it to the cgi perl script.
The problem is that the ...
-3
votes
0answers
24 views
Why do we use Webalizar.cuurent file in CGI Perl?
I am Working on CGI Perl Project on Support...There is one page named Webalizer & file format is Webalizer.current. May I know what is the basis use of this file, actually inside this page some ...
1
vote
1answer
44 views
Website Perl Script fails with json module
I want to run a perl script which uses JSON on my website. I've tested the following script in the cgi-bin folder with success:
#!/usr/local/bin/perl
print "Content-Type: text/html \n\n";
print ...
-3
votes
1answer
27 views
css not being applied in perl cgi script
I am using Xampp to test my perl cgi scripts. When I open the cgi script the css does not seem to apply to the page. I have tried the exact same code in an html file and it works fine which suggests ...
1
vote
1answer
36 views
Is it possible to write a HTML file with inline css by using perl CGI.pm?
I am asked to make a form that get the width, unit, direction and a paragraph by using CGI.pmand forms from user. Then I need to apply width, unit and direction to the paragraph by CSS rules.
I was ...
2
votes
0answers
18 views
about php safe_write timeout
all
My error case is a normal web download service, and web server is lighttpd, and use php-fpm to process download request like this:
$fp = fopen('php://output', 'w');
fwrite($fp, $data);
But ...
-4
votes
0answers
45 views
php-fpm config high load with nginx [closed]
I have high server load caused by PHP-FPM on NGINX.
I do everything with TCP and socket, and my server is 8-core with 24 GB of RAM, with about 200 visitors daily.
This is my php-fpm config file:
...
-1
votes
1answer
40 views
find HTML Title from Delphi “Web Server Application”
With delphi7 i create "Web Server Application" (MyCGI.EXE), some procedure in there to serve client.
Client Web based HTML (MyHTML.HTML) call javascript (AJAX) (MyScript.js) to open MyCGI.EXE and ...
1
vote
1answer
20 views
Perl-CGI JQuery Datepicker
Can someone help me add a JQuery datepicker widget(similar to http://jqueryui.com/datepicker/#inline) to the form and a loading gif on form submit?
(I don't own the below code, got it from a support ...
-1
votes
1answer
32 views
CGI application misbehaved by not returning a complete set of HTTP headers
Hi someone created one application "ReqServ" using Code gear Delphi 2009 and C++ Builder 2009. This application returns chart images. This application is called through URL like "http:/ ...
0
votes
0answers
20 views
Python script using cgi module can't create files into a subdirectory
I have an html file. When using the submit button, the action it is a python script using the cgi module.
...
<form name="input" action="test.py" method="post">
...
The python script is ...
-2
votes
0answers
37 views
301 Redirect - Perl I think? [closed]
We have a .co.uk address we want to 301 redirect to a .com page.
We have an index file and a cgi-bin.
Through the server control panel we created a redirect.pl file, however I don't think that this ...
0
votes
0answers
17 views
Giving upoaded file (cgi) to java jar as parameter
For a university project we are ought to introduce a webservice - for our own use - where a executable should work with a given file and give back the result.
So far so easy.
The pyhton-client ...
-1
votes
2answers
45 views
How to replce a specific line in a file with Perl script
I have a file test.txt that contains 80 lines.
In a perl script I want to replace the 60's line for example with an other one.
#!/var/www/cgi-bin/rootperl -w
my $path="/var/www/cgi-bin/test.txt";
...
1
vote
1answer
37 views
Perl CGI script working from cmd but not from browser
I have a CGI perl script which will first chdir to a specified location and then run a command(This command runs only in this specified directory since it uses a input file build.xml which is in this ...
0
votes
0answers
37 views
How to execute a perl code in localhost?
and I want to be able to view a sample web Perl code through localhost.
I have read in the internet that i should put those codes inside cgi-bin but I'm confused, I have a cgi-bin inside /usr/lib/ ...
0
votes
0answers
30 views
Using FIFO communication between two perl program [duplicate]
My first perl program "exemple.pl" contains 2 jtextfield.
I had recuperate what I wrote in those jtextfields in two variables; $name and $psswd and print them successfully as you can see in the ...
-2
votes
0answers
37 views
Find web Title from TWebRequest [closed]
With delphi7 i create "Web Server Application" (MyCGI.EXE), some procedure in there to serve client.
Client Web based HTML (MyHTML.HTML) call javascript (AJAX) (MyScript.js) to open MyCGI.EXE and ...
-2
votes
0answers
32 views
Can't get hidden value
Need to hold some value's in page.
Have added a hidden value in page html:
<input type="hidden" name="myHidden" />
Python script:
myValue = int(form['myHidden'].value);
But can't find ...
-1
votes
1answer
44 views
Using FIFO pipes to communicate between Perl programs
hi everybody i have 2 perl programs:
the first exemple.pl has a form let's say two jtextfield and in which i declared two variable $name and $psswd to recuperate what i wrote in jtextfields...i want ...
0
votes
1answer
26 views
0
votes
2answers
17 views
python cgi script receiving form data
I am trying to create a python program that will receive information from a form that is using html.
This is what i have for my html code.
<html>
<head>
<title> NBA Survey! ...
0
votes
1answer
26 views
CGI scripts for bash commands
I'm kinda new to all this, so tell me if I'm doing something totally wrong.
I'm doing some gpio stuff with my raspberry pi, and at the moment i'm making something so the gpio pins can be controlled ...
1
vote
2answers
28 views
Reading Stdin in chunks… (possibly with scanf?)
I have a linux box.
On this linux box, there is a program.
In this program, I have a loop like this:
int num=*"what num needs to be"*;
char proc[num];
int result;
while (1) {
...
0
votes
1answer
24 views
Environment variables are not passed from .htaccess to PHP
I am trying to pass an environment variable from .htaccess through to PHP. This works just fine on my local WAMP server, but on the server where my website is hosted, it fails without reason.
Here's ...
-1
votes
1answer
46 views
How to use POST method at Perl [closed]
hello everybody i m new here i was searching for a solution since 4 days i hope someone can help me..I have 2 files: wifi.pl and retour.pl here is the code of the first one
#!/usr/bin/perl
use CGI ...
-1
votes
0answers
18 views
Customized homepage for bugzilla [closed]
I am using bugzilla 4.2.5. I need to redirect to 'My bugs' page, once a user logged in.
...
0
votes
1answer
17 views
cannot open multiple instances of a webpage after submitting a form in it
am new to CGI programming. I have created a web based tool ,where in depending on the option selected , i submit the corresponding form and validation takes place in 2nd php page. I have used php ...
-2
votes
0answers
17 views
CGI - file missing [closed]
Have a python app that I have not built myself.
Accidently deleted a CGI-file.
I have the .py file remaining.
How do I reproduce a new CGI-file?
0
votes
1answer
19 views
Use value from javascript on html page to execute python script
I have a problem. I have a project that involves sending a value from a web page to a web server and using that value to generate a voltage by commanding a digital to analog converter. For the server ...
0
votes
0answers
4 views
Apache2 not executing cgi scripts
I have Debian server with apacha2 insalled, trying to execute a cgi script on it.
I get 403 error, and records in logs saying "I have no permission to execute cgi files".
I have mentioned my ...
1
vote
1answer
127 views
+50
storing the current value of countdown timer in variable for using in the template toolkit file
I have a count down timer in the Hours left field, to find the hours left.
I also have a field to enter the total estimated time and upon enetering the value of total estimated time, the timer will ...
1
vote
1answer
41 views
Adding count down timer in perl template tool kit
I have checked some possibilities for adding a count down timer in a cgi page.But i couldn't find anything helpful.
I have written the file to add countdown timer, 'Timer.js' and is calling from the ...
1
vote
2answers
38 views
How to let CGI input field return to its initial state when a condition is fulfilled (CGI.pm/Perl)
I have a CGI script that looks like this.
#!/usr/local/bin/perl
use CGI ':standard';
print header;
print start_html('A Simple Example'),
h1('A Simple Example'),
start_form,
"What's your name? ...
1
vote
1answer
40 views
Calling multiple perl scripts over APACHE server?
I am pretty new to creating web applications, so I am very unfamiliar with working over a web server. Just to let everyone know, I am implementing html, javascript, strawberry perl, AJAX, and running ...
1
vote
2answers
81 views
Premature end of script headers in perl scripts
I have problem in execution of perl scripts. I am using Alias for the directory of the server like that:
Alias /epbin3/ /opt/v-hosts/user/epbin/
<Location /epbin3>
AddHandler cgi-script ...
0
votes
0answers
19 views
Error 500.0 - Internal Server Error An unknown FastCGI error occured
Module: FastCgiModule
Notification: ExecuteRequestHandler Handler PHP_via_FastCGI
Error Code: 0x8007010b
Physical Path: C:\inetpub\wwwroot\Gallery\photos.php
Logon Method: ...
0
votes
0answers
22 views
How to profiler python cgi script cpu usage?
I have a python cgi script running under apache server, but top command show each cgi script cost 7% cpu usage?
Is there any tools or solution to check which cgi part cost high cpu usage?
Using ...
0
votes
3answers
58 views
Perl CGI redirect with URI.pm
I have a Perl script which in some cases needs to do a redirect to another one and send all the query parameters along. The query parameters can contain a lot of data and I do not want to construct ...
0
votes
1answer
8 views
New priorities are not getting updated in the Bugzilla bugs table
I am having 5 priorities already in the Bugzilla. And now wanted to add 3 more priorities P6,P7,P8.
And i added the 3 new priorities in the priority table.
But the problem is, the new 3 priorities ...
0
votes
0answers
28 views
Not able to download Excel sheet from Perl CGI page from cgi-bin directory
I am able to access Perl CGI scripts from the /cgi-bin folder as usual. And in one CGI page an Excel sheet (in /cgi-bin) will be generated by pulling data from MySQL, but I am not able to download the ...
-2
votes
0answers
14 views
Python cgi not recognizing Hidden field [closed]
this is a computer science project im doing at school. if you try to run it via a server, you will see that python does not seem to be recognizing my hidden field input as part of its FieldStorage, ...
0
votes
0answers
20 views
How to get rid off - sudo: /usr/lib/sudo/sudoers.so must be only be writable by owner sudo: fatal error, unable to load plugins
I am trying to configure apache2 with cgi (python). For that, I have to change permissions of some folders and files but I am getting sudo fatal errors every time I try to change permission of a file ...
0
votes
2answers
40 views
Two buttons doing same action in my perl CGI script
I have this 2 buttons in my perl cgi code which does the same action even I have assigned different actions to each button
Here is the code
print
start_html(),
start_form(-action => ...
0
votes
1answer
33 views
How to assign Action to a Button in perl cgi?
So I have a button in my CGI Perl. On clicking that button I need to assign a action in perl CGI, on clicking that button a New text-area should open with specified width in the same page with a ...
2
votes
1answer
32 views
How to encode base64 md5 in CGI?
I need to post some form in CGI (Perl) and one of the inputs requires hash encoded in base64 md5. The sample provided by the side which should get, works in PHP as follows:
$hash = base64_encode(md5( ...
0
votes
0answers
19 views
Session in php as cgi script
Is it possible to use sessions in a cgi script written in php?
I have tried but it doesn't work (maybe because session can't create cookies while php executes as script) Is there some alternatives to ...
-1
votes
1answer
27 views
Not able to print the content of a file in perl CGI
I want to print the content of a file line by line in a webpage
Here is my code which is refusing to work.
open(CNF, '<G:\automation_managment\".$n."\config.txt') or die "cant open";
my ...






