Closed
Description
I tested with following code:
<?php
ini_set('display_errors', 1);
error_reporting(E_ALL);
require_once __DIR__.'/vendor/autoload.php';
use mikehaertl\wkhtmlto\Pdf;
$pdf = new Pdf('<html><head></head><body>Hello pdf</body></html>');
$pdf->binary = '/usr/local/bin/wkhtmltopdf';
if (!$pdf->saveAs('/var/www/cgi-bin/pdf/test.pdf')) {
echo $pdf->getError();
}
?>
The Page only displays: "Loading pages (1/6) [> ] 0% [======> ] 10%"
My Testserver:
[root@dev-php-composer pdf]# apachectl -v
Server version: Apache/2.2.15 (Unix)
Server built: Aug 24 2015 17:52:49
[root@dev-php-composer pdf]# php -v
PHP 5.3.3 (cli) (built: Jul 9 2015 17:39:00)
Copyright (c) 1997-2010 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2010 Zend Technologies
[root@dev-php-composer pdf]# uname -a
Linux dev-php-composer 2.6.32-504.1.3.el6.x86_64 #1 SMP Tue Nov 11 17:57:25 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux
/var/www/cgi-bin/pdf/ has this linux rights drwxr-xr-x and user apache
Any Tips to get it working?
Metadata
Metadata
Assignees
Labels
No labels