uploaded images to version 1.1 do not get displayed.
I've been trying to get this to work for the past few days, without any luck.
Here are some details...
if an image file is placed on the filesystem then it shows up fine.
but if I go to the Admin, edit images, I am able to upload images, but they do not display.
more specifically, if I upload file say a.gif, the upload works correctly but the thumbnail image is that red X.
if I click on the thumbnail the site requests the following URL http://prague-spring.org/a.gif, and I get a 404 response.
I tried to do some debugging on my local web server by setting breakpoints in ImageHandler.cs and DisplayImage.cs but the breakpoints were never activated.
my Web.config looks like this
<configuration>
<configSections>
<sectionGroup name="communityStarterKit">
<section name="Isp" type="ASPNET.StarterKit.Communities.CommunitiesSectionHandler,ASPNET.StarterKit.Communities" />
<section name="pagePaths" type="ASPNET.StarterKit.Communities.CommunitiesSectionHandler,ASPNET.StarterKit.Communities" />
<section name="database" type="ASPNET.StarterKit.Communities.CommunitiesSectionHandler,ASPNET.StarterKit.Communities" />
<section name="services" type="ASPNET.StarterKit.Communities.CommunitiesSectionHandler,ASPNET.StarterKit.Communities" />
</sectionGroup>
</configSections>
<communityStarterKit>
<Isp>
<add key="IspUsername" value="xxxxxx" />
<add key="IspPassword" value="xxxxxxxx" />
<add key="TimeZoneAbbreviation" value="EST" />
<add key="GmtTimeOffset" value="-5" />
</Isp>
<pagePaths>
<add key="basePage" value="/communityDefault.aspx" />
<add key="baseService" value="/communityService.asmx" />
</pagePaths>
<database>
<add key="connectionString" value="xxxxxxxxxxxxxxxxxxxxxx" />
</database>
<services>
<add key="enableServiceTimer" value="true" />
</services>
</communityStarterKit>
<system.web>
<customErrors mode="Off"/>
<httpModules>
<add name="CommunitiesModule" type="ASPNET.StarterKit.Communities.CommunitiesModule,ASPNET.StarterKit.Communities" />
</httpModules>
<authentication mode="Forms">
<forms loginUrl="Users_Login.aspx"/>
</authentication>
<pages validateRequest="false" />
<httpRuntime maxRequestLength="1000" />
<httpHandlers>
<add verb="*" path="*.jpg" type="ASPNET.StarterKit.Communities.ImageHandler, ASPNET.StarterKit.Communities" />
<add verb="*" path="*.jpeg" type="ASPNET.StarterKit.Communities.ImageHandler, ASPNET.StarterKit.Communities" />
<add verb="*" path="*.gif" type="ASPNET.StarterKit.Communities.ImageHandler, ASPNET.StarterKit.Communities" />
</httpHandlers>
<webServices>
<protocols>
<add name="HttpGet"/>
</protocols>
</webServices>
</system.web>
</configuration>