|
It may be a permissions problem. By default, Apache executes using a low-privilege user (like 'nobody'), so Apache (and by extension your Python program), may not be able to get access to your files or directories. What permissions have you set up on them?
Other than that, perhaps it's a problem with mod_python. Try experimenting with different file operations and see what happens, and what exceptions they raise.
|