From: Bob D. <bd...@si...> - 2003-11-05 13:57:50
|
Hey, You always send in the hard requests ;) Could you either 1) give me a mysql example w/ php code and a sample xml file or 2) run it manually from a command line php whatever.php it will crash & create a core or core.xxxxx then run it through gdb like: gdb /usr/bin/php core or gdb /usr/bin/php core.xxxxxx then hit enter a bunch of times as it resolves all the damn php symbols then type: bt and send me the stack trace thanks - Bob On Wed, 2003-11-05 at 07:49, Everton Luis Berz wrote: > Hi, > My xml files are writen using ISO-8859-1 encoding. > Rlib does not show report correctly.. > Example one: > <?xml version="1.0"?> > <!DOCTYPE report > > <Report fontSize="9" orientation="landscape"> > <ReportHeader> > </ReportHeader> > > <PageHeader> > <Output> > <Line fontSize="11"> > <text>Testing ISO8859: çãá[{éú</text> > ... > > rlib output is: > xmlParseError > ** NUTS.. WE CRASHED > Sair (core dumped) > > Example two: > I have changed line 1 to > <?xml version="1.0" encoding="ISO-8859-1"?> > > rlib output is: > > Testing ISO8859: çãá[{éú > ... > |