Posted by bmichel on 01/18/07 14:47
I tried modifying the value of the max_execution_time in my php.ini.
I also tried the set_time_limit() function.
Both ways no success...
I'm sure the script is not getting stuck somewhere, because I manually
divided the XML file into several files. And then, I ran the script for
each of those files and it worked.
David Gillen wrote:
> bmichel@gmail.com said:
> > Hey,
> >
> > What I'm doing is the following:
> > - Load XML data a file
> > - Parsing the XML data
> > - Printing some parsed content
> >
> > The problem is that the script execution is stopping before all the
> > content is parsed and printed.
> > Maybe the PHP is out of memory after a while. That would make sense
> > since the XML file is about 2 MB.
> >
> > Someone has any ideas how I can solve this problem?
> >
> Check the max_execution_time in your php.ini
> You can override it with set_time_limit(), http://www.php.net/set_time_limit
> That'll allow your script to run for longer, test on a smaller file to ensure
> your script isn't getting stuck in a loop somewhere and is doing what it
> should.
>
> D
> --
[Back to original message]
|