Im trying to use cfcontent to trigger a file download and write a download
count to a database. Works great on pc but fails on a mac.
Anyone know the solution to this? Or a way that will work on a mac. The mac
spits out an attempt to load page error.
<CFQUERY NAME="GetFileInfo" DATASOURCE="studio">
SELECT location,movie
FROM movie
WHERE MovID = #URL.MovID#
</CFQUERY>
<CFQUERY NAME="updatecount" DATASOURCE="studio">
UPDATE Movie
SET rank = rank+1
WHERE MovID = #URL.MovID#
</CFQUERY>
<CFHEADER NAME="Content-Disposition" value="attachment;
filename=#GetFileInfo.movie#">
<CFCONTENT TYPE="unknown" FILE="#GetFileInfo.location#">
Thanks
Emmet
------------------------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message
with 'unsubscribe' in the body to [EMAIL PROTECTED]