I'm trying to upload a file, and I have on my web host Read, and Write
permision on the folder where I want the uploaded file to go, but I'm getting
this error msg.
The following is the internal exception message: access denied
(java.io.FilePermission ..\gallery read)
and here is my cffile tag
<cffile action="upload" filefield="#variables.filename#"
destination="../gallery/" nameconflict="makeunique" >
Fernis - 30 May 2006 18:58 GMT
destination has to be a full path name. use destination="#expandPath("../gallery/")#" if that would help?
jdeline - 30 May 2006 19:00 GMT
Take the #s off of variables.filename.
enniobozzetti - 30 May 2006 19:01 GMT