thanks for this explanation, but I have a preconfigured Mambo version of fckeditor V2.0rc2 but which has all this settings and I have all permissions set to 777 (dirs and files) and it soes not work. Any thought or hints for debugging?
thanks for the answers but sorry all this is done, I've checked it, permissions are ok, dirs exists, files are in, connector.php is set accordingly (with lowercase images), the other files but it does not show any images or subdirs. The mambo image browser works.
RE: Configuring Different Image Path for PHP
RE: Configuring Different Image Path for PHP
make the following edit in
/FCKeditor/editor/filemanager/browser/default/frmresourcetype.html
Find the section of code below
var aTypes = [
['File','File'],
['Image','Image'],
['Flash','Flash'],
['Media','Media']
] ;
and change it to:
aTypes = [
['file','File'],
['image','Image'],
['flash','Flash'],
['media','Media']
] ;
RE: Configuring Different Image Path for PHP
make the following edit in
/FCKeditor/editor/filemanager/browser/default/frmresourcetype.html
Find the section of code below
var aTypes = [
['File','File'],
['Image','Image'],
['Flash','Flash'],
['Media','Media']
] ;
and change it to:
var aTypes = [
['file','File'],
['image','Image'],
['flash','Flash'],
['media','Media']
] ;
then in fckconfig.js
find
FCKConfig.ImageBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=Image&Connector=connectors/aspx/connector.aspx" ;
change the word Image in the url to lower case (make sure you change the url for the version your using. ie: php, asp,aspx)
FCKConfig.ImageBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=image&Connector=connectors/aspx/connector.aspx" ;
RE: Configuring Different Image Path for PHP