anarcap wroteThe image URL is stored in the database without the extra "IW=...", however it is also missing the "http://" to indicate that it is an external image. I made sure to include the http:// when I created the product listing, so I'm going to look into why it gets stripped out.
I have a fix working at my end... It looks like the "htt://" was getting removed in ProductEdit.ascx.cs .
I modified GetImageURL() like this:
private string GetImageUrl()
{
- string imagePath = image1.Url.Replace("http://", "");
+ string imagePath = image1.Url;
// Is this an internal image?
if (image1.UrlType == "F")
rebuilt, and then uploaded the new DotNetNuke.Modules.Store.WebControls.dll to the web server. Now both local and external images work.
Is there a formal process for submitting patches to this project?
Marius