admin
Guest
|
 |
« on: June 09, 2010, 03:09: PM » |
|
first make sure this is in your <head> area pointing to it correctly
<script type="text/javascript" src="fckeditor/ckeditor.js"></script>
Next this is how your textarea should be set up with the red field id matching
<textarea name="contact_message" id="contact_message" cols="50" rows="5"><?php echo ($row_rsemails_sent['contact_message']); ?></textarea>
<script type="text/javascript"> CKEDITOR.replace( 'contact_message' ); </script>
<script type="text/javascript"> CKEDITOR.config.filebrowserBrowseUrl = 'fckeditor/ckfinder/ckfinder.html'; CKEDITOR.config.filebrowserImageBrowseUrl = 'fckeditor/ckfinder/ckfinder.html?type=Images'; CKEDITOR.config.filebrowserFlashBrowseUrl = 'fckeditor/ckfinder/ckfinder.html?type=Flash'; CKEDITOR.config.filebrowserUploadUrl = 'fckeditor/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Files'; CKEDITOR.config.filebrowserImageUploadUrl = 'fckeditor/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Images'; CKEDITOR.config.filebrowserFlashUploadUrl = 'fckeditor/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Flash'; </script>
Also make sure to delete the .htacess file in the image file directory you are using for uploading files and images it does nothing but cause trouble in displaying images and throws off an INTERNAL SERVER Error
|