1

我在laravel 项目中使用Browsershot 。当我在本地主机上使用它时,它工作得很好。但是,无论我做什么,我似乎都无法让它在实时服务器上运行。我在 Linux VPS 上运行它。

这是我的代码(在控制器内):

    use Illuminate\Http\Request;
use Spatie\Browsershot\Browsershot;
use Spatie\Image\Manipulations;

class screenshotController extends Controller
{
    public function take($url){

        $directory = "screenshots/" . date('m') . "/";
        $id = uniqid(). ".jpeg";

        if (!file_exists($directory)) {
            mkdir($directory, 0777, true);
        }

        Browsershot::url("http://".$url)
            ->windowSize(1920, 1080)
            ->fit(Manipulations::FIT_CONTAIN, 525, 394)
            ->noSandbox()
            ->ignoreHttpsErrors()
            ->save($directory.$id);
            return $directory.$id;
    }
}

我也试过添加->setNodeModulePath("/public_html/node_modules/")

这是我得到的错误:

    (1/1) ProcessFailedException
The command "PATH=$PATH:/usr/local/bin NODE_PATH='/public_html/node_modules/' node 
'/home/XXXX/public_html/vendor/spatie/browsershot/src/../bin/browser.js' 
'{"url":"http:\/\/xxxxxxx.net","action":"screenshot","options": 
{"type":"png","path":"screenshots\/09\/5d7e151bf330c.jpeg","args":["--no-sandbox"],"viewport": 
{"width":1920,"height":1080},"ignoreHttpsErrors":true}}'" failed.

Exit Code: 127(Command not found)

Working directory: /home/XXXXX/public_html/public

Output:
================


Error Output:
================
sh: node: command not found

我假设它与 npm 位置或 node_modules 位置有关。

在手册中看到了这一部分

Browsershot::html('Foo')
->setNodeBinary('/usr/local/bin/node')
->setNpmBinary('/usr/local/bin/npm');

但我真的不明白如何在我的情况下使用它。

任何帮助将不胜感激。

谢谢!

4

0 回答 0