HTML Editor file upload locations

Post feature requests to this forum and a pre-configured poll will automatically be created for you.
Post Reply
User avatar
AbleMods
Master Yoda
Master Yoda
Posts: 5170
Joined: Wed Sep 26, 2007 5:47 am
Location: Fort Myers, Florida USA

HTML Editor file upload locations

Post by AbleMods » Sat Oct 11, 2008 10:21 pm

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.
Joe Payne
AbleCommerce Custom Programming and Modules http://www.AbleMods.com/
AbleCommerce Hosting http://www.AbleModsHosting.com/
Precise Fishing and Hunting Time Tables http://www.Solunar.com

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Re: HTML Editor file upload locations

Post by mazhar » Mon Oct 13, 2008 5:59 am

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");

Post Reply