Skip to content

ERROR - Fatal: No such file or directory; did you install phantomjs? #54

Description

@alexanderpavlovru

When I run the script in console php index.php it works well.
But if I run it via browser http://localhost/ or via curl in console curl localhost it gives me an error
ERROR - Fatal: No such file or directory; did you install phantomjs?

My nginx config is simple

server {
    listen 0.0.0.0:80;

    root /var/www/html;

    location / {
        index index.php index.html;
    }

    location ~ \.php$ {
        include fastcgi_params;
        fastcgi_pass unix:/run/php/php7.0-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
    }
}

phantomjs and casperjs are installed

ls -la /usr/local/bin
casperjs -> ../lib/node_modules/casperjs/bin/casperjs
phantomjs -> /usr/local/share/phantomjs-2.1.1-linux-x86_64/bin/phantomjs

It is all in docker container.

Any ideas?

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions