我正在使用共享主機環境以及其他支持Python的環境。我已經遵循了這些示例,並部署了我的cgi文件,然後通過了chmod,授予了它對世界的讀取和執行權限,然後對所有者進行了讀取,寫入和執行。爲什麼我在使用Python時遇到文件權限錯誤
的代碼很簡單:
#!/usr/bin/python
# Required header that tells the browser how to render the text.
print "Content-Type: text/plain\n\n"
# Print a simple message to the display window.
print "Hello, World!\n"
當我再運行此我得到以下錯誤:
A file permissions error has occurred. Please check the permissions on the script and the directory it is in and try again.
任何幫助表示讚賞!
安德魯
+1提導致它:) – orip 2009-12-12 16:50:16
路徑一個會如何檢查? +1! – Isaac 2009-12-12 16:52:53
問題目錄中的'ls -al'通常會列出權限以及所有者。 – 2009-12-12 17:34:14