Google App Engine PHP on windows -
i'm trying started using google app engine php (on windows 7) , have been trying follow helloworld example here.
problem having in starting webserver. whenever try run error
dev_appserver.py: error: few arguments
i'm typing following @ command line:
google_appengine\dev_appserver.py --php_executable_path=c:\php\php-cgi c:\appengine\helloworld\
any suggestions doing wrong?
cheers
use quotes arguments.
google_appengine\dev_appserver.py --php_executable_path="c:\php\php-cgi" "c:\appengine\helloworld"
or use slashes instead of backslashes directory separator:
google_appengine\dev_appserver.py --php_executable_path=c:/php/php-cgi c:/appengine/helloworld
for best results combine both methods ;)
Comments
Post a Comment