Re: Creating PDF with cakePHP and TCPDF

2014-09-29 Thread Kyle Rebstock
I would like to ask to clarify my understanding of the topic of these postings. "Generated pdf" meaning to convert files into a pdf or just making a file view-able and downloadable as a PDF? On Saturday, September 27, 2014 12:46:05 AM UTC-5, Dakota wrote: > > I would highly recommend using the C

Re: Creating PDF with cakePHP and TCPDF

2014-09-26 Thread Dakota
I would highly recommend using the Cake PDF plugin from Friends of Cake. It makes PDF generation very easy. You can get It from https://github.com/friendsofcake/cakepdf -- Like Us on FaceBook https://www.facebook.com/CakePHP Find us on Twitter http://twitter.com/CakePHP --- You received this

Re: Creating PDF with cakePHP and TCPDF

2014-09-26 Thread Sudhir Pandey
Hi , I have follow the same steps , PDF are downloaded but have one problem , it shows blank content i.e no content. On Thursday, 13 November 2008 17:24:03 UTC+5:30, draikin wrote: > > After 2 week of unsuccessful testing i hope to get some help here by > the community. I tried the tutorial (ht

Re: Creating PDF with cakePHP and TCPDF -> solved

2009-01-04 Thread php.on....@gmail.com
can u describe the process of TCPDF i am unable to use --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe from this group, se

Re: Creating PDF with cakePHP and TCPDF -> solved

2008-11-13 Thread draikin
I solved the problem. The memory_limit in php.ini of my local testserver was only 8MB. I increase it to 32MB and it works. draikin draikin wrote: > Thank you for your hint. I tried your suggestion. Unfortunately > there's no difference in the output i see. Anymore i see a really > blank page. No

Re: Creating PDF with cakePHP and TCPDF

2008-11-13 Thread draikin
Thank you for your hint. I tried your suggestion. Unfortunately there's no difference in the output i see. Anymore i see a really blank page. No error or any other response. The answer from the server is not even a html page. So i comment the following line of the controller example, to see what

Re: Creating PDF with cakePHP and TCPDF

2008-11-13 Thread Marcelius
Have you tried to check if tcpdf generated errors? Sometimes if you send headers, and (php)errors occure, you might not always see some output. So echo something in your controller and then php should at leas tell you 'headers allready sent' error. Before that, (php)errors will show Also, in the

Creating PDF with cakePHP and TCPDF

2008-11-13 Thread draikin
After 2 week of unsuccessful testing i hope to get some help here by the community. I tried the tutorial (http://bakery.cakephp.org/ articles/view/creating-pdf-files-with-cakephp-and-tcpdf) from the bakery to create PDF files from my cakePHP application. At the first try i took the example code f