Opening PDF files
Funny one that we've been scratching our heads over all afternoon. Our client needs a document tracking system, which allows authorized users to view PDF files. For legal reasons they want to track the date, time and IP Address of who views these documents. This is the code I'm using INSERT into docLog (documents_ID, dateViewed, ipAddress) VALUES (#DocID#, #CreateODBCDateTime(now())#, '#CGI.remote_addr#') When we run this query, we end up with three records in the database. If I do a CFLocation to a CFM file instead of a PDF file I only get one record inserted. Plus if I remove the CFLocation and replace it with a it also inserts just one record. G! Anyone seen this one? Cheers ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Installing CF Server on Win2K
Having a REALLY annoying problem installing CF Server 4.5 Ent Single User on a new Win2K box. Gets to the end of the installation and I get an error saying that I either don't have the correct permissions to write to the drive, or the install program cannot shut down my web server. For the first I am logged in as the system admin, and for the second I've tried stopping it manually. List of things I've tried: made a new admin user; manually stopped IIS; manually restarted IIS; uninstalled CF Studio; uninstalled IIS; re-installed IIS; turned off ALL network services; installed an older version of CF Server; installed to a different drive; specified that my admin user has total rights on the system drive(as opposed to just 'everyone'); - and probably some others I've blocked from memory. GRR. And my install was going so smooth up until that point. Ideas? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: group attribute question
Whoops, Don't like those HTML emails - sorry people... What I was trying to say was the tag acts as a tag itself. Close the output tag before your cfmail tag. That'll work. aslam bajaria wrote: > Hi All, > I am trying to have an email sent automatically. If I > have the tag in between > tags, then I get an error that says that I need the > group attribute. > > If I have in between > and tag, still I get the same error. > > I don't have a query. I am just checking a variable. > > The code is as: > > > > > ... > > > > > OR > > > > > ... > > > > > Please Advise. > Appreciate. > A.B. > > __ > Do You Yahoo!? > Yahoo! Mail Free email you can access from anywhere! > http://mail.yahoo.com/ > -- > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ > To Unsubscribe visit >http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a >message to [EMAIL PROTECTED] with 'unsubscribe' in the body. -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebarRsts&bodyRsts/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
Re: group attribute question
Considerto be an output tag itself. That'll fix it up! aslam bajaria wrote: Hi All, I am trying to have an email sent automatically. If I have the tag in between tags, then I get an error that says that I need the group attribute. If I have in between and tag, still I get the same error. I don't have a query. I am just checking a variable. The code is as:OR ... Please Advise. Appreciate. A.B. __ Do You Yahoo!? Yahoo! Mail Free email you can access from anywhere! http://mail.yahoo.com/">http://mail.yahoo.com/ -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/">http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk">http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body. -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebarRsts&bodyRsts/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body. ...