如何解决错误QXcbConnection:使用PHP的phantomJs使用exec函数时无法连接显示

我正在开发一个项目,我想在一起使用 PHP和Phantomjs,我已经完成了我的phantomJs脚本并尝试使用PHP exec函数运行它.但该函数返回一个错误列表数组.
下面我正在编写我的phantomjs和PHP代码

导游:/var/www/html/phantom/index.js

var page = require('webpage').create();
var fs = require('fs');

page.open('http://insttaorder.com/',function(status) {
    // Get all links to CSS and JS on the page
    var links = page.evaluate(function() {

        var urls = [];

        $("[rel=stylesheet]").each(function(i,css) {
            urls.push(css.href);
        });

        $("script").each(function(i,js) {
            if (js.src) {
                urls.push(js.src);
            }
        });

        return urls;
    });

    // Save all links to a file
    var url_file = "list.txt";
    fs.write(url_file,links.join("\n"),'w');

    // Launch wget program to download all files from the list.txt to current
    // folder
    require("child_process").execFile("wget",[ "-i",url_file ],null,function(err,stdout,stderr) {

                console.log("execFileSTDOUT:",stdout);
                console.log("execFileSTDERR:",stderr);

                // After wget finished exit PhantomJS
                phantom.exit();

            });

});

导游:/var/www/html/phantom/index.PHP

exec('/usr/bin/phantomjs  index.js 2>&1',$output);
echo '<pre>';
print_r($output);
die;

也尝试过

exec('/usr/bin/phantomjs  /var/www/html/phantom/index.js 2>&1',$output);
    echo '<pre>';
    print_r($output);
    die;

运行后,我得到低于错误

Array
(
    [0] => QXcbConnection: Could not connect to display
    [1] => PhantomJS has crashed. Please read the bug reporting guide at
    [2] =>  and file a bug report.
    [3] => Aborted (core dumped)
)

但是,如果我从终端运行index.PHP文件,如下所示:

user2@user2-H81M-S:/var/www/html/phantom$PHP index.PHP

然后它工作正常.我不知道如何解决它.请帮忙.

我正在使用以下版本
系统版本:Ubuntu 16.04.2 LTS
PHP版本:5.6
幻影版:2.1.1

解决方法

您是否尝试在服务器上设置环境变量?或者在调用phantomjs之前添加它?

我遇到了同样的情况并找到了一些解决方案:

一个.将变量QT_QPA_PLATFORM定义或设置为屏幕外:

QT_QPA_PLATFORM=offscreen /usr/bin/phantomjs index.js

湾或者将此行添加到.bashrc文件中(将其放在最后):

export QT_QPA_PLATFORM=offscreen

C.或安装包xvfb并在phantomjs之前调用xvfb-run:

xvfb-run /usr/bin/phantomjs index.js

d.或使用参数平台:

/usr/bin/phantomjs -platform offscreen index.js

也许您不希望/不能在您的服务器上进行修改,在这种情况下,您可能会尝试从official website下载静态二进制文件

/path/to/the/bin/folder/phantomjs index.js

和/或在.bash_aliases文件中创建一个别名,如下所示:

alias phantomjs=/path/to/the/bin/folder/phantomjs

make sure that phantomjs is not installed already on the system if you decide to use the alias.

if the file .bash_aliases not exist already,feel free to create it or add the alias line at the end of the .bashrc file

一些参考:

> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=817277
> https://github.com/ariya/phantomjs/issues/14376
> https://bugs.launchpad.net/ubuntu/+source/phantomjs/+bug/1586134

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...