problem:
My images are shown in the normal pages but when i load it into the editor the image is not visible ( image not found picture )
I use RC2 and my images are not displayed in the editor.
My directory structure:
/
/FCKEditor
/images
/intranet
/content
In the FCK map is everything from FCK
In images are images that uses to show in the html pages
In content are the html pages i want to edit
In intranet net there is a page editPage.php where i start the editor with this code:
But when i load under code:
<img src="../images/Logo_CDM_49.gif" width="111" height="45" align="left">
the image is not shown.
When I change it to this:
<img src="/images/Logo_CDM_49.gif" width="111" height="45" align="left">
The image is shown in the Editor but not on the saved pages.
Where do I ve to change something.
My images are shown in the normal pages but when i load it into the editor the image is not visible ( image not found picture )
I use RC2 and my images are not displayed in the editor.
My directory structure:
/
/FCKEditor
/images
/intranet
/content
In the FCK map is everything from FCK
In images are images that uses to show in the html pages
In content are the html pages i want to edit
In intranet net there is a page editPage.php where i start the editor with this code:
<?php $fileAlsArray = file($_REQUEST['bestand']); $fileAlsString = implode("", $fileAlsArray); $oFCKeditor->BasePath = '/FCKeditor/' ; // '/FCKeditor/' is the default value. $oFCKeditor = new FCKeditor('EditorDefault') ; $oFCKeditor->Value = $fileAlsString ; $oFCKeditor->Config['SkinPath'] = '/FCKeditor/editor/skins/office2003/' ; $oFCKeditor->Create() ; ?>
But when i load under code:
<img src="../images/Logo_CDM_49.gif" width="111" height="45" align="left">
the image is not shown.
When I change it to this:
<img src="/images/Logo_CDM_49.gif" width="111" height="45" align="left">
The image is shown in the Editor but not on the saved pages.
Where do I ve to change something.