Hello,
Is it possible to set the directory where the images are to 'images/' for example? I can set it but the file manager tries to get images from 'images/Image'.
Is it possible to set the directory where the images are to 'images/' for example? I can set it but the file manager tries to get images from 'images/Image'.
RE: [2.0RC1] Image directory
Yes, you can!
It took me more than 3 hours to find how to change it so I hope that this post will help other people. This has been tested on version 2.0 FC
For PHP users, you need to alter 3 files:
1- [/FCKeditor/editor/filemanager/browser/default/frmresourcetype.html] => around line 35, change ['Image','Image'] to ['images','Image'].
2- [/FCKeditor/editor/filemanager/browser/default/connectors/php/connector.php] => around line 58, change array('File','Image','Flash','Media') to array('File','images','Flash','Media')
3- [/FCKeditor/fckconfig.js] => around line 111, change browser.html?Type=Image&Connector to browser.html?Type=images&Connector
That's it!