2

我在日志文件中看到以下错误:

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
4

1 回答 1

2
WindowsError: [Error 5] Access is denied

在 Windows 中,我曾经在安装 Google App Engine SDK for PHP 后自己看到此错误。当 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/

希望能帮助到你,

于 2013-06-27T01:59:45.070 回答