Hi,
I have the problem that the POST variable, which transports the content of the FCK, becomes empty when the content reaches a certain length.
When I paste the html-Code of this content in an textarea on the same page, there is no problem.
Thanks
Thomas
I have the problem that the POST variable, which transports the content of the FCK, becomes empty when the content reaches a certain length.
When I paste the html-Code of this content in an textarea on the same page, there is no problem.
Thanks
Thomas

Re: problem with empty POST
; Maximum size of POST data that PHP will accept.
post_max_size = 50M
Try increasing that 100M, although it seems unlikely you are reaching the 50MB POST limit with text from a WYSIWYG editor. Especially if the same text pasted into a <textarea> works fine. I think you should look into other reasons why it's not working.
Re: problem with empty POST