我在使用谷歌应用引擎启动器部署phpmyadmin时遇到问题。 我已经关注了谷歌云教程,但是当我部署时,这就是日志:
2015-11-10 17:21:50 Running command: "['C:\\Python27\\pythonw.exe', '-u', 'C:\\Program Files (x86)\\Google\\google_appengine\\appcfg.py', '-- oauth2_credential_file=C:\\Users\\Hernan/.appcfg_oauth2_tokens', 'update', u'D:\\phpMyAdmin']"
05:21 PM Application: nobisagro2015; module: phpmyadmin; version: 1
05:21 PM Host: appengine.google.com
05:21 PM
Starting update of app: nobisagro2015, module: phpmyadmin, version: 1
05:21 PM Getting current resource limits.
05:21 PM Scanning files on local disk.
05:21 PM Scanned 500 files.
05:21 PM Scanned 1000 files.
05:21 PM Scanned 1500 files.
05:21 PM Scanned 2000 files.
05:21 PM Cloning 1077 static files.
05:22 PM Cloning 2161 application files.
05:22 PM Cloned 2000 files.
05:22 PM Uploading 1 files and blobs.
05:22 PM Uploaded 1 files and blobs.
05:22 PM Compilation starting.
05:22 PM Compilation completed.
05:22 PM Starting deployment.
05:22 PM Rolling back the update.
Error 400: --- begin server output ---
Client Error (400)
The request is invalid for an unspecified reason.
--- end server output ---
2015-11-10 17:22:20 (Process exited with code 1)
You can close this window now.
文件app.yaml和config.inc.php是正确的,正如教程所说。我已经阅读了类似的问题,通常是应用程序ID的问题,但不是我的情况。
这是app.yaml:
application: nobisagro2015
version: 1
module: phpmyadmin
runtime: php55
api_version: 1
handlers:
- url: /(.*\.(ico$|jpg$|png$|gif$))
static_files: \1
upload: (.*\.(ico$|jpg$|png$|gif$))
application_readable: true
- url: /(.*\.(htm$|html$|css$|js$))
static_files: \1
upload: (.*\.(htm$|html$|css$|js$))
application_readable: true
- url: /(.*\.(php$))
script: \1
login: admin
- url: /(.+)
script: index.php
login: admin
- url: /.*
script: index.php
login: admin
我不知道问题是什么......有什么帮助吗?
感谢!!!