美文网首页我爱编程
通过php执行 casperjs 报错 Fatal: No su

通过php执行 casperjs 报错 Fatal: No su

作者: 9682f4e55d71 | 来源:发表于2018-02-07 10:45 被阅读28次

    在命令行执行正常,但是通过PHP执行报错

    一般是环境变量的问题,可以在PHP代码前加入

    <?php
    putenv("PHANTOMJS_EXECUTABLE=/usr/local/bin/phantomjs");  
    

    或者将phantomjs建立软连接放到bin目录下

    [root@poplaser 80]# whereis casperjs
    casperjs: /usr/local/bin/casperjs
    [root@poplaser 80]# whereis phantomjs
    phantomjs: /usr/local/bin/phantomjs
    [root@poplaser 80]# ln -s /usr/local/bin/phantomjs /bin/phantomjs
    
    

    相关文章

      网友评论

        本文标题:通过php执行 casperjs 报错 Fatal: No su

        本文链接:https://www.haomeiwen.com/subject/iqsozxtx.html