Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

Options
Go to last post Go to first unread
Chris Herrington  
#1 Posted : Monday, May 29, 2006 10:38:07 PM(UTC)
Chris Herrington

Rank: Advanced Member

Groups: Member
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
Fedor  
#2 Posted : Monday, May 29, 2006 11:02:03 PM(UTC)
Fedor

Rank: Advanced Member

Groups: Member, Administration, Moderator
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
Chris Herrington  
#3 Posted : Monday, May 29, 2006 11:03:44 PM(UTC)
Chris Herrington

Rank: Advanced Member

Groups: Member
Joined: 9/6/2005(UTC)
Posts: 106

Fedor,

It works fine on my development machine doesn;t work in production.

Thanks

Chris
Chris Herrington  
#4 Posted : Monday, May 29, 2006 11:08:14 PM(UTC)
Chris Herrington

Rank: Advanced Member

Groups: Member
Joined: 9/6/2005(UTC)
Posts: 106

www.woodcountywv.com\webinquiry

The type any name do a search
Click view to view the image

Thanks

Chris
Fedor  
#5 Posted : Monday, May 29, 2006 11:36:04 PM(UTC)
Fedor

Rank: Advanced Member

Groups: Member, Administration, Moderator
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
Users browsing this topic
Similar Topics
ImageUploader Version 3.5 (Image Uploader)
by DSCarl 4/26/2006 11:26:56 PM(UTC)
Connection Interrupted & version 3.5 (Discussions – ActiveX/Java Uploader)
by jeromewilson 2/14/2005 1:19:00 AM(UTC)
Version 3.5 - when is it going to be available? (Image Uploader)
by bizzy 1/26/2005 10:44:00 PM(UTC)
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.