Web Wiz - Green Windows Web Hosting

  New Posts New Posts RSS Feed - File Uploads
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

File Uploads

 Post Reply Post Reply
Author
kcuk View Drop Down
Newbie
Newbie
Avatar

Joined: 23 October 2006
Location: Bournemouth, UK
Status: Offline
Points: 33
Post Options Post Options   Thanks (0) Thanks(0)   Quote kcuk Quote  Post ReplyReply Direct Link To This Post Topic: File Uploads
    Posted: 27 January 2007 at 8:51am
Ok odd one guys and gals....

User uploads to forum File 1 great but gets to do file 2 and then gets following error

Request object error 'ASP 0104 : 80004005'

Operation not Allowed

/forum/functions/functions_upload.asp, line 351

Using SmartASPupload it cant be permissions cos they uploaded first file fine???

Anyone shed some light on the matter or is it worth using a different upload functions like dundas?
Back to Top
javi712 View Drop Down
Senior Member
Senior Member


Joined: 22 May 2003
Location: United States
Status: Offline
Points: 488
Post Options Post Options   Thanks (0) Thanks(0)   Quote javi712 Quote  Post ReplyReply Direct Link To This Post Posted: 07 February 2007 at 1:22am
kcuk - were you able to resolve this? I'm getting the same error from some of my members. I've tried to recreate the problem, but I don't run into any errors when uploading... only certain members do.
Back to Top
kcuk View Drop Down
Newbie
Newbie
Avatar

Joined: 23 October 2006
Location: Bournemouth, UK
Status: Offline
Points: 33
Post Options Post Options   Thanks (0) Thanks(0)   Quote kcuk Quote  Post ReplyReply Direct Link To This Post Posted: 07 February 2007 at 7:13am
I have been unable to find the problem however iireset from dos prompt seemed to resolve the problem for me, if you are a fortunate enough to have access to the sites server. Users havent reported this to me any more so presume it has stopped for now. Will probably move to dundas if this problem doesnt go away.
Back to Top
javi712 View Drop Down
Senior Member
Senior Member


Joined: 22 May 2003
Location: United States
Status: Offline
Points: 488
Post Options Post Options   Thanks (0) Thanks(0)   Quote javi712 Quote  Post ReplyReply Direct Link To This Post Posted: 07 February 2007 at 3:46pm
I don't have access to the server itself as my site is hosted by a hosting company. I'll try a different upload component also and see what happens.

Would be nice to know though what is causing the problem. Takes the guessing game away.
Back to Top
Acke View Drop Down
Newbie
Newbie


Joined: 25 December 2004
Location: Sweden
Status: Offline
Points: 37
Post Options Post Options   Thanks (0) Thanks(0)   Quote Acke Quote  Post ReplyReply Direct Link To This Post Posted: 07 May 2007 at 1:47am
Use this exempel to check what kind of components you have on your server!!!
 
This is a simpel code just for checking Email, upload and image components.
 

<html>
 
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Ny sida 1</title>
</head>
 
<body>
 
With this litle script can you check what kind of component your server has installed.<br><br>
 
[ <a href="check.asp?check=mail_component">E-mail component</a> ] &nbsp;
[ <a href="check.asp?check=upload_component">Upload component</a> ] &nbsp;
[ <a href="check.asp?check=image_component">Image component</a> ] &nbsp;
<br><br>
<%
' This will check you e-mail components on your server
IF Request.QueryString("check") = "mail_component" THEN
 
Err.Clear
On error resume next
Set objcdonts = Server.CreateObject("cdonts.session")
 
IF err.number <> 0 then
 Response.Write("CDONTS is not installed on this server! <br>")
ELSE
 Response.Write("CDONTS is installerad on this server! <br>")
END IF
 
err.clear
on error resume next
Set objjmail = Server.CreateObject("jmail.smtpmail")
 
IF err.number <> 0 then
 Response.Write("JMAIL is not installed on this server! <br>")
ELSE
 Response.Write("JMAILis installerad on this server! <br>")
END IF
 
err.clear
on error resume next
Set objaspmail = Server.CreateObject("smtpsvg.mailer")
 
IF err.number <> 0 then
 Response.Write("ASPMAIL is not installed on this server! <br>")
ELSE
 response.write("ASPMAIL is installerad on this server! <br>")
END IF
 
err.clear
on error resume next
Set objaspemail = Server.CreateObject("persits.mailsender")
 
IF err.number <> 0 then
 Response.Write("Persits ASPEMAIL is not installed on this server! <br>")
ELSE
 Response.Write("Persits ASPEMAIL is installerad on this server! <br>")
END IF
 
err.clear
on error resume next
Set objbamboo = Server.CreateObject("bamboo.smtp")
 
IF err.number <> 0 then
 Response.Write("Bamboo is not installed on this server! <br>")
ELSE
 Response.Write("Bamboo is installerad on this server! <br>")
END IF
 
err.clear
on error resume next
Set objbamboo = Server.CreateObject("SMTPsvg.Mailer")
 
IF err.number <> 0 then
 Response.Write("SMTPsvg is not installed on this server! <br>")
ELSE
 Response.Write("SMTPsvg is installerad on this server! <br>")
END IF
SMTPsvg.Mailer
END IF
 
' Check your Upload componets on your server
IF Request.QueryString("check") = "upload_component" THEN
 
Err.Clear
On error resume next
Set objFileUp = Server.CreateObject("SoftArtisans.FileUp")
 
IF err.number <> 0 then
 Response.Write("SoftArtisans FileUpload is not installed on this server! <br>")
ELSE
 Response.Write("SoftArtisans FileUpload is installerad on this server! <br>")
END IF
 
Err.Clear
On error resume next
Set objaspsmartUpload = Server.CreateObject("aspSmartUpload.SmartUpload")
 
IF err.number <> 0 then
 Response.Write("SmartUpload is not installed on this server! <br>")
ELSE
 Response.Write("aspSmartUpload SmartUpload is installerad on this server! <br>")
END IF
 
Err.Clear
On error resume next
Set objPersitUpload = Server.CreateObject("Persits.Upload")
 
IF err.number <> 0 then
 Response.Write("Persits Upload is not installed on this server! <br>")
ELSE
 Response.Write("Persits Upload is installerad on this server! <br>")
END IF
 
Err.Clear
On error resume next
Set objw3Upload = Server.CreateObject("w3.upload")
 
IF err.number <> 0 then
 Response.Write("w3 upload is not installed on this server! <br>")
ELSE
 Response.Write("w3 upload is installerad on this server! <br>")
END IF
 
END IF
 
' Check your image components on your server
IF Request.QueryString("check") = "image_component" THEN
 
Err.Clear
On error resume next
Set objPersitJPEG = Server.CreateObject("Persits.Jpeg")
 
IF err.number <> 0 then
 Response.Write("Persits Jpeg is not installed on this server! <br>")
ELSE
 Response.Write("Persits Jpeg is installerad on this server! <br>")
END IF
 
Err.Clear
On error resume next
Set objAspSmartImage = Server.CreateObject("aspSmartImage.SmartImage")
 
IF err.number <> 0 then
 Response.Write("aspSmartImage is not installed on this server! <br>")
ELSE
 Response.Write("aspSmartImage is installerad on this server! <br>")
END IF
 
Err.Clear
On error resume next
Set objAspSmartImage = Server.CreateObject("AspImage.Image")
 
IF err.number <> 0 then
 Response.Write("AspImage is not installed on this server! <br>")
ELSE
 Response.Write("AspImage is installerad on this server! <br>")
END IF
 
END IF
%>
</body>
</html>
 
 
Back to Top
 Post Reply Post Reply

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.08
Copyright ©2001-2026 Web Wiz Ltd.


Become a Fan on Facebook Follow us on X Connect with us on LinkedIn Web Wiz Blogs
About Web Wiz | Contact Web Wiz | Terms & Conditions | Cookies | Privacy Notice

Web Wiz is the trading name of Web Wiz Ltd. Company registration No. 05977755. Registered in England and Wales.
Registered office: Web Wiz Ltd, Unit 18, The Glenmore Centre, Fancy Road, Poole, Dorset, BH12 4FB, UK.

Prices exclude VAT at 20% unless otherwise stated. VAT No. GB988999105 - $, € prices shown as a guideline only.

Copyright ©2001-2026 Web Wiz Ltd. All rights reserved.