Question
CFFILE Overwrite
I've got a page where someone can upload a photo. If they
upload and then
decide they'd rather upload a different picture to replace it, they can do
that. But for some reason, the new file is not replacing the old one, and is
not showing up on the server at all. The old file remains. Here's the code
I'm using. Any ideas?
<cfif IsDefined("Form.File1")>
<cfif #trim(form.File1)# is not "">
<CFFILE ACTION="UPLOAD" FILEFIELD="File1"
DESTINATION="#ExpandPath('../carimages/#URL.SellerID#/')#"
NAMECONFLICT="Overwrite" accept="image/jpg, image/pjpeg, image/jpeg,
image/gif, image/png">
<cfx_imagecr3
load="#ExpandPath('../carimages/#URL.SellerID#/')##CFFILE.ServerFile#"
save="#ExpandPath('../carimages/#URL.SellerID#/image1.jpg')#"
quality="50"
resize="300x300"
dpi="72">
<cffile
action = "delete"
file = "#ExpandPath('../carimages/#URL.SellerID#/')##CFFILE.ServerFile#">
<cfx_imagecr3 load="#ExpandPath('../carimages/#URL.SellerID#/image1.jpg')#"
save="#ExpandPath('../carimages/#URL.SellerID#/image1_thumbnail.jpg')#"
quality="50"
resize="110x110"
dpi="72">
</cfif>
decide they'd rather upload a different picture to replace it, they can do
that. But for some reason, the new file is not replacing the old one, and is
not showing up on the server at all. The old file remains. Here's the code
I'm using. Any ideas?
<cfif IsDefined("Form.File1")>
<cfif #trim(form.File1)# is not "">
<CFFILE ACTION="UPLOAD" FILEFIELD="File1"
DESTINATION="#ExpandPath('../carimages/#URL.SellerID#/')#"
NAMECONFLICT="Overwrite" accept="image/jpg, image/pjpeg, image/jpeg,
image/gif, image/png">
<cfx_imagecr3
load="#ExpandPath('../carimages/#URL.SellerID#/')##CFFILE.ServerFile#"
save="#ExpandPath('../carimages/#URL.SellerID#/image1.jpg')#"
quality="50"
resize="300x300"
dpi="72">
<cffile
action = "delete"
file = "#ExpandPath('../carimages/#URL.SellerID#/')##CFFILE.ServerFile#">
<cfx_imagecr3 load="#ExpandPath('../carimages/#URL.SellerID#/image1.jpg')#"
save="#ExpandPath('../carimages/#URL.SellerID#/image1_thumbnail.jpg')#"
quality="50"
resize="110x110"
dpi="72">
</cfif>