I put a script on my own cgi python server ( not this one cuz they havent approved my hosting yet). Anyway, when I ssh to this host and run the mkdir script, it works fine. However, when I call this command from a .py on the web it doesnt work. Im not sure how to fix this. Is this a permissions issue? Every other file i/o seems to work. Does anyone know what the problem might be?
problem with python's os.mkdir in cgi test
No, it is not IO problem. First, When you log-in and work via ssh then you're an authenticated user and you may have right to write the content in directory. However, when you access .py then you're an anonymous user. Second, make sure about permissions. If your second host is Source forge then you don't have right to write a file even in cgi-bin.
Good Luck!
Good Luck!
