printing background images

2007-02-21 Thread Dan Vega
Just wanted to let everyone know i found an answer to my problems regarding printing background colors. In case you come across the problem in the future check out my post below. cfdocument format=flashpaper http://www.danvega.org/blog/index.cfm/2007/2/21/Printing-Background-Colors -- Thank

Re: Change Log on database updates - need some ideas

2007-02-21 Thread Judah McAuley
Just so my previous email doesn't get drowned out in a debate over ajax, if I were tackling this problem, I would have a hidden form field on each page that lists the fields that have been changed. Attach an onChange handler to each form field that the sys managers can change. Have it call a

cftransaction and two datasources

2007-02-21 Thread Rusty Owens
I have a question. I have a application where on one template I have several inserts into one datasource are wrapped inside a cftransaction. At the end of the loop, but outside the cftransaction, I have an update of a record in a second datasource, marking it as viewed. My question, is can I

RE: cftransaction and two datasources

2007-02-21 Thread Dave Watts
I have a question. I have a application where on one template I have several inserts into one datasource are wrapped inside a cftransaction. At the end of the loop, but outside the cftransaction, I have an update of a record in a second datasource, marking it as viewed. My question, is

RE: Moving CF5 ODBC Connections to another server

2007-02-21 Thread Dennis Powers
David, CF5's datasource info is in registry key KEY_LOCAL_MACHINE\SOFTWARE\Allaire\ColdFusion\CurrentVersion \DataSources similar to the windows ODBC. Thank you very much, you have saved me hours of headaches! Best Regards, Dennis Powers UXB Internet - A website design and Hosting Company

RE: cfcs defining datasource in application.cfm

2007-02-21 Thread Richard Kroll
Sorta off topic, but this is one area where ColdSpring is pretty awesome. That's pretty much the only way I'm using CS right now-- Haven't even scratched the surface of Advice, which is just freaking cool. I agree completely! Rich Kroll

RE: cftransaction and two datasources

2007-02-21 Thread Ben Nadel
While I have not tested this just now, I am pretty sure that it will not run... It throws an error telling you that you cannot have different DSN queries in the same transaction. I am on MX 7, maybe it is new? I only knew this happens because I have been doing a lot of data transfer stuff lately.

cfmail problem

2007-02-21 Thread Will Tomlinson
My client stopped getting her order was processed email notifications all of a sudden. I ran some tests on the production server and found that as a customer, I receive them just fine. But the one that goes to the client never arrives. So then I'm testing on my local machine, processing thru

RE: cfmail problem

2007-02-21 Thread Paul Vernon
Subbed out the real address there. The problem is, I know for a fact that email address is there! Anyone got any ideas? I dunno which way to go on this one. That looks like a mail server issue rather than a CFMAIL issue If I were you the next step would be to telnet into the mail server

CF time limit exception handling.

2007-02-21 Thread Ian Skinner
I am having difficulty handling the time limit exception. It seems no matter where I try to catch this exception; it is thrown at that point. Has any body worked with this? Can anybody offer some insight? -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento,

RE: Change Log on database updates - need some ideas

2007-02-21 Thread Dave Watts
All AJAX is is JavaScript. It's not really something different. XHTMLHTTPRequest stuff could have been done with frames/whatnot. Or was done, I guess I'd stipulate. You're missing my point, which is that AJAX is not, by itself, a relevant answer to the question, how do I log database changes?

RE: CF time limit exception handling.

2007-02-21 Thread Ben Nadel
I think I am running into the same issue: http://bennadel.com/index.cfm?dax=blog:540.view So far, I have not come up with a good way to solve this. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/

Re: cfmail problem

2007-02-21 Thread Jim Wright
Will Tomlinson wrote: My client stopped getting her order was processed email notifications all of a sudden. I ran some tests on the production server and found that as a customer, I receive them just fine. But the one that goes to the client never arrives. So then I'm testing on my

RE: CF time limit exception handling.

2007-02-21 Thread Ian Skinner
I think I am running into the same issue: http://bennadel.com/index.cfm?dax=blog:540.view So far, I have not come up with a good way to solve this. Yup that does seem to be what I am running into. I was able to capture it finally with a site-wide error handler page, but of course that is too

RE: CF time limit exception handling.

2007-02-21 Thread Dave Watts
Yup that does seem to be what I am running into. I was able to capture it finally with a site-wide error handler page, but of course that is too late to do any kind or recovery. Anybody got any ideas about how one could catch this exception an a way that allows recovery? Why can't you

Re: cfmail problem

2007-02-21 Thread Will Tomlinson
Will Tomlinson wrote: Is it possible the the mail server that CF is sending through thinks that it is supposed to handle mail for that domain, but the actual MX for that domain is something completely different? It would try to handle the mail locally, and probably doesn't have that user

RE: cfmail problem

2007-02-21 Thread Dave Watts
!--- Now, notify the shop owner--- cfmail from=#VARIABLES.emailaddress# to=#VARIABLES.emailaddress# server=#VARIABLES.mailserver# subject=An Order Has Been Processed type=html blahblahblah /cfmail They use the same mailserver variable, the same from. I mean, why th'heck would

Re: Change Log on database updates - need some ideas

2007-02-21 Thread Mike Chabot
I have programmed comprehensive audit trails and data change logs a few times before. I recommend using triggers on every database table that needs to be tracked, and force all queries to go through stored procedures. The benefit of using triggers is that if you go directly to the database and

Re: strange IE7 style issue.

2007-02-21 Thread Ken Ferguson
What??? * Ken Ferguson 214.636.6126 * Bhasker Konakanchi wrote: Passing the dsn to the CFC in the create object?? Is this correct or should I change my ways? I think it depends on your requirements and personal taste. I have done

Protx Integration

2007-02-21 Thread jennygw
Hi, I'm having a problem with Protx in that the path to the notification URL isn't being found after the transaction has been successfully processed. Have shown extracts from my protx.cfm file (from the CF kit they supply), and the CF Admin log entry below. Many thanks in advance for any help

Re: Change Log on database updates - need some ideas

2007-02-21 Thread C. Hatton Humphrey
On 2/21/07, Mike Chabot wrote: I have programmed comprehensive audit trails and data change logs a few times before. I recommend using triggers on every database table that needs to be tracked, and force all queries to go through stored procedures. The benefit of using triggers is that if you

Re: Change Log on database updates - need some ideas

2007-02-21 Thread Les Mizzell
Oh, one third issue, you'll have to have a trigger for each table. I'm pretty much dealing with a single table. It's roughly 800 records with around 1200 columns. The table is already populated with basic info on all the systems in question. There's is usually only one person involved with

Re: Change Log on database updates - need some ideas

2007-02-21 Thread Paul Hastings
C. Hatton Humphrey wrote: Second is the fact that while you can look at the tables, extracting the field names can be a different issue. For this I actually used a lookup table that held the table name and column names of the columns I wanted to log. for insert delete i would imagine that's

Re: Change Log on database updates - need some ideas

2007-02-21 Thread Paul Hastings
Les Mizzell wrote: I'm pretty much dealing with a single table. It's roughly 800 records with around 1200 columns. if you don't mind me saying, there's something wrong here. ~| ColdFusion MX7 and Flex 2 Build sales

RE: Change Log on database updates - need some ideas

2007-02-21 Thread Dave Watts
I'm pretty much dealing with a single table. It's roughly 800 records with around 1200 columns. if you don't mind me saying, there's something wrong here. Maybe they're all bit datatypes. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest

Re: Change Log on database updates - need some ideas

2007-02-21 Thread Paul Hastings
Dave Watts wrote: I'm pretty much dealing with a single table. It's roughly 800 records with around 1200 columns. if you don't mind me saying, there's something wrong here. Maybe they're all bit datatypes. even if they came w/ice cream, 1200 columns is too many, smells like

Re: Change Log on database updates - need some ideas

2007-02-21 Thread Les Mizzell
Dave Watts wrote: I'm pretty much dealing with a single table. It's roughly 800 records with around 1200 columns. if you don't mind me saying, there's something wrong here. Their database, not mine. It's a big flat thing.

RE: Change Log on database updates - need some ideas

2007-02-21 Thread Dave Watts
Their database, not mine. It's a big flat thing. I was joking about the bit datatype thing, but if you really have 1200 columns - not rows, columns - the firing of the original database designer should be an auditable event. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf

RE: Change Log on database updates - need some ideas

2007-02-21 Thread Andrew Tyrone
From: Les Mizzell [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 21, 2007 9:36 PM To: CF-Talk Subject: Re: Change Log on database updates - need some ideas Bob Smith, owner of Data Sys One, performed the following updates: 1. Changed SOX compliance date from 11/12/1999 to 2/12/2001

Re: Change Log on database updates - need some ideas

2007-02-21 Thread C. Hatton Humphrey
On 2/21/07, Dave Watts [EMAIL PROTECTED] wrote: Their database, not mine. It's a big flat thing. I was joking about the bit datatype thing, but if you really have 1200 columns - not rows, columns - the firing of the original database designer should be an auditable event. +1!!! Owch... if

Re: Cold Fusion Jobs in New Zealand

2007-02-21 Thread joshi thomas
Hi Am Joshi Thomas from India, I have been working in Coldfusion for 3 plus years. Am interested in this job. many thanks Joshi I am looking for Cold Fusion people in and around Auckland for high profile International projects. Experience of - Fusebox 3 and 4 (possibly 5 also) -

<    1   2