After installing the most recent update I have lost my connection to brouse my images in the FCKeditor. Is there a way to change the default images folder for the FCKeditor.
Nathanc
DPSW.com ADMIN
Deafault folders for FCKeditor not showing up
Re: Deafault folders for FCKeditor not showing up
Edit the following file
Website\FCKeditor\editor\filemanager\connectors\aspx\config.ascx
and locate the following line of code in it.
and make them look like
This will change the path to WebSite/Assets folder
Website\FCKeditor\editor\filemanager\connectors\aspx\config.ascx
and locate the following line of code in it.
Code: Select all
TypeConfig[ "Image" ].FilesPath = "%UserFilesPath%image/";
TypeConfig[ "Image" ].FilesAbsolutePath = ( UserFilesAbsolutePath == "" ? "" : "%UserFilesAbsolutePath%image/" );
Code: Select all
TypeConfig[ "Image" ].FilesPath = "%UserFilesPath%";
TypeConfig[ "Image" ].FilesAbsolutePath = ( UserFilesAbsolutePath == "" ? "" : "%UserFilesAbsolutePath%" );
Re: Default folders for FCKeditor not showing up
Thanks Mazhar but that fix doesn't work. Changes were made to the config file
but I'm still getting the same results. Please advise.
Nathanc
DPSW.com ADMIN
but I'm still getting the same results. Please advise.
Nathanc
DPSW.com ADMIN
Re: Deafault folders for FCKeditor not showing up
Here is my modified config file. Replace your Website\FCKeditor\editor\filemanager\connectors\aspx\config.ascx file with this one. Its working for me and listing the Assets folder contents when i try to browse server for an image.
Re: Deafault folders for FCKeditor not showing up
Done and fixed! Thanks
Nathanc
DPSW.com ADMIN
Nathanc
DPSW.com ADMIN