Tweakers,
heb nu het volgende script:
ik krijg deze foutmelding:
dan is regel 56 gelijk aan regel 13 in het bovenste stukje code.
Wie kan me helpen?
PS: Alles klopt, ook de schrijfrechten
heb nu het volgende script:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
| <%
' Variables
' *********
Dim Upload
Dim intCount
' Object creation
' ***************
Set Upload = Server.CreateObject("Persits.Upload")
' Upload
' ******
intCount = Upload.Save("../../USERFILES")
' Save the files with their original names in a virtual path of the web server
' ****************************************************************************
'intCount = Upload.Save("../Data/")
' sample with a physical path
' intCount = Upload.Save("WWW\NEWTEST\USERFILES")
' uploadpath = "../"
uploadpath = "../../USERFILES"
if not mySmartUpload.Files("FILE1").IsMissing then
if sFilename <> "" then
Call deletefile(server.mappath(pdfpath & sFilename))
end if
sFilename = Upload.Files("FILE1").FileName
sFilename = replace(sFileName, "\", "_")
Upload.Files("FILE1").SaveAs (uploadpath & sFilename)
sgrootte = Upload.TotalBytes
end if
%> |
ik krijg deze foutmelding:
code:
1
2
3
4
5
| Persits.Upload.1 error '800a0005' The system cannot find the path specified. /NEWTEST/sitemanager/admin/bestanden_actionfiles.asp, line 56 |
dan is regel 56 gelijk aan regel 13 in het bovenste stukje code.
Wie kan me helpen?
PS: Alles klopt, ook de schrijfrechten
[ Voor 13% gewijzigd door mmniet op 02-03-2005 16:24 ]
It's me Mario