[PHP-DEV] Bug #10936 Updated: DOMXML crash with CDATA

2001-12-01 Thread mfischer

ID: 10936
Updated by: mfischer
Reported By: [EMAIL PROTECTED]
Old Status: Assigned
Status: Closed
Bug Type: DOM XML related
Operating System: Win2K Pro
PHP Version: 4.0.5
Assigned To: mfischer
New Comment:

Should be fixed in CVS. Closing.

Previous Comments:


[2001-11-30 20:51:38] [EMAIL PROTECTED]

Update: Fix is coming, assigned to me.



[2001-11-21 19:39:01] [EMAIL PROTECTED]

Does this problem still exists with 4.0.6 from php.net?

Feedback.



[2001-05-17 18:31:59] [EMAIL PROTECTED]

Not in the binaries in 
http://www.php.net/do_download.php?download_file=php-4.0.5-Win32.zip&source_site=www.php.net.


The children property returns NULL in all cases. The children method works correctly 
unless one of the children is a CDATA node.

The source code in 
http://www.php.net/do_download.php?download_file=php-4.0.5.tar.gz&source_site=www.php.net
 shows children as a method and not as a property.



[2001-05-17 17:59:27] [EMAIL PROTECTED]

domxml has changed from children being a method to being a member. Try $children = 
$root->children



[2001-05-17 13:21:56] [EMAIL PROTECTED]

I am running the latest Win32 binaries from the php.net download page. I am using the 
ISAPI module on IIS5. In php.ini I enabled DOMXML by uncommenting the appropriate 
line.

Calling the children function on a node that has a CDATA node as a child results in an 
access violation. Here's a script that reproduces the problem:

$doc = xmldocfile('http://tbhbuilding.blogspot.com');
$root = $doc->root();
$children = $root->children();
$children = $children[1]->children();
print_r($children[1]->children());

I would have generated a gdb backtrace if the instructions for doing so explained how 
to do it with the ISAPI module.






Edit this bug report at http://bugs.php.net/?id=10936&edit=1


-- 
PHP Development Mailing List 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Bug #10936 Updated: DOMXML crash with CDATA

2001-11-30 Thread mfischer

ID: 10936
Updated by: mfischer
Reported By: [EMAIL PROTECTED]
Old Status: Feedback
Status: Assigned
Bug Type: DOM XML related
Operating System: Win2K Pro
PHP Version: 4.0.5
Old Assigned To: 
Assigned To: mfischer
New Comment:

Update: Fix is coming, assigned to me.

Previous Comments:


[2001-11-21 19:39:01] [EMAIL PROTECTED]

Does this problem still exists with 4.0.6 from php.net?

Feedback.



[2001-05-17 18:31:59] [EMAIL PROTECTED]

Not in the binaries in 
http://www.php.net/do_download.php?download_file=php-4.0.5-Win32.zip&source_site=www.php.net.


The children property returns NULL in all cases. The children method works correctly 
unless one of the children is a CDATA node.

The source code in 
http://www.php.net/do_download.php?download_file=php-4.0.5.tar.gz&source_site=www.php.net
 shows children as a method and not as a property.



[2001-05-17 17:59:27] [EMAIL PROTECTED]

domxml has changed from children being a method to being a member. Try $children = 
$root->children



[2001-05-17 13:21:56] [EMAIL PROTECTED]

I am running the latest Win32 binaries from the php.net download page. I am using the 
ISAPI module on IIS5. In php.ini I enabled DOMXML by uncommenting the appropriate 
line.

Calling the children function on a node that has a CDATA node as a child results in an 
access violation. Here's a script that reproduces the problem:

$doc = xmldocfile('http://tbhbuilding.blogspot.com');
$root = $doc->root();
$children = $root->children();
$children = $children[1]->children();
print_r($children[1]->children());

I would have generated a gdb backtrace if the instructions for doing so explained how 
to do it with the ISAPI module.






Edit this bug report at http://bugs.php.net/?id=10936&edit=1


-- 
PHP Development Mailing List 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Bug #10936 Updated: DOMXML crash with CDATA

2001-11-21 Thread mfischer

ID: 10936
Updated by: mfischer
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Feedback
Bug Type: DOM XML related
Operating System: Win2K Pro
PHP Version: 4.0.5
New Comment:

Does this problem still exists with 4.0.6 from php.net?

Feedback.

Previous Comments:


[2001-05-17 18:31:59] [EMAIL PROTECTED]

Not in the binaries in 
http://www.php.net/do_download.php?download_file=php-4.0.5-Win32.zip&source_site=www.php.net.


The children property returns NULL in all cases. The children method works correctly 
unless one of the children is a CDATA node.

The source code in 
http://www.php.net/do_download.php?download_file=php-4.0.5.tar.gz&source_site=www.php.net
 shows children as a method and not as a property.



[2001-05-17 17:59:27] [EMAIL PROTECTED]

domxml has changed from children being a method to being a member. Try $children = 
$root->children



[2001-05-17 13:21:56] [EMAIL PROTECTED]

I am running the latest Win32 binaries from the php.net download page. I am using the 
ISAPI module on IIS5. In php.ini I enabled DOMXML by uncommenting the appropriate 
line.

Calling the children function on a node that has a CDATA node as a child results in an 
access violation. Here's a script that reproduces the problem:

$doc = xmldocfile('http://tbhbuilding.blogspot.com');
$root = $doc->root();
$children = $root->children();
$children = $children[1]->children();
print_r($children[1]->children());

I would have generated a gdb backtrace if the instructions for doing so explained how 
to do it with the ISAPI module.






Edit this bug report at http://bugs.php.net/?id=10936&edit=1


-- 
PHP Development Mailing List 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Bug #10936 Updated: DOMXML crash with CDATA

2001-05-17 Thread matthew . kane

ID: 10936
User Update by: [EMAIL PROTECTED]
Old-Status: Closed
Status: Open
Bug Type: Reproducible crash
Operating system: Win2K Pro
PHP Version: 4.0.5
Description: DOMXML crash with CDATA

Not in the binaries in 
http://www.php.net/do_download.php?download_file=php-4.0.5-Win32.zip&source_site=www.php.net.


The children property returns NULL in all cases. The children method works correctly 
unless one of the children is a CDATA node.

The source code in 
http://www.php.net/do_download.php?download_file=php-4.0.5.tar.gz&source_site=www.php.net
 shows children as a method and not as a property.

Previous Comments:
---

[2001-05-17 17:59:27] [EMAIL PROTECTED]
domxml has changed from children being a method to being a member. Try $children = 
$root->children

---

[2001-05-17 13:21:56] [EMAIL PROTECTED]
I am running the latest Win32 binaries from the php.net download page. I am using the 
ISAPI module on IIS5. In php.ini I enabled DOMXML by uncommenting the appropriate 
line.

Calling the children function on a node that has a CDATA node as a child results in an 
access violation. Here's a script that reproduces the problem:

$doc = xmldocfile('http://tbhbuilding.blogspot.com');
$root = $doc->root();
$children = $root->children();
$children = $children[1]->children();
print_r($children[1]->children());

I would have generated a gdb backtrace if the instructions for doing so explained how 
to do it with the ISAPI module.


---


Full Bug description available at: http://bugs.php.net/?id=10936


-- 
PHP Development Mailing List 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Bug #10936 Updated: DOMXML crash with CDATA

2001-05-17 Thread lyric

ID: 10936
Updated by: lyric
Reported By: [EMAIL PROTECTED]
Old-Status: Open
Status: Closed
Bug Type: Reproducible crash
Operating system: 
PHP Version: 4.0.5
Assigned To: 
Comments:

domxml has changed from children being a method to being a member. Try $children = 
$root->children

Previous Comments:
---

[2001-05-17 13:21:56] [EMAIL PROTECTED]
I am running the latest Win32 binaries from the php.net download page. I am using the 
ISAPI module on IIS5. In php.ini I enabled DOMXML by uncommenting the appropriate 
line.

Calling the children function on a node that has a CDATA node as a child results in an 
access violation. Here's a script that reproduces the problem:

$doc = xmldocfile('http://tbhbuilding.blogspot.com');
$root = $doc->root();
$children = $root->children();
$children = $children[1]->children();
print_r($children[1]->children());

I would have generated a gdb backtrace if the instructions for doing so explained how 
to do it with the ISAPI module.


---



ATTENTION! Do NOT reply to this email!
To reply, use the web interface found at http://bugs.php.net/?id=10936&edit=2


-- 
PHP Development Mailing List 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]