Forum


Replies: 3   Views: 2986
Embedded fpdi conflicts
Topic closed:
Please note this is an old forum thread. Information in this post may be out-to-date and/or erroneous.
Every phpdocx version includes new features and improvements. Previously unsupported features may have been added to newer releases, or past issues may have been corrected.
We encourage you to download the current phpdocx version and check the Documentation available.

Posted by Edics  · 09-11-2016 - 13:42

Thank you for your support.

Actually, i found out how to fix this problem without having to change embedded library.

     $pdf = new FPDI();
        $pdf->setPrintHeader(false);
        $pdf->setPrintFooter(false);

Turns out that in your version, those two parameters are set to 'TRUE' by default. So i just had to switch them.

Regards