![]() |
Cant get ufpdf to work - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: Cant get ufpdf to work (/showthread.php?tid=7469) |
Cant get ufpdf to work - El Forum - 04-10-2008 [eluser]bjora857[/eluser] following the guide in fpdf library I was able to create a pdf using this code: Code: define('FPDF_FONTPATH',$this->config->item('fonts_path')); But there are no support for swedish letters: å ä ö. So i downloaded ufpdf, I put the updfp.php in the library folder next to fpdf.php Then I tried this code: Code: define('FPDF_FONTPATH',$this->config->item('fonts_path')); But it gives me lots of errors and no pdf... A PHP Error was encountered Severity: Notice Message: Undefined offset: 70 Filename: libraries/ufpdf.php Line Number: 41 . . . Severity: Warning Message: Cannot modify header information - headers already sent by (output started at /hsphere/local/home/franke/canvasfabriken.se/canvas0.1_system/libraries/Exceptions.php:164) Filename: libraries/fpdf.php Line Number: 1037 What shall I do? |