php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #19339 not use XML
Submitted: 2002-09-10 11:40 UTC Modified: 2002-09-10 16:10 UTC
From: tsysir at yahoo dot com dot tw Assigned:
Status: Not a bug Package: *XML functions
PHP Version: 4.2.3 OS: Linux
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
40 + 41 = ?
Subscribe to this entry?

 
 [2002-09-10 11:40 UTC] tsysir at yahoo dot com dot tw
I use php 4.2.3 at apache 1.3.26
xml functions out document is empty
I use php 4.2.2 at apache 1.3.26
xml functions is ok
why??

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-09-10 11:52 UTC] derick@php.net
Not enough information was provided for us to be able
to handle this bug. Please re-read the instructions at
http://bugs.php.net/how-to-report.php

If you can provide more information, feel free to add it
to this bug and change the status back to "Open".

Thank you for your interest in PHP.

 [2002-09-10 13:46 UTC] tsysir at yahoo dot com dot tw
source code:
<?

header("Content-Type: text/xml");

    echo "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n\n";
    echo "<!DOCTYPE rss PUBLIC \"-//Netscape Communications//DTD RSS 0.91//EN\"\n";
    echo " \"http://my.netscape.com/publish/formats/rss-0.91.dtd\">\n\n";
    echo "<rss version=\"0.91\">\n\n";
    echo "<channel>\n";
	
    echo "<title>Test Title</title>\n";
    echo "<link>http://test.link</link>\n";
    echo "<description>test description</description>\n";
    echo "<language>en-us</language>\n\n";
	
	echo "<item>\n";
	echo "<title>Test Title</title>\n";
	echo "<link>http://test.link</link>\n";
	echo "</item>\n\n";

    echo "</channel>\n";
    echo "</rss>\n";

?>

if use php 4.2.3 is not run, php 4.2.2 is ok
 [2002-09-10 13:53 UTC] tsysir at yahoo dot com dot tw
I use Red Hat Linux 7.2 kernel 2.4.19

PHP Version 4.2.3
xml
XML Support active 
XML Namespace Support active 
EXPAT Version 1.95.2
 [2002-09-10 15:30 UTC] kalowsky@php.net
User feedback marking open
 [2002-09-10 16:10 UTC] kalowsky@php.net
After re-looking at this marking as bogus again.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 18 23:01:27 2024 UTC