CFIMAGE not working when there is a . in the file path?
I’m trying to use CFIMAGE for the first time and running into an issue. I am guess it is because my path has a period in it but I am not sure and I am not sure how to get around it if that is indeed the problem.
I’m using ExpandPath to get the directory path but I have tried it other way with the same result. The path is
C:\Websites\mywebsite.com\www\images
I’m just trying to take a file in the C:\Websites\mywebsite.com\www\images\temp directory and resize it then rename it to the memberid with 300 on the end and save it to this directory C:\Websites\mywebsite.com\www\images\members
<cfimage
action = "resize"
height = ""
source = "#ExpandPath("..\images")#\temp\#TempFileName#"
width = "300"
optional
destination = "#ExpandPath("..\images")#\members\"
name = "#ARGUMENTS.MemberID#300"
format = "jpg"
overwrite = "yes">
I keep getting the folowing error.
The com\www\images\members\ image format is not supported on this operating system.
Any ideas?
