Page 1 of 1

HTML Editor file upload locations

Posted: Sat Oct 11, 2008 10:21 pm
by AbleMods
The HTML Editor should default the file upload to the ~/Assets/ProductImages folder, not a separate ~/Assets/Images folder.

File uploads go into ~/Assets/File/ whereas digital goods are stored in ~/App_Data/DigitalGoods/. These should both be in the same place as well.

Otherwise I'm just duplicating files as I upload content.

Re: HTML Editor file upload locations

Posted: Mon Oct 13, 2008 5:59 am
by mazhar
The HTML Editor should default the file upload to the ~/Assets/ProductImages folder, not a separate ~/Assets/Images folder.
Give a try and change the file path in this line of code in Admin\Utility\EditHtml.aspx page

Code: Select all

Session["FCKEditor:UserFilesPath"] = this.Page.ResolveUrl("~/Assets");
like

Code: Select all

Session["FCKEditor:UserFilesPath"] = this.Page.ResolveUrl("~/Assets/ProductImages");