No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
6 Posted Topics
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? :?: | |
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 … | |
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 … | |
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 … | |
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] … | |
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 … |
The End.