Advertisement

11.22.2007 at 12:03AM PST, ID: 22977059
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.4

XML Parsing Error: xml declaration not at start of external entity

Asked by ellandrd in Extensible Markup Language (XML), PHP Scripting Language

Tags: , , , ,

im building my own trackback class for my personal blog.

when i try calling my trackback URL like this: http://localhost/my-blog/this-is-a-test-entry/trackback/  i get the following error:

XML Parsing Error: xml declaration not at start of external entity
Location: http://localhost/my-blog/this-is-a-test-entry/trackback/
Line Number 1, Column 2: <?xml version="1.0" encoding="UTF-8"?>
-^

when i look at the source code, i dont have any whitespaces.  i have checked every line of my code over and over again incase i missed one hiding...

i searched on the web and read that a 8-bit character can be inserted infront of the XML declaration tag but i dont know how it could have?

if i create another example like below it works fine...

<?php
function test()
{
      $xmlWrite = '';
      $xmlWrite .= "<?xml version=\"1.0\" encoding=\"utf-8\" ?>";
      $xmlWrite .= "<test>";
      $xmlWrite .= "<success>works fine...</success>";
      $xmlWrite .= "</test>";
      
      return $xmlWrite;
}

header("Content-type: text/xml");
echo test();
?>

please see my original code below.  I know most of this is PHP so ive included this question in the PHP zone too...Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
trackback.php - the page that is called when user requests http://domain.com/my-blog/some-blog-entry/trackback/ :
 
<?php
header("Content-type: text/xml");
 
$host = trim($_SERVER['HTTP_HOST']);
 
if(substr($host,0,4) == 'www.')
{	
	$host = substr($host,4);
}
 
$now = date('Y-m-d G:i:s');
$ip = trim($_SERVER['REMOTE_ADDR']);
$agent = trim($_SERVER['HTTP_USER_AGENT']);
$domain = 'http://www.'.trim($host).'/';
 
require_once('classes/class.trackback.php');
 
$trackback = new Trackback('','','UTF-8');
 
global $response, $comment;
 
$tb_id = trim($HTTP_GET_VARS['id']);
$tb_title = trim($HTTP_POST_VARS['title']);
$tb_blog_name = trim($HTTP_POST_VARS['blog_name']);
$tb_url = trim($HTTP_POST_VARS['url']);
$tb_content = substr($HTTP_POST_VARS['excerpt'],0,2000);
$permalink = $domain;
 
if($_SERVER['REQUEST_METHOD'] != 'POST')
{	
	$err_response = 'XML-RPC server accepts POST requests only.';
}
 
// do a few checks to see if trackback is spam or already in table etc etc
 
if($err_response)
{
	echo trim($trackback->recieve(false,$err_response));
}
else
{
	echo trim($trackback->recieve(true,''));
}
?>
 
class.trackback.php recieve function:
 
 function recieve($success = false, $err_response = "") 
 {
        if (!$success && empty($err_response))
		{
            $err_response = "An error occured while tring to log your trackback...";
        }
        
		$return = '<?xml version="1.0" encoding="utf-8"?>'."\n";
        $return .= '<response>'."\n";
        
		if ($success) 
		{
            $return .= '    <error>0</error>'."\n";
        } 
		else 
		{
            $return .= '    <error>1</error>'."\n";
            $return .= '    <message>'.$this->xml_safe($err_response).'</message>'."\n";
        }
		
        $return .= '</response>';
 
        return $return;
    }
 
Loading Advertisement...
 
[+][-]11.22.2007 at 02:52AM PST, ID: 20333673

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Extensible Markup Language (XML), PHP Scripting Language
Tags: start, declaration, external, entity, parsing
Sign Up Now!
Solution Provided By: nitinsawhney
Participating Experts: 1
Solution Grade: B
 
 
[+][-]11.22.2007 at 02:57AM PST, ID: 20333686

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20081112-EE-VQP-42 / EE_QW_EXPERT_20070906