编程语言
首页 > 编程语言> > 使用PHP的exec()给出错误:致命:[Errno 2]没有这样的文件或目录;你安装了吗?

使用PHP的exec()给出错误:致命:[Errno 2]没有这样的文件或目录;你安装了吗?

作者:互联网

我正在尝试使用PHP来执行()二进制casperjs,

exec('casperjs /var/www/mysite/application/phantomjs/test.js');

但是我收到了错误

Fatal: [Errno 2] No such file or directory; did you install phantomjs?

CasperJS运行在PhantomJS之上,我手动安装并在/usr/local/bin / phantomjs和/usr/local/bin / casperjs创建链接.所以我猜猜casperjs在运行时会调用phantomjs.

然而,当我进入服务器并运行时,它工作正常

casperjs /var/www/mysite/application/phantomjs/test.js

什么地方出了错?我认为casperjs不能作为网络用户运行phantomjs?如果这是真的,怎么解决?

解决方法:

只是尝试使用程序的完整路径调用exec命令.例如

exec('/usr/local/bin/casperjs /var/www/mysite/application/phantomjs/test.js');

还要确保允许您通过Web服务器执行该程序,特别是如果您使用php safe_mode.看看safe_mode_exec_dir

标签:php,phantomjs,ubuntu,web-scraping,casperjs
来源: https://codeday.me/bug/20190901/1782917.html