Hi all,
I have a ecommerce script that i wrote myself and I want to sell some images that people can download.
Does anyone have any tips on the best way to do this so that I can ensure people can download the file but also keep it secure from freebies?
Thanks all 
Mike
Off the top of my head…
- Get them to login somehow - so you’ve got an authorised session to work with.
- To allow download, check the user has a valid session then allow download from a secure folder using cfheader and cfcontent…
<cfcontent type=“application” reset=“true” file=“c:\images\myimage.jpg” type=“image/jpg” />
<cfheader name=“Content-Disposition” value="inline; filename=“c:\images\myimage.jpg” />
Cheers,
James