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>
"""