SO I've been stuck on this problem for a while now. I have a cgi python script that needs to execute a bash script. I have the following line in my code:
os.system("/complete/path/to/executable/run_summary_page.sh " + labelName)
I've been trying to debug this for hours now and I can't find out why it doesn't execute that correctly. When I run the same exactly line from the command line it works perfectly fine. I have given correct permissions to that bash script and so on, but it still isn't working. Note, I'm forced to use python 2.2 so I'm a little restricted with the number of utilities I have available.
os.systemreturn?stat = os.system(...)