Our site allows members to download mpg files through cfcontent. Our basic
code is:
<CFSET TEMP_PATH=GetDirectoryFromPath(GetCurrentTemplateP ath()) &
"../VideoFolder">
<CFSET DownloadFile="#temp_path#\#VideoURL#">
<CFHEADER NAME="Content-Disposition" VALUE="inline;filename=#VideoURL#">
<CFCONTENT TYPE="media/mpg" file="#DownloadFile#" deletefile="no">

In our application.cfm file, we set our member log in status to no by default
with
<CFPARAM NAME="SESSION.Auth.IsLoggedIn" default="NO">

And when they log in, we set the variable to logged in with:
<CFSET SESSION.Auth=StructNew()>
<CFSET SESSION.Auth.IsLoggedIn="Yes">

This all works great on my computer but I have discovered that for some
members, once they download a video using the cfcontent server, they are
automatically logged out and have to log in again to view additional videos.

Does anyone have any ideas as to why this happens and how to fix it. I cannot
recreate this problem on my computer but I know it is happening with many of
our members.

Thanks for any help!

Coop