While generating PDF for invoice error will display given below
FPDF error: Some data has already been output, can't send PDF file
Here is the solution:
Go to [tools] folder - > Open [fpdf] folder - Open fpdf.php file
Line no:992
function Output($name='', $dest='')
{
ob_clean();
---------------------------------------------------------------------------------------------
Spanish translation:
Problema con error al pinchar sobre el enlace a la factura en PDF:
FPDF error: Error en prestahop 1.4.x al pinchar sobre una factura que no se genera y aparece el error: "FPDF error: Some data has already been output, cannot send PDF file"
He aquí la solución:
En el servidor de ficheros (por FTP), ir a la carpetas [sitioweb]\tools\fpdf\ y abrir el fichero fpdf.php
En la línea número 992 (al menos es ese numero de línea en v.1.4.7.3), justo debajo de donde dice
function Output($name='', $dest=''){SE AÑADE ESTA NUEVA LÍNEAob_clean(); Esta función descarta el contenido del buffer de salida.
Debe quedar así:
function Output($name='', $dest=''){ob_clean();
------------------------------------------------------------------------------------------------------------
Put ob_clean(); This function discards the contents of the output buffer.