Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~4K People Reached
Favorite Tags
Member Avatar for gbs

I have a HTML file that displays properly in Firefox, but Internet Explorer only shows a blank page. [url]http://www.cmbl.uga.edu/software/phxpa.html[/url] What could be the reason? :?:

Member Avatar for gbs
0
153
Member Avatar for gbs

Its weired that even after I 1) changed the file name from "php.conf" to "php.bak" (so that the php module wouldn't be loaded); and 2) enabled "HTTPD=/usr/sbin/httpd.worker" in "/etc/sysconfig/httpd". After I restarted the httpd service successfully (no conflict with php), I still found that the "prefork" MPM was running in …

Member Avatar for sn4rf3r
0
129
Member Avatar for gbs

In devoloping CGI scripts, I noticed that my apache server set stack size as 10MB for apache users. However, my cgi script needs to invoke a C executable that requires a larger stack size. I wonder how to increase the stack size for apache users. I tried the following 2 …

Member Avatar for gbs
0
902
Member Avatar for gbs

Greetings, In a Python script ("test.py"), I used os.system to execute a c executable "grerand", like below: os.system ("./grerand sequence sequence 1000") If I use this script as a CGI script and invoked it via the web (in this case, the invoking user is an apache user). It gave me …

Member Avatar for Ene Uran
0
112
Member Avatar for gbs

I was trying to write a simple python script to enable web users to upload files. Here is html [code] <HTML> <HEAD></HEAD> <BODY> <FORM ACTION="[URL="http://some-server.com/test.cgi"]http://some-server.com/test.cgi[/URL]" METHOD="POST" enctype="multipart/form-data"> <INPUT TYPE="text" NAME="words" SIZE=30><br> <INPUT TYPE="file" NAME="infile" SIZE=30><br> <INPUT TYPE="submit" NAME="Submit" VALUE="Submit Form"> </FORM> </BODY> </HTML> [/code] Here is the python script [code] …

0
78
Member Avatar for gbs

Hi, I am having the problem of running ps2pdf from a python script. From the command line, ps2pdf works just fine. However, when I tried the following code: os.chdir("/tmp/test") # file.ps resides in this dir os.system("ps2pdf file.ps file.pdf") The script generated an empty file.pdf with no pages. Does anyone know …

Member Avatar for G-Do
0
2K