Goodday everyone,
i've installed ckeditor a few months ago and I had some issues with the ckfinder at first. I got to fix that and the CKFinder works now. BUT if i try to upload an image directly from the CKEditor it always fails with the error: "Der Ressourcentyp ist nicht gültig" in English that means "invalid Ressource-type" (don't know the exact error message in english..
So yeah.. I'm desperate
Until now, I didn't find the source of this problem
The ckfinder and ckeditor folders are in the same folders as the index of the main page
wwwfiles
¦-- ckeditor
¦ ¦- ckeditor files
¦-- ckfinder
¦ ¦- ckeditor files
¦-index.php
¦...
My CKEditor config files looks like this:
CKEDITOR.editorConfig = function( config ) { config.width = '730'; config.height = '200'; config.resize_enabled = false; config.uiColor = '#90b1c7'; // Define changes to default configuration here. For example: // config.language = 'fr'; // config.uiColor = '#AADC6E'; // added code for ckfinder ------> config.filebrowserBrowseUrl = 'ckfinder/ckfinder.html'; config.filebrowserImageBrowseUrl = 'ckfinder/ckfinder.html?Type=Images'; config.filebrowserFlashBrowseUrl = 'ckfinder/ckfinder.html?Type=Flash'; config.filebrowserUploadUrl = 'ckfinder/core/connector/php/connector.php?command=QuickUpload&type;=Files'; config.filebrowserImageUploadUrl = 'ckfinder/core/connector/php/connector.php?command=QuickUpload&type;=Images'; config.filebrowserFlashUploadUrl = 'ckfinder/core/connector/php/connector.php?command=QuickUpload&type;=Flash'; // end: code for ckfinder ------>