Hello
I am using CKEditor 3.6.5 (revision 7647). I don't use an uploader.
I have an issue with adding pictures to page using ckeditor. When I clink on the image button to and an image, a form is opened where you can input src, alt, width, height and position. When I do that everytihng is ok, but later on when I save it, I get everything mixed up:
<img alt="this" an="" float:="" height:="" image="" is="" src="./images/up.jpg" style="width:" />
it shuld be:
<img alt="this is an image" src="./images/up.jpg" style="width:500px;float:left;" />
If i wrote it manualy works fine.
Can anyone help me find an error because I ran out of ideas.
Thank you very much anything would help.
I am using CKEditor 3.6.5 (revision 7647). I don't use an uploader.
I have an issue with adding pictures to page using ckeditor. When I clink on the image button to and an image, a form is opened where you can input src, alt, width, height and position. When I do that everytihng is ok, but later on when I save it, I get everything mixed up:
<img alt="this" an="" float:="" height:="" image="" is="" src="./images/up.jpg" style="width:" />
it shuld be:
<img alt="this is an image" src="./images/up.jpg" style="width:500px;float:left;" />
If i wrote it manualy works fine.
Can anyone help me find an error because I ran out of ideas.
Thank you very much anything would help.
Re: CKeditor image problem
The problem was between the ckeditor and ajax. CKeditor returns \" instead " so i have replace this string before writing to a file and solved the problem.
Thanks to all