hi
we are using fckeditor on a IIS 5.0 /PHP 4.4/ mysql 4.0 /machine.
Everything works fine except when we copy and paste an excel or word doc contents, of more than 6 pages and click save, fckeditor cannot save it into the database. (Using form methot post)
We can paste and save without problem, any content smaller than 6 pages of excel sheet size document.
Can you please help us with this?
Mysql buffer : 128
Php ini post max size : 32MB
Upload max size : 5MB
Max memory limit for a script: 128 MB
thank you
we are using fckeditor on a IIS 5.0 /PHP 4.4/ mysql 4.0 /machine.
Everything works fine except when we copy and paste an excel or word doc contents, of more than 6 pages and click save, fckeditor cannot save it into the database. (Using form methot post)
We can paste and save without problem, any content smaller than 6 pages of excel sheet size document.
Can you please help us with this?
Mysql buffer : 128
Php ini post max size : 32MB
Upload max size : 5MB
Max memory limit for a script: 128 MB
thank you
Re: FCK Editor cannot save data into the DB
same here, but for me the limit is more like 1 page
Re: FCK Editor cannot save data into the DB
Turn on error logging and set error_reporting to E_ALL and check what errors appear.
This problem may occur for example if mod_security is enabled or when connection to MySQL server is very slow.
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: FCK Editor cannot save data into the DB
btw, I'm using Easyphp 2.0 b1.
Re: FCK Editor cannot save data into the DB
Will really appreciate if someone helps
Thanks
Re: FCK Editor cannot save data into the DB
Only 1/2 page I can submit. Less its OK. Is there a setting I missed??
Re: FCK Editor cannot save data into the DB
Im having problems with a single quote, wich is not allowed, so the text is not submitted.
How to deal with text like "KBA's" etc???
Re: FCK Editor cannot save data into the DB
use mysql_real_escape_string
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: FCK Editor cannot save data into the DB
I am having the same issue, and initiated a post at viewtopic.php?f=6&t=7452 but have not received any response, so far.
Any ideas would be greatly appreciated.
^_^
Re: FCK Editor cannot save data into the DB
Escape the single quote with another single quote (ie "KBA''s"). That *should* do it.
replace(string,"'","''","all") if you're using ColdFusion.
^_^