Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to copy a dynamically created file from the cgi-bin directory to the www directory. It works if I run the command in Terminal but it does not work if I run it in the browser. I even changed permissions to 777 and it still wont copy. Please let me know if you have any ideas.

root@NetworkTools:/usr/lib/cgi-bin# cat movemyfile.py
#!/usr/bin/python2.7

import cgi
import shutil

print "Content-type: text/html"

print """
<html>
<head><title>Boot.cfg download</title></head>
<body>
"""
shutil.copy2('/usr/lib/cgi-bin/boot.cfg', '/var/www')
print """
</body>
</html>
"""
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.