Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图能够在我的 vps 上运行 php 脚本。我确实安装了 php5,但是当我运行 php 文件时,它说
/usr/bin/php: bad interpreter: No such file or directory
所以我输入whereis php5
whereis php5
输出是:
php5: /etc/php5 /usr/lib/php5 /usr/share/php5
问题是:此时我该怎么做才能使 php 文件运行?
我的 php 文件的顶部,我应该有什么?#!/etc/php5?
#!/etc/php5
然后你没有安装它。命令行或 CGI 版本可以安装:
sudo apt-get install php5-cgi
或者-cli,如果它仅用于控制台脚本,并且您已经为 Apache 运行了 mod_php。
-cli