我在Laravel中使用Browsershot(使用Puppeteer)。我可以在本地开发环境(Mac,Laravel Valet)中完美运行它,但是在Forge配置的服务器上运行它时,在日志文件中出现以下错误(我已用占位符替换了敏感URL):
local.ERROR: The command "PATH=$PATH:/usr/local/bin NODE_PATH=`/usr/bin/node /usr/bin/npm root -g` /usr/bin/node '/home/forge/my-app.co.uk/vendor/spatie/browsershot/src/../bin/browser.js' '{"url":"https:\/\/my-test-site.com\/about.html","action":"screenshot","options":{"type":"png","path":"\/home\/forge\/my-app.com\/storage\/screenshots\/13\/full\/21.jpg","args":[],"viewport":{"width":1400,"height":1080},"fullPage":true,"waitUntil":"networkidle0"}}'" failed.
Exit Code: 1(General error)
我已按照自述文件中的说明安装了最新版本的稳定版Chrome:
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs gconf-service libasound2 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 libgtk-3-0 libnspr4 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 ca-certificates fonts-liberation libappindicator1 libnss3 lsb-release xdg-utils wget
sudo npm install --global --unsafe-perm puppeteer
sudo chmod -R o+rx /usr/lib/node_modules/puppeteer/.local-chromium
我的代码如下:
我也尝试过指定自定义节点和npm二进制文件。我也尝试过自定义包含路径。这样做时,我得到的错误可能会略有不同,但基本上保持不变。
在Forge中,我实际上是在构建过程中安装Puppeteer。我在注意到Browsershot自述文件中关于安装Chrome的说明之前进行了设置。
我只是不确定如何解释该Node错误。我已经尝试了所有我能想到的。所以我希望有人能指出我正确的方向。
谢谢!