Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,22 @@ The binary will then be located at:
Also a symlink will be created in your configured bin/ folder, for example:

vendor/bin/wkhtmltopdf-i386

### Vagrant users

If you have the error "126" you have to copy the binary file outside the sync directory.

```bash
cp vendor/h4cc/wkhtmltopdf-amd64/bin/wkhtmltopdf-amd64 /opt/
chmod +x /opt/wkhtmltopdf-amd64
```

You have to reconfigure your application or just create a symlink

```bash
rm vendor/h4cc/wkhtmltopdf-amd64/bin/wkhtmltopdf-amd64
ln -s /opt/wkhtmltopdf-amd64 vendor/h4cc/wkhtmltopdf-amd64/bin/wkhtmltopdf-amd64
```

### Usage

Expand Down