What to code in php to solve this error

6 replies
This XML file does not appear to have any style information associated with it. The document tree is shown below." why this error in Google chrome when i run my php project. What to code in php to solve this error?
#code #error #php #solve
  • Profile picture of the author Workman
    That's not really an error... It sounds like it's simply displaying an XML document.

    It would help if you shared the url you're working on or at least some additional details about your site.
    {{ DiscussionBoard.errors[4432497].message }}
  • Profile picture of the author mywebwork
    Yes, a URL and some information about your project and what it is you are trying to accomplish would be helpful! The error message itself is pretty self-explanatory.

    Bill
    {{ DiscussionBoard.errors[4432664].message }}
  • Profile picture of the author productsmith
    Thats just a warning
    {{ DiscussionBoard.errors[4451104].message }}
  • Profile picture of the author ussher
    What everone is saying is probably right. If its an XML document then its probably not ment to be viewed, XML is for sending data in a structured manner.

    But incase you DID want the data to be viewed, attach a stylesheet:
    Associating Style Sheets with XML documents 1.0 (Second Edition)

    Normally you would pickup the XML data and put it where it needed to go, say into a database or process it so that you had control over what data you actually want to show before spitting it back out to the end user.
    Signature

    "Jamroom is a Profile Centric CMS system suitable as a development framework for building entire communities. Highly modular in concept. Suitable for enterprise level development teams or solo freelancers."

    - jamroom.net
    Download Jamroom free: Download
    {{ DiscussionBoard.errors[4475778].message }}
  • Profile picture of the author munirz
    ohh really..now i know thanx
    {{ DiscussionBoard.errors[4477084].message }}
  • Profile picture of the author GetFeeDomainName
    if that's a page that should render as webpage, then you are likely sending 'text/xml' or 'application/x-html+xml' Content-Type header.
    in that case, try to add
    PHP Code:
    header('Content-Type: text/html'); 
    just before the output.
    (if it works afterwards, change your default httpd settings.)

    if you are serving a plain XML, then the document string as shown is what you should expect.
    Signature
    {{ DiscussionBoard.errors[4480261].message }}

Trending Topics