Re: [PHP] DOMDocument Size limit

2006-12-19 Thread tedd
At 9:59 AM +0100 12/19/06, Bernhard Zwischenbrugger wrote: Hi When calling |->createElement($name, $value) My content is truncated to around 4k. If what is in $value is less than 4000 bytes then it works fine but if it is more, the data is truncated. Is there a setting I don't know about

Re: [PHP] DOMDocument Size limit

2006-12-19 Thread Bernhard Zwischenbrugger
Hi > When calling |->createElement($name, $value) My content is truncated to > around 4k. If what is in $value is less than 4000 bytes then it works > fine but if it is more, the data is truncated. Is there a setting I > don't know about that will change that limit? I need it to be more like

Re: [PHP] DOMDocument Size limit

2006-12-18 Thread Jochem Maas
Chris W wrote: > Jochem Maas wrote: >> what version of php? what version of libxml? >> > php: 5.2.0 > libxml: 2.6.26 nothing wrong there I believe, although I haven't yet played with php5.2 myself >> is the limit actually 4096 bytes per chance? (that seems more likely) > > the limit is probab

Re: [PHP] DOMDocument Size limit

2006-12-18 Thread Chris W
Jochem Maas wrote: what version of php? what version of libxml? php: 5.2.0 libxml: 2.6.26 is the limit actually 4096 bytes per chance? (that seems more likely) the limit is probably 4096 but I think it may be due to the length of tags and other things not just the value. what happens whe

Re: [PHP] DOMDocument Size limit

2006-12-18 Thread Jochem Maas
Chris W wrote: > When calling |->createElement($name, $value) My content is truncated to what version of php? what version of libxml? > around 4k. If what is in $value is less than 4000 bytes then it works is the limit actually 4096 bytes per chance? (that seems more likely) what happens when

[PHP] DOMDocument Size limit

2006-12-18 Thread Chris W
When calling |->createElement($name, $value) My content is truncated to around 4k. If what is in $value is less than 4000 bytes then it works fine but if it is more, the data is truncated. Is there a setting I don't know about that will change that limit? I need it to be more like 100k or ma