我正在使用TCPDF在SmartJobBoard中工作。PDF已在旧服务器上正确生成。
将站点移至新服务器后,它在创建PDF发票时开始显示错误。TCPDF库显示以下错误。
Notice: Undefined index: cols in /home/pb_admin/public_html/pb/system/ext/tcpdf/tcpdf.php on line 22174
Notice: Undefined index: thead in /home/pb_admin/public_html/pb/system/ext/tcpdf/tcpdf.php on line 21705
Notice: Undefined index: rows in /home/pb_admin/public_html/pb/system/ext/tcpdf/tcpdf.php on line 22162
Warning: array_push() expects parameter 1 to be array, null given in /home/pb_admin/public_html/pb/system/ext/tcpdf/tcpdf.php on line 22164
Warning: array_push() expects parameter 1 to be array, null given in /home/pb_admin/public_html/pb/system/ext/tcpdf/tcpdf.php on line 22164
Warning: array_push() expects parameter 1 to be array, null given in /home/pb_admin/public_html/pb/system/ext/tcpdf/tcpdf.php on line 22164
Notice: Undefined index: thead in /home/pb_admin/public_html/pb/system/ext/tcpdf/tcpdf.php on line 21718
Exception Object
(
[message:protected] => PDF generation failed: Some data has already been output, can't send PDF file
[string:Exception:private] =>
[code:protected] => 0
[file:protected] => /home/pb_admin/public_html/pb/system/ext/tcpdf/tcpdf.php
[line:protected] => 29841
[trace:Exception:private] => Array
(
[0] => Array
(
[file] => /home/pb_admin/public_html/pb/system/ext/tcpdf/tcpdf.php
[line] => 9062
[function] => Error
[class] => ExceptionThrowingTCPDF
[type] => ->
[args] => Array
(
[0] => Some data has already been output, can't send PDF file
)
)
[1] => Array
(
[file] => /home/pb_admin/public_html/pb/system/lib/payment/Invoices/InvoiceManager.php
[line] => 141
[function] => Output
[class] => TCPDF
[type] => ->
[args] => Array
(
[0] => invoice_3284.pdf
[1] => D
)
)
[2] => Array
(
[file] => /home/pb_admin/public_html/pb/system/user-scripts/payment/view_invoice.php
[line] => 55
[function] => generatePDFVersion
[class] => SJB_InvoiceManager
[type] => ::
[args] => Array
(
[0] =>
Rechnung
Datum: 01.10.2014
Rechnung #3284
Status der Rechnung: In Bearbeitung (Zahlung auf Rechnung (Abonnement wird freigeschalten, sobald Zahlungseingang erfolgt ist.))
Rechnungsempfänger
Zahlungsempfänger
Ocean Harvest GmbH
Ruessenstrasse 18
6340 Baar
Konto:
Bank: UBS AG, Zug
IBAN: CH81 0027 3273 1186 8701 T
Beschreibung Betrag
PlacementBooster.ch
Firmen-Abonnement: 12 Monate
50 Mitarbeiter (51 Accounts) CHF 13,808.00
Zwischensumme CHF 13,808.00
MWST-Nr. CHE-108.643.082 MWST MWST Ref.-Nr. 417985 CHF 1,104.64
Insgesamt CHF 14,912.64
[1] => 3284
)
)
[3] => Array
(
[file] => /home/pb_admin/public_html/pb/system/core/ModuleManager.php
[line] => 127
[function] => execute
[class] => SJB_Payment_ViewInvoice
[type] => ->
[args] => Array
(
)
)
[4] => Array
(
[file] => /home/pb_admin/public_html/pb/system/core/System.php
[line] => 140
[function] => executeFunction
[class] => SJB_ModuleManager
[type] => ->
[args] => Array
(
[0] => payment
[1] => view_invoice
[2] =>
[3] => /view-invoice/
)
)
[5] => Array
(
[file] => /home/pb_admin/public_html/pb/system/core/PageConstructor.php
[line] => 29
[function] => executeFunction
[class] => SJB_System
[type] => ::
[args] => Array
(
[0] => payment
[1] => view_invoice
[2] =>
[3] => /view-invoice/
)
)
[6] => Array
(
[file] => /home/pb_admin/public_html/pb/system/core/System.php
[line] => 193
[function] => getPage
[class] => SJB_PageConstructor
[type] => ::
[args] => Array
(
[0] => SJB_UserPageConfig Object
(
[uri] => /view-invoice/
[module] => payment
[function] => view_invoice
[template] =>
[title] => View Invoice
[parameters] =>
[keywords] =>
[page_exists] => 1
[page_id] => 539
[has_raw_output] =>
[numberOfViews] =>
[description] =>
)
)
)
[7] => Array
(
[file] => /home/pb_admin/public_html/pb/system/core/Request.php
[line] => 209
[function] => getPage
[class] => SJB_System
[type] => ::
[args] => Array
(
[0] => SJB_UserPageConfig Object
(
[uri] => /view-invoice/
[module] => payment
[function] => view_invoice
[template] =>
[title] => View Invoice
[parameters] =>
[keywords] =>
[page_exists] => 1
[page_id] => 539
[has_raw_output] =>
[numberOfViews] =>
[description] =>
)
)
)
[8] => Array
(
[file] => /home/pb_admin/public_html/pb/index.php
[line] => 72
[function] => execute
[class] => SJB_Request
[type] => ->
[args] => Array
(
)
)
)
[previous:Exception:private] =>
)
Run Code Online (Sandbox Code Playgroud)
为什么会发生此错误?
尝试插入...
//Change To Avoid the PDF Error
ob_end_clean();
Run Code Online (Sandbox Code Playgroud)
如果这不起作用,请尝试使用ob_clean();。代替。
在您这样做之前:
$pdf->Output($filename, $output_dest);
Run Code Online (Sandbox Code Playgroud)
发生此错误是因为TCPDF在最终渲染完成之前引发了错误。为了防止TCPDF创建无效的PDF,它决定崩溃。
以防万一TCPDF不再喜欢您,请查看DomPDF :)
TCPDF需要100%有效的XHTML语法
即使“ HTML Tidy”也不会向您显示所有html错误。就我而言,我的tr标签没有关闭,纠正后,警告消失了,但是pdf文件很丑。这个问题是通过改变,例如,解决了colspan=12通过colspan=”12”和rowspan=2通过rowspan=”2”。
| 归档时间: |
|
| 查看次数: |
15859 次 |
| 最近记录: |