I keep getting Syntax Error: unexpected character after line continuation character when I try to start the localhost server with the following command:
google_appengine\dev_appserver.py --php_executable_path="C:\Computer Science\PHP\php\php-cgi.exe" "C:\Computer Science\PHP\helloworld"
What's wrong?
My app.yaml:
application: helloworld
version: 1
runtime: php
api_version: 1
handlers:
- url: /.*
script: helloworld.php
My helloworld.py
<?php
echo 'Hello, World!';
?>
My directories
/PHP
/php
/php-cgi.exe
/helloworld
/google_appengine
Edit:
I have ran my app using the google app engine launcher, with php sdk and an extra command line flag in the launch settings:
--php_executable_path=C:\Computer Science\PHP\php\php-cgi.exe
. The server crashed.