Ask a Question related to PHP Bugs, Design and Development.
-
tony2001@php.net #1
#39909 [Opn->Bgs]: XML Parsing Error: xml declaration not at start of external entity
ID: 39909
Updated by: [email]tony2001@php.net[/email]
Reported By: timcbest at gmail dot com
-Status: Open
+Status: Bogus
Bug Type: DOM XML related
Operating System: FreeBSD
PHP Version: 5.2.0
New Comment:
Sorry, but your problem does not imply a bug in PHP itself. For a
list of more appropriate places to ask for help using PHP, please
visit [url]http://www.php.net/support.php[/url] as this bug system is not the
appropriate forum for asking support questions. Due to the volume
of reports we can not explain in detail here why your report is not
a bug. The support channels will be able to provide an explanation
for you.
Thank you for your interest in PHP.
Previous Comments:
------------------------------------------------------------------------
[2006-12-20 19:27:13] timcbest at gmail dot com
Description:
------------
When generating XML from DOMDocument I get this error:
Error:
XML Parsing Error: xml declaration not at start of external
entity
Location: [url]http://test.mysite.com/getcounty.php?state=MS[/url]
Line Number 1, Column 2: <?xml version="1.0" encoding="UTF-8"?-^>
Reproduce code:
---------------
function formulateResponse($info){
$dom = new DOMDocument('1.0', 'UTF-8');
$dom->formatOutput = true;
$root = $dom->createElement('response');
$root = $dom->appendChild($root);
foreach($info as $index => $county_array){
$county = $dom->createElement('county');
$county = $root->appendChild($county);
$name = $dom->createTextNode($county_array['county']);
$name = $county->appendChild($name);
}
header('Content-Type: text/xml');
echo $dom->saveXML();
}
Expected result:
----------------
I expect the browser to be able to parse the XML below.
This is the XML generated by the above function. Whether I
call it from an Ajax call or directly in the browser
(Firefox 1.5.0.8 or Safari 2.0.4) the error is generated as
specified in the description box above.
<?xml version="1.0" encoding="UTF-8"?>
<response>
<county>Adams</county>
<county>Alcorn</county>
<county>Amite</county>
<county>Attala</county>
<county>Benton</county>
<county>Bolivar</county>
<county>Calhoun</county>
<county>Carroll</county>
<county>Chickasaw</county>
<county>Choctaw</county>
<county>Claiborne</county>
<county>Clarke</county>
<county>Clay</county>
<county>Coahoma</county>
<county>Copiah</county>
<county>Covington</county>
<county>De Soto</county>
<county>Forrest</county>
<county>Franklin</county>
<county>George</county>
<county>Greene</county>
<county>Grenada</county>
<county>Hancock</county>
<county>Harrison</county>
<county>Hinds</county>
<county>Holmes</county>
<county>Humphreys</county>
<county>Issaquena</county>
<county>Itawamba</county>
<county>Jackson</county>
<county>Jasper</county>
<county>Jefferson</county>
<county>Jefferson Davis</county>
<county>Jones</county>
<county>Kemper</county>
<county>Lafayette</county>
<county>Lamar</county>
<county>Lauderdale</county>
<county>Lawrence</county>
<county>Leake</county>
<county>Lee</county>
<county>Leflore</county>
<county>Lincoln</county>
<county>Lowndes</county>
<county>Madison</county>
<county>Marion</county>
<county>Marshall</county>
<county>Monroe</county>
<county>Montgomery</county>
<county>Neshoba</county>
<county>Newton</county>
<county>Noxubee</county>
<county>Oktibbeha</county>
<county>Panola</county>
<county>Pearl River</county>
<county>Perry</county>
<county>Pike</county>
<county>Pontotoc</county>
<county>Prentiss</county>
<county>Quitman</county>
<county>Rankin</county>
<county>Scott</county>
<county>Sharkey</county>
<county>Simpson</county>
<county>Smith</county>
<county>Stone</county>
<county>Sunflower</county>
<county>Tallahatchie</county>
<county>Tate</county>
<county>Tippah</county>
<county>Tishomingo</county>
<county>Tunica</county>
<county>Union</county>
<county>Walthall</county>
<county>Warren</county>
<county>Washington</county>
<county>Wayne</county>
<county>Webster</county>
<county>Wilkinson</county>
<county>Winston</county>
<county>Yalobusha</county>
<county>Yazoo</county>
<county>Statewide</county>
</response>
Actual result:
--------------
Error:
XML Parsing Error: xml declaration not at start of external
entity
Location: [url]http://test.mysite.com/getcounty.php?state=MS[/url]
Line Number 1, Column 2: <?xml version="1.0" encoding="UTF-8"?-^>
------------------------------------------------------------------------
--
Edit this bug report at [url]http://bugs.php.net/?id=39909&edit=1[/url]
tony2001@php.net Guest
-
#39909 [NEW]: XML Parsing Error: xml declaration not at start of external entity
From: timcbest at gmail dot com Operating system: FreeBSD PHP version: 5.2.0 PHP Bug Type: DOM XML related Bug description: ... -
Http error 413 Request entity too large
I have a webservice under IIS6/Win2003 Server. When I try to invoke a method that have a strong type dataset as parameter for update in database I... -
Http error 413->request entity too large
I have a webservice under IIS6/Win2003 Server. When I try to invoke a method that have a strong type dataset as parameter for update in database I... -
[BUG] REXML 2.7.1 External Entity Parsing
--GcuyunM1iFaMYZNm Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi... -
Type Declaration Error
I am trying to insert an "after update" function that will multiply some fields together and output the results to another field. I currently use... -
Unregistered #2
Re: #39909 [Opn->Bgs]: XML Parsing Error: xml declaration not at start of external en
The blank lines in the feed is creating issues. But how that blank lines got introduced into the RSS XML Feed? There are many reasons. If your client is using PHP based application to generate the feed then this could help you..
. Read the globinch.com article on this. That really helped me
http://www.globinch.com/2010/09/15/wordpress-rss-feed-xml-parsing-error/Unregistered Guest



Reply With Quote

