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

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -