Smart Image Processor ASP Support Product Page

ASP.NET component detect, no resize, no thumbnail

Asked 28 Nov 2002 21:09:10
1
has this question
28 Nov 2002 21:09:10 Erik Paquet posted:
Hello,

I know that asp.net is install on my server. I run the test file and it confirm me that everything is ok.

When I use the ASP.NET component, the image is upload, but without any resize and thumbnail. I tried the component that come with SIP and everything works ok.

Any idea. I check the security and IUSRXXXX is there with read write, execute and modify.

Erik

Replies

Replied 02 Dec 2002 10:57:42
02 Dec 2002 10:57:42 George Petrov replied:
ASP.NET runs with different user then IUSR_xxx
For ASP.NET a new user called ASPNET has been created - you should give this user full access to the images folder.

See for more info:
www.asp.net/security.aspx

I will put indeed some more error checking on this in the next update

Greetings,
George

--------------------------------------------------
George Petrov - Founder of the Dynamic Zones
DMXzone.com, FWzone.net, FLzone.net, CFzone.net,
DNzone.com, FlashFreaks.nl
--------------------------------------------------
Replied 26 Dec 2002 21:24:41
26 Dec 2002 21:24:41 Lee Fairbanks replied:
I tried adding "ASPNET" user with full access to my images folder but it didn't change anything

Tell me, is the page with the upload form on it supposed to have an .aspx extension or just .asp?

Still get the error:


error '80072ee7'
/phantomfighters/ScriptLibrary/incResizeAddOn.asp, line 231


Edited by - Artjunky on 26 Dec 2002 21:27:21
Replied 26 Dec 2002 21:54:15
26 Dec 2002 21:54:15 John Velis replied:
If you're getting the initial file to upload but no resize or thumbnail, check to make sure your pure ASP upload path (the BuildUploadRequest line) is direct (ie: c:\webs\website.com\images) and that the SIP path (RUF_path) is relative (ie images or even ..\images)

This was my stumbling block, and once I did this everything was working great. Hope this helps!
Replied 26 Dec 2002 22:26:21
26 Dec 2002 22:26:21 Lee Fairbanks replied:
When I put the full path inside SIP, I got the following error.
Question, what page did you insert the full path?

Server.MapPath() error 'ASP 0172 : 80004005'

Invalid Path

/phantomfighters/ScriptLibrary/incResizeAddOn.asp, line 301

The Path parameter for the MapPath method must be a virtual path. A physical path was used.
Replied 26 Dec 2002 22:45:16
26 Dec 2002 22:45:16 Lee Fairbanks replied:
When ever I have the PureAsp upload folder and the SIP upload folder the same, it give me the following error.

error '80072ee7'
/phantomfighters/ScriptLibrary/incResizeAddOn.asp, line 231

If I have them in different folders, I don't get the error but nothing happens. The only thing that happens is the Pure asp image gets uploaded but no resize when I have them go to different folders.

Any Ideas?
Replied 26 Dec 2002 23:09:49
26 Dec 2002 23:09:49 Lee Fairbanks replied:
the (line 231) on the include- /incResizeAddOn.asp is below.

objHttp.Send ""

Is this what it should read, because this is where it is now failing.



Edited by - Artjunky on 26 Dec 2002 23:11:40
Replied 27 Dec 2002 15:54:35
27 Dec 2002 15:54:35 John Velis replied:
Here is part of the code for the SIP, showing the (relative) path to the upload folder: Notice I'm dynamically building it with a session variable, but that's not necessary...
---------------------------------------------------------
<pre id=code><font face=courier size=2 id=code>' *** Smart Image Processor 1.0.6
If (CStr(Request.QueryString("GP_upload") &lt;&gt; "" Then
Dim RUF_Component, RUF_DotNetResize, RUF_path, RUF_ResizeImages, RUF_maxWidth, RUF_maxHeight, RUF_Quality, RUF_MakeThumb, RUF_Suffix, RUF_maxWidthThumb, RUF_maxHeightThumb, RUF_QualityThumb, RUF_RedirectURL
RUF_Component = "ASPIMAGE"
RUF_DotNetResize = "../../ScriptLibrary/ResizeImage.aspx"
<b> RUF_path = "..\" & session("websiteDir" </b>
RUF_ResizeImages = true
RUF_maxWidth = "800"
RUF_maxHeight = "800"
RUF_Quality = "80"
RUF_MakeThumb = true
RUF_Suffix = "_tn"
RUF_maxWidthThumb = "125"
RUF_maxHeightThumb = "100"
RUF_QualityThumb = "70"
RUF_RedirectURL = ""
'BWmedia Edit </font id=code></pre id=code>
----------------------------------------------------------

And here is part of the code for Pure ASP Upload where I'm stating the (Full) path to the upload folder, Again I'm dynamically creating it, and again that's not necessary...
----------------------------------------------------------
<pre id=code><font face=courier size=2 id=code> RequestBin = Request.BinaryRead(Request.TotalBytes)
Set UploadRequest = CreateObject("Scripting.Dictionary"
<b>BuildUploadRequest RequestBin, """d:\webs\bwmedia.com\www\dmm\media\" & session("websiteDir" & "\""", "file", "", "over"</b>
</font id=code></pre id=code>
----------------------------------------------------------

Hope this helps!
Replied 27 Dec 2002 16:18:15
27 Dec 2002 16:18:15 Lee Fairbanks replied:


I noticed that your SIP version 1.0.6. I have version 1.0.7. I wonder if this is the difference between our situations.

I will look into what you sent. Thanks



Edited by - Artjunky on 27 Dec 2002 19:08:20
Replied 27 Dec 2002 22:41:02
27 Dec 2002 22:41:02 Lee Fairbanks replied:
I was not able to use what that last post said to use. ...making the links absolute rather than relative. This did not work with the version 1.0.7 that I have.
Replied 30 Dec 2002 16:28:27
30 Dec 2002 16:28:27 Lee Fairbanks replied:
Just tried something different and got this error:

aspSmartImage error '800a0035'

File not found: ijl15.dll

/phantomfighters/ScriptLibrary/incResizeAddOn.asp, line 224
Replied 30 Dec 2002 16:38:28
30 Dec 2002 16:38:28 Lee Fairbanks replied:
johnvelis,

you are probably storing the whole path in the database while I do not have that boxed checked in pureaspuload. That and the different versions that we have is probably the difference. Who knows, you could be totally right. I'm just trying everything and can't seem to find anything that works.
Replied 30 Dec 2002 16:42:35
30 Dec 2002 16:42:35 Lee Fairbanks replied:
Does SIP have it's own dll or components that is supplied and is downloadable?

I have tried smartASp an ASP.net . neither worked.
Replied 30 Dec 2002 16:48:31
30 Dec 2002 16:48:31 Lee Fairbanks replied:
by the way, I am getting the same old error but just on a different line. It used to be on line 231 I think. Now it's on 285 where it says:

objHttp.Send ""
Replied 30 Dec 2002 17:03:30
30 Dec 2002 17:03:30 Lee Fairbanks replied:
I have a new idea. I have been suspicious of my server all along. I was wondering if someone could supply a temporary server that I could upload to. Just for for testing and then I could be cut off after it works. Is this possible? Thanks
Replied 31 Dec 2002 15:14:19
31 Dec 2002 15:14:19 George Petrov replied:
I've just released a new update of SIP 1.08 - Please try it.

Greetings,
George

--------------------------------------------------
George Petrov - Founder of the Dynamic Zones
DMXzone.com, FWzone.net, FLzone.net, CFzone.net,
DNzone.com, FlashFreaks.nl
--------------------------------------------------
Replied 02 Jan 2003 23:02:23
02 Jan 2003 23:02:23 Lee Fairbanks replied:
This update did nothing to help. I got it to work using the "Supplied" component but none of the the others worked.

Any Ideas, yet, why?
Replied 08 Jan 2003 05:13:59
08 Jan 2003 05:13:59 Lynn Bantley replied:
I tried the 1.08 update as well, and am in the same boat as you...no resizing and no thumbnails. I sent a test file in to tech support but have not heard back yet.

Hope to hear something soon as this is getting frustrating.

<BLOCKQUOTE id=quote><font size=1 face="Verdana, Arial, Helvetica" id=quote>quote:<hr height=1 noshade id=quote>
This update did nothing to help. I got it to work using the "Supplied" component but none of the the others worked.

Any Ideas, yet, why?
<hr height=1 noshade id=quote></BLOCKQUOTE id=quote></font id=quote><font face="Verdana, Arial, Helvetica" size=2 id=quote>

Replied 09 Jan 2003 21:10:10
09 Jan 2003 21:10:10 Lee Fairbanks replied:
Bantley,

Try installing the supplied component on the server. This isthe only one that worked for me.
Replied 09 Jan 2003 22:02:24
09 Jan 2003 22:02:24 Lynn Bantley replied:
I searched for it on my computer and could not find it. What is the name of it?

Thanks for your help!

Replied 10 Jan 2003 09:23:08
10 Jan 2003 09:23:08 Martha Graham replied:
To find the component, just follow the tutorial How to install the component. You can find the tutorial under the help button in the UI of Smart Image Processor.

Martha Graham
Replied 15 Jan 2003 00:06:46
15 Jan 2003 00:06:46 Mark Scarbrough replied:
OK, so just to wrap up the discussion to-date, this $59 behavior doesn't work with the asp.net component as advertised, right? johnvelis has done some handcoding, but no one else has duplicated his success? I'm I understanding this correctly? We've all paid $59 for a component that we can't use yet? And we're spending time in the forums trying to fix the program we paid for?

Mark

Edited by - zar on 15 Jan 2003 00:07:47
Replied 15 Jan 2003 00:10:35
15 Jan 2003 00:10:35 Lynn Bantley replied:
Marc,

I just downloaded the latest version of SIP (109), and now it will work with .NET on my local machine. But, when I load the same page to the remote server, it does not resize or thumbnail.

No idea why...but it is getting close.

Lynn


Replied 15 Jan 2003 00:25:47
15 Jan 2003 00:25:47 Mark Scarbrough replied:
I got the latest today (although in the code it generates it _says_ it's 1.0.7 - another bug). Doesn't generate the thumbnails. Frustrating...

Mark

Edited by - zar on 15 Jan 2003 00:26:02
Replied 21 Jan 2003 10:42:19
21 Jan 2003 10:42:19 Andreas Herbster replied:
I have the same problem - the file ist uploaded on the server (i think it is only the Pure ASP Upload working) but it is not resized and the thumbnail is not created. ASP.NET is installed on the server and tested via the detect.asp file...

Fast help is needed... <img src=../images/dmxzone/forum/icon_smile.gif border=0 align=middle>
Replied 22 Jan 2003 17:28:10
22 Jan 2003 17:28:10 Niku Niku replied:
Same problem to me!!!
Asp.NET installed, upload ok, but no resize and no thumbnail... HELLLPPPP!!!

Reply to this topic