<img class="\"\\"\\\\"\\\\"\\"\"" height="\"\\"\\\\"153\\\\"\\"\"" alt="\"\\"\\\\"\\\\"\\"\"" width="\"\\"\\\\"150\\\\"\\"\"" src="\"\\"\\\\"/userfiles/image/Group%202.jpg\\\\"\\"\"" />
I'm getting extra slashes and " tagz added to my images once i click the "Save Form" submit button. This of course this stops my images from loading. Can anyone help me locate the line which i need to comment out to correct this problem? or anything else it could be.
I have tried to google the answer but none seems to apply to my setup.
Thanks!
Mon, 02/11/2008 - 05:00
#1
Re: extra tags & /'s added problem! <img class="\&am
My FCKeditor Version: 2.5.1
Text before Submit: <a href="start.php?forum=ja&navi=700_forum">
Text after Submit: <a href="\"start.php?forum=ja&navi=700_forum\"">
Text after some tries: <a href="\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\"start.php?forum=ja&navi=700_forum\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"">
I use a form:
<form FORM ENCTYPE="multipart/form-data" action='<?php $SELF_PHP ?>' method="post" accept-charset="ISO-8859-1 ISO-8859-2">
How can i solve this Problem in FCKeditor? I didnt find anything by google as well as Pav.
Re: extra tags & /'s added problem! <img class="\&am
example --> in edit mode case
<?php
$sBasePath = '../../lib/fckeditor/';
$oFCKeditor = new FCKeditor('elm1') ;
$oFCKeditor->BasePath= $sBasePath;
$oFCKeditor->Config['EnterMode'] = 'br';
$oFCKeditor->Value = stripslashes($rs->fields['header']) ;
$oFCKeditor->Create() ;
?>
Re: extra tags & /'s added problem! <img class="\&am
I'm still looking around to try to figure out how to process the textarea as CDATA (both outbound and inbound - when you view 'Source'). Attempts so far have had no effect. Perhaps someone else has a breadcrumb I can follow?