2011-11-21 3 views
0

여러 개의 보고서를 생성하는 스크립트가 있습니다. 각 보고서는 DOMPDF를 사용하여 pdf로 변환되었습니다. 보고서의 크기와 유형은 다양하지만 일반적으로 이미지, 표 및 스타일이 지정된 텍스트가 혼합되어 있습니다. 나는 검증을 통해 DOMPDF에 입력되는 HTML을 실행DOMPDF에서 오류 "foo"받기

Exception information: 
Message: foo 
Stack trace: 
#0 library/dompdf/include/table_row_frame_reflower.cls.php(83): Cellmap->get_frame_height(Object(Table_Row_Frame_Decorator)) 
#1 library/dompdf/include/frame_decorator.cls.php(477): Table_Row_Frame_Reflower->reflow(NULL) 
#2 library/dompdf/include/table_frame_reflower.cls.php(481): Frame_Decorator->reflow() 
#3 library/dompdf/include/frame_decorator.cls.php(477): Table_Frame_Reflower->reflow(Object(Block_Frame_Decorator)) 
#4 library/dompdf/include/block_frame_reflower.cls.php(706): Frame_Decorator->reflow(Object(Block_Frame_Decorator)) 
#5 library/dompdf/include/frame_decorator.cls.php(477): Block_Frame_Reflower->reflow(Object(Block_Frame_Decorator)) 
#6 library/dompdf/include/inline_frame_reflower.cls.php(96): Frame_Decorator->reflow(Object(Block_Frame_Decorator)) 
#7 library/dompdf/include/frame_decorator.cls.php(477): Inline_Frame_Reflower->reflow(Object(Block_Frame_Decorator)) 
#8 library/dompdf/include/block_frame_reflower.cls.php(706): Frame_Decorator->reflow(Object(Block_Frame_Decorator)) 
#9 library/dompdf/include/frame_decorator.cls.php(477): Block_Frame_Reflower->reflow(Object(Block_Frame_Decorator)) 
#10 library/dompdf/include/block_frame_reflower.cls.php(706): Frame_Decorator->reflow(Object(Block_Frame_Decorator)) 
#11 library/dompdf/include/frame_decorator.cls.php(477): Block_Frame_Reflower->reflow(Object(Block_Frame_Decorator)) 
#12 library/dompdf/include/block_frame_reflower.cls.php(706): Frame_Decorator->reflow(Object(Block_Frame_Decorator)) 
#13 library/dompdf/include/frame_decorator.cls.php(477): Block_Frame_Reflower->reflow(NULL) 
#14 library/dompdf/include/page_frame_reflower.cls.php(169): Frame_Decorator->reflow() 
#15 library/dompdf/include/frame_decorator.cls.php(477): Page_Frame_Reflower->reflow(NULL) 
#16 library/dompdf/include/dompdf.cls.php(680): Frame_Decorator->reflow() 
#17 application/controllers/NetworthController.php(332): DOMPDF->render() 
#18 library/ZendFramework-1.11.0/ZendFramework-1.11.0/library/Zend/Controller/Action.php(513): NetworthController->reportAction() 
#19 library/ZendFramework-1.11.0/ZendFramework-1.11.0/library/Zend/Controller/Dispatcher/Standard.php(295): Zend_Controller_Action->dispatch('reportAction') 
#20 library/ZendFramework-1.11.0/ZendFramework-1.11.0/library/Zend/Controller/Front.php(954): Zend_Controller_Dispatcher_Standard->dispatch(Object(Zend_Controller_Request_Http), Object(Zend_Controller_Response_Http)) 
#21 library/ZendFramework-1.11.0/ZendFramework-1.11.0/library/Zend/Application/Bootstrap/Bootstrap.php(97): Zend_Controller_Front->dispatch() 
#22 library/ZendFramework-1.11.0/ZendFramework-1.11.0/library/Zend/Application.php(366): Zend_Application_Bootstrap_Bootstrap->run() 
#23 index.php(150): Zend_Application->run() 
#24 {main} 

및 오류 또는 경고가 없었다 : I 변환하려고했던 나의 최근 보고서에

, 나는 아래의 오류가 발생했습니다. 보고서에는 여러 개의 표가 있지만 모든 표는 여러 페이지로 분할되지 않습니다 (가장 긴 표는 페이지의 1/3 정도입니다). 잘못된 HTML 이외에 무엇이 원인이 될지 잘 모르겠습니다.이 오류를 검색하면 잠재적 인 원인으로 표시됩니다.

제안 사항?

답변