Google app engine php executable path not found

后端 未结 4 1883
执笔经年
执笔经年 2020-12-19 16:57

Followed the steps given on the official google app engine page for installing the sdk for php->

https://developers.google.com/appengine/docs/php/gettingstarted/hell

4条回答
  •  余生分开走
    2020-12-19 17:52

    Install php5-cgi:

    sudo apt-get install php5-cgi
    

    Run app:

    dev_appserver.py --php_executable_path=/usr/bin/php-cgi path/to/your/app
    

提交回复
热议问题