Error en exportado a excel

Necesito ayuda, porque cuando exporto la grilla a excel, me genera el archivo de error que adjunto.

Tengo PHP 5.3.5
Apache 2.0
Linux OPEN SUSE 11.4
error_report_2011_12_26__16_38_44.xml.tar.gz (2.02 KB)

Hi.
Try to modify your generate.php file like here:

.....
if (get_magic_quotes_gpc()) {
	$xmlString = stripslashes($_POST['grid_xml']);
} else {
	$xmlString = $_POST['grid_xml'];
}
$xmlString = urldecode($xmlString);
if ($debug == true) {
	error_log($xmlString, 3, 'debug_'.date("Y_m_d__H_i_s").'.xml');
}

$xml = simplexml_load_string($xmlString);
$excel = new gridExcelGenerator();
$excel->printGrid($xml);
.....

Make sure that in your generate.php file presents urldecode call.

Muchas gracias, lo intentaré y te comentaré.