php - simplexml warnings and errors -
i having trouble php scripts parse xml files. these scripts have been running without error months, , crashing of sudden today. no changes made code or environment. relatively new php, appreciated.
here's errors seeing:
warning: simplexml_load_file() [function.simplexml-load-file]: c:/server/public_html/dev/temp.xml:1: parser error : opening , ending tag mismatch: hr line 1 , body in c:\server\public_html\dev\index.php on line 31 warning: simplexml_load_file() [function.simplexml-load-file]: led).</u></p><hr size="1" noshade="noshade"><h3>apache tomcat/6.0.32</h3></body> in c:\server\public_html\dev\index.php on line 31 warning: simplexml_load_file() [function.simplexml-load-file]: ^ in c:\server\public_html\dev\index.php on line 31 warning: simplexml_load_file() [function.simplexml-load-file]: c:/server/public_html/dev/temp.xml:1: parser error : opening , ending tag mismatch: hr line 1 , html in c:\server\public_html\dev\index.php on line 31 warning: simplexml_load_file() [function.simplexml-load-file]: u></p><hr size="1" noshade="noshade"><h3>apache tomcat/6.0.32</h3></body></html> in c:\server\public_html\dev\index.php on line 31 warning: simplexml_load_file() [function.simplexml-load-file]: ^ in c:\server\public_html\dev\index.php on line 31 warning: simplexml_load_file() [function.simplexml-load-file]: c:/server/public_html/dev/temp.xml:1: parser error : premature end of data in tag body line 1 in c:\server\public_html\dev\index.php on line 31 warning: simplexml_load_file() [function.simplexml-load-file]: u></p><hr size="1" noshade="noshade"><h3>apache tomcat/6.0.32</h3></body></html> in c:\server\public_html\dev\index.php on line 31 warning: simplexml_load_file() [function.simplexml-load-file]: ^ in c:\server\public_html\dev\index.php on line 31 warning: simplexml_load_file() [function.simplexml-load-file]: c:/server/public_html/dev/temp.xml:1: parser error : premature end of data in tag html line 1 in c:\server\public_html\dev\index.php on line 31 warning: simplexml_load_file() [function.simplexml-load-file]: u></p><hr size="1" noshade="noshade"><h3>apache tomcat/6.0.32</h3></body></html> in c:\server\public_html\dev\index.php on line 31 warning: simplexml_load_file() [function.simplexml-load-file]: ^ in c:\server\public_html\dev\index.php on line 31 warning: invalid argument supplied foreach() in c:\server\public_html\dev\index.php on line 35
it looks me "xml" you're processing error page, in html, returned server trying fetch xml from.
try opening url passing simplexml_load_file()
in browser, or dumping out result of file_get_contents($your_url_here)
see error message says.
Comments
Post a Comment