Hello everybody,
I'm new to CKeditor, and I'm running it on a an xampp-server. CKE ceases to to work whenever I include paths.
This works:
This does not:
"/onlineAnzeigen/" is located in "/xampp/htdocs/" (which is the root of the webserver). Can anybody see what I'm doing wrong?
I'm new to CKeditor, and I'm running it on a an xampp-server. CKE ceases to to work whenever I include paths.
This works:
<textarea cols="80" id="anzeigenInhalt" name="anzeigenInhalt" rows="10"></textarea>
<script type="text/javascript">
//<![CDATA[
CKEDITOR.replace( 'anzeigenInhalt',
{ fullPage : "true",
width : "250"
}
);
//]]>
</script> This does not:
<textarea cols="80" id="anzeigenInhalt" name="anzeigenInhalt" rows="10"></textarea>
<script type="text/javascript">
//<![CDATA[
CKEDITOR.replace( 'anzeigenInhalt',
{ fullPage : "true",
width : "250",
config.templates_files : "/onlineAnzeigen/wobtemplates.js"
}
);
//]]>
</script> "/onlineAnzeigen/" is located in "/xampp/htdocs/" (which is the root of the webserver). Can anybody see what I'm doing wrong?

Re: Newbiequestion about configuration and paths'