PDFMerger icon indicating copy to clipboard operation
PDFMerger copied to clipboard

PDFMerger compatible with PHP5 for laravel

Results 15 PDFMerger issues
Sort by recently updated
recently updated
newest added

Sometimes we have the following message : `Unable to find "startxref" keyword. at /var/www/vendor/rguedes/pdfmerger/Classes/fpdi/pdf_parser.php:287` Any idea why ?

The setting magic_quotes_runtime is removed in PHP5.4.0 (see: https://www.php.net/manual/en/info.configuration.php#ini.magic-quotes-runtime) so the function call is unneeded. Added backwards compatibility by wrapping the calls in an if statement checking phpversion using version_compare....

I'm try to use PDFMerge with symfony5.2 (composer require rguedes/pdfmerger) The folowing error append : Trying to access array offset on value of type bool in vendor/rguedes/pdfmerger/Classes/fpdi/fpdi_pdf_parser.php (line 308) in...

This update allows using package with php 7.4+ because FPDF 1.81 has deprecated functions

Using on Lumen 6.0 ´´´php $pdfMerger = new \PDFMerger; $pdfMerger->addPDF(storage_path('pdf.pdf'), 'all'); $pdfMerger->merge('browser'); ´´´ Causes Error: Trying to access array offset on value of type bool PHP in Browser 7.4 What...

ErrorException Function get_magic_quotes_runtime() is deprecated in Lavavel 7 and php 7.4

On live server this package is giving error ``` in /var/www/html/coldxlogistics/vendor/rguedes/pdfmerger/Classes/fpdi/pdf_parser.php:675 ``` itwork for some pdf but for most it is not working as expectations

Retrieve pending merge file list, to able to perform check before merge() and avoid exception("No PDFs to merge.")

Fix Function get_magic_quotes_runtime() is deprecated on PHP 7.4

probably uses a compression technique which is not supported by the free parser shipped with FPDI. It works with some PDF but most of the PDF will throw the error...