我在日志文件中看到以下错误:
Exception in thread Thread-1:
Traceback (most recent call last):
File "threading.pyc", line 486, in __bootstrap_inner
File "launcher\taskthread.pyc", line 65, in run
File "subprocess.pyc", line 594, in __init__
File "subprocess.pyc", line 816, in _execute_child
WindowsError: [Error 5] Access is denied
答案 0 :(得分:2)
WindowsError: [Error 5] Access is denied
在Windows中,我曾经在安装适用于PHP的Google App Engine SDK后看到此错误。当gae找不到PHP可执行文件时,会发生此错误。
事情是我指定了包含php-cgi.exe的文件夹的绝对路径,省略了可执行文件php-cgi.exe的名称!我通过添加tyhe可执行文件的名称解决了这个问题。因此,您可能需要再次查看绝对路径并进行更正。
来自文档:
使用以下命令启动Web服务器,为其指定路径 你的项目目录:
google_appengine / dev_appserver.py --php_executable_path = absolute-path-to-php-cgi.exe myproject /
希望它有所帮助,