Aurigma Forums
»
Graphics Mill
»
Discussions – Graphics Mill
»
Server Error-Specified module could not be found.
Rank: Member
Groups: Guest
Joined: 9/5/2007(UTC) Posts: 5
|
I'm trying to use Graphics Mill on a shared host. When I upload the dll's to to the apps /bin directory the web server returns a "Specified Module Not Found" error. I believe this was covered in this post- http://www.aurigma.com/Forums/Topic2736-15-1.aspx It was mentioned that the issue would be resolved in a future release. Any update?
|
|
|
|
Rank: Advanced Member
Groups: Guest
Joined: 8/3/2003(UTC) Posts: 1,070
Thanks: 1 times Was thanked: 12 time(s) in 12 post(s)
|
Hello,
Unfortunately we still have reference to msvcr71.dll. I understand that it is not usual to copy system files on public hosting but is there a chance to place msvcr71.dll to system32 folder on your server?
We are working on this problem and it will be solved soon. |
|
|
|
|
Rank: Member
Groups: Guest
Joined: 9/5/2007(UTC) Posts: 5
|
I haven't heard back from my web host about installing the runtime dll in the system32 directory. Hopefully they will. However, Microsoft recommends installing msvcr71.dll with the program files, not as a system file ( http://support.microsoft.com/kb/326922 ) Could this be implemented on your end?
|
|
|
|
Rank: Member
Groups: Guest
Joined: 9/5/2007(UTC) Posts: 5
|
My Web Host didn't want to install the file in the system directory as this would be a non-standard installation. So I am appealing to you... Is there any way to resolve this issue on your end? A quick beta fix..(I would volunteer to test!) Thanks for any help on this!
|
|
|
|
Rank: Advanced Member
Groups: Guest
Joined: 8/3/2003(UTC) Posts: 1,070
Thanks: 1 times Was thanked: 12 time(s) in 12 post(s)
|
Hello,
We have sent you updated assemblies of Graphics Mill for .NET by email. |
|
|
|
|
Rank: Advanced Member
Groups: Guest
Joined: 8/3/2003(UTC) Posts: 1,070
Thanks: 1 times Was thanked: 12 time(s) in 12 post(s)
|
Hello,
Have you tried the updated assemblies? |
|
|
|
|
Rank: Member
Groups: Guest
Joined: 8/15/2007(UTC) Posts: 14
|
So was this fixed? I am also facing the same problem and would be willing to try the updated dlls.
Thanks, Linda Rawson |
|
|
|
|
Rank: Advanced Member
Groups: Guest
Joined: 1/31/2005(UTC) Posts: 458
Was thanked: 5 time(s) in 5 post(s)
|
|
|
|
|
|
Rank: Member
Groups: Guest
Joined: 8/15/2007(UTC) Posts: 14
|
I sent a message to support. We are trying to get a product out by Christmas so if you get this message before they do please send me the .dll. I know you guys are in russia and have a different schedule.
Thanks,
|
|
|
|
|
Rank: Member
Groups: Guest
Joined: 8/15/2007(UTC) Posts: 14
|
I tried referencing the dlls from the zip. I got the following error:
Error 36 Could not load file or assembly 'Aurigma.GraphicsMill.Codecs.AdvancedPsd, Version=4.1.2869.35032, Culture=neutral, PublicKeyToken=af7154c50c505858' or one of its dependencies. This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem. (Exception from HRESULT: 0x800736B1)
|
|
|
|
|
Rank: Advanced Member
Groups: Guest
Joined: 1/31/2005(UTC) Posts: 458
Was thanked: 5 time(s) in 5 post(s)
|
Hello,
We answered you by email. Have you received the message? |
|
|
|
|
Rank: Newbie
Groups: Guest
Joined: 5/14/2008(UTC) Posts: 1
|
I'm having similiar problems with my test version of graphics mill 5.0 . On local machine it runs without any problems, but when i'm trying to install the web-app to server it generates that kind of error message.
|
|
|
|
Rank: Advanced Member
Groups: Guest
Joined: 1/31/2005(UTC) Posts: 458
Was thanked: 5 time(s) in 5 post(s)
|
|
|
|
|
|
Rank: Member
Groups: Guest
Joined: 10/1/2006(UTC) Posts: 10
|
Alex, I'm hitting the same issue with v3.5 (msvcr71 not being found) and I'm also in a shared hosting situation. Any chance you e-mailing me the fix you provided earlier to others? I'm not in a position to upgrade yet (the upgrade to 5.0 breaks the app), so a fixed DLL would be my best option.
Thanks!
|
|
|
|
Rank: Advanced Member
Groups: Guest
Joined: 8/3/2003(UTC) Posts: 1,070
Thanks: 1 times Was thanked: 12 time(s) in 12 post(s)
|
Hello,
It would be better if you contact your hosting administrator and ask them to put this dll to the server. Unfortunately version 3.x is too old and we cannot recompile it with new CRT.
What problems do you experience with version 5? Could you describe it in detail? |
|
|
|
|
Rank: Member
Groups: Guest
Joined: 10/1/2006(UTC) Posts: 10
|
I was able to convince the hosting company to put the DLL in place, whew! The problem with v5: I have a bitmap coming in from DevExpress XtraReports/XtraCharts as a stream and I'm forcing a resize with Graphics Mill and putting it in a PDF: Code:
MemoryStream chartStrm = new MemoryStream();
rpt.ExportOptions.Image.Format = System.Drawing.Imaging.ImageFormat.Bmp;
rpt.ExportOptions.Image.Resolution = 72;
rpt.ExportToImage(chartStrm);
Aurigma.GraphicsMill.Bitmap chartImg = new Aurigma.GraphicsMill.Bitmap(chartStrm);
chartImg.VerticalResolution = 72;
chartImg.HorizontalResolution = 72;
chartImg.Transforms.Resize(width, height, Aurigma.GraphicsMill.Transforms.InterpolationMode.HighQuality);
if (unsharpen)
chartImg.Transforms.UnsharpMask(1.3F, 1.9F, 0.02F);
iTextSharp.text.Image pdfChart = iTextSharp.text.Image.GetInstance(chartImg.ToGdiplusBitmap(), System.Drawing.Imaging.ImageFormat.Bmp);
rpt is the report object from XtraReports (which contains the XtraChart). What I'm seeing in v3.5 is absolutely correct (there are four colors in the chart, the sizing is correct). In v5 trial, I see a chart that's the wrong size and has strange vertical bars instead of colors. Since I couldn't explain it quickly and I have multiple tight deadlines over the next month, I unloaded v5 and reloaded v3.5 and moved on.
|
|
|
|
Rank: Advanced Member
Groups: Guest
Joined: 8/3/2003(UTC) Posts: 1,070
Thanks: 1 times Was thanked: 12 time(s) in 12 post(s)
|
Hello, Thank you for the update. We know about the issue mentioned above. It will be fixed in the next release. To fix it with current 5.0 version you can update your code: Code:
chartImg.VerticalResolution = 72;
chartImg.HorizontalResolution = 72;
chartImg.Channels.DiscardAlpha(Aurigma.GraphicsMillRgbColor.White);
chartImg.Transforms.Resize(width, height, Aurigma.GraphicsMill.Transforms.InterpolationMode.HighQuality);
Also you can open a case and we will provide you with update binaries. |
|
|
|
|
Aurigma Forums
»
Graphics Mill
»
Discussions – Graphics Mill
»
Server Error-Specified module could not be found.
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.