I have installed the WordPress, MySQL,PHP SDK on Linux (Ubuntu 13.10) and configure everything according to google-appengine-help-page
But, I can't access the wordpress in local environment also after the deployment.
when I run the following, in the terminal, from my home directory, where APPLICATION_DIRECTORY IS prsent
google_appengine/dev_appserver.py APPLICATION_DIRECTORY
I get error , the output is....
INFO 2014-04-14 05:55:59,407 sdk_update_checker.py:242] Checking for updates to the SDK.
INFO 2014-04-14 05:56:00,904 sdk_update_checker.py:258] Update check failed: HTTP Error 404: Not Found
INFO 2014-04-14 05:56:00,927 api_server.py:171] Starting API server at: http://localhost:44134
INFO 2014-04-14 05:56:00,952 dispatcher.py:182] Starting module "default" running at: http://localhost:8080
ERROR 2014-04-14 05:56:00,953 php_runtime.py:223] The PHP runtime is not available
Traceback (most recent call last):
File "/home/hkc/google_appengine/google/appengine/tools/devappserver2/php_runtime.py", line 219, in new_instance
self._check_environment(php_executable_path)
File "/home/hkc/google_appengine/google/appengine/tools/devappserver2/php_runtime.py", line 148, in _check_environment
'flag (%s) does not exist.' % php_executable_path)
_PHPBinaryError: The path specified with the --php_executable_path flag () does not exist.
INFO 2014-04-14 05:56:00,954 admin_server.py:117] Starting admin server at: http://localhost:8000
The error shows that php_executable_path does not exist. I have the php-5.4.25, google-appengine, APPLICATION_DIRECTORY all under my, home directory.
When I open localhost:8080 (added http:// before that), it shows,
The path specified with the --php_executable_path flag () does not exist.
How can I correct this ?