Forum Moderators: coopster
I just recently upgraded my computer's RAM to 1.25 GB but it doesn't seem to fix the problem (but did seem to help somewhat). I have no background programs running except the basics and Apache & MySQL too. Yet, it still won't open. I don't really have much money to upgrade my computer anymore at the moment. Is there anything that anyone could recommend to help? Thanks!
Keep coding!
Peace!
[edited by: CWebguy at 8:01 pm (utc) on Oct. 30, 2007]
Warning: simplexml_load_file() [function.simplexml-load-file]: ....7770953: parser error : Memory allocation failed : xmlSAX2Characters ....on line 10
and a couple others. But like I said, it will do the smaller file which is in the same format so the script is not the problem. Is there anything else that can be done? Maybe a function in PHP or another setting that would work to open this large XML file and parse it?
Thanks!
<name>fred</name>
<email>fred@fred.com</email>
and you've split the data then theres a possibility that
<email>fred@fred.com</email>
will become
<email>fred@
then in the next file
fred.com</email>
Which is fine if you're going to join the two back together again, but with a 700mb file you're far better to deal with each individual file and whack it in a database rather than rebuild the xml file and try and work with that.