Rank: Advanced Member
Groups: Guest
Joined: 9/6/2005(UTC) Posts: 106
|
Fedor, I upgraded my control from 3.1 to 3.5. Now when I load an image it is just a red x. There is no public or private cache. Can you tell me what I need to do ASAP I have 12 sites that are down. Thanks Chris Herrington
|
|
|
|
Rank: Advanced Member
Groups: Guest
Joined: 7/28/2003(UTC) Posts: 1,660
Thanks: 5 times Was thanked: 76 time(s) in 74 post(s)
|
Hello Chris, Right-click on the broken image and check its url. Then try to open this url in other browser window in order to check the error. Also please post here or email us the url to your page. |
Best regards, Fedor Skvortsov
|
|
|
|
Rank: Advanced Member
Groups: Guest
Joined: 9/6/2005(UTC) Posts: 106
|
Fedor, It works fine on my development machine doesn;t work in production. Thanks Chris
|
|
|
|
Rank: Advanced Member
Groups: Guest
Joined: 9/6/2005(UTC) Posts: 106
|
|
|
|
|
Rank: Advanced Member
Groups: Guest
Joined: 7/28/2003(UTC) Posts: 1,660
Thanks: 5 times Was thanked: 76 time(s) in 74 post(s)
|
Graphics Mill 3.5 for .NET 2.0 supports storing temporary files in App_Data folder. For displaying images it registers virtual file system extension which makes available special ASP.NET page for image displaying. In you case the broken image is loaded from the following url: http://www.woodcountywv....e9-9448-2907a39f0ffc.jpg In fact 10B0C129D18B403395AC9927FCCD777B.aspx file does not exists in physical file system, but is loaded from registered virtual file system. It seems something wrong with it, as we receive the 404 error. The quickest way to get your sites up is to specify the cache pathes ecplicity as you had in version 3.1. Please see Image Cache Management topic for more info. In short you should have web.config something like following one: Code:<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="Aurigma.GraphicsMill.WebControls"
type="System.Configuration.NameValueSectionHandler, System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</configSections>
<system.web>
<!--
...
-->
</system.web>
<Aurigma.GraphicsMill.WebControls>
<add key="RelativePrivateCachePath" value="/WebQuickStartVB/PublicTemp/" />
<add key="RelativePublicCachePath" value="/WebQuickStartVB/PrivateTemp/" />
</Aurigma.GraphicsMill.WebControls>
</configuration>
Meanwhile we will try to find the reason of error. Edited by user Wednesday, October 29, 2008 1:52:55 PM(UTC)
| Reason: Not specified |
Best regards, Fedor Skvortsov
|
|
|
|
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.