Re: Distributed Mode

2007-02-21 Thread Robertson-Ravo, Neil (RX)
Interesting. Do you, the majority of people run ColdFusion in an n tiered setup (Web, Application, Data etc) I guess you can run ColdFusion in this tiered approach without the need for it to be in distributed mode? This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,

Re: CF Hosting Question... 25+ domains with one account.

2007-02-21 Thread James Holmes
Just Linux thankfully :-) On 2/20/07, Rick Faircloth [EMAIL PROTECTED] wrote: Are all the VPS accounts at Viviotech on Linux? Are any on Windows? Rick -Original Message- From: Casey Dougall [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 20, 2007 7:26 AM To: CF-Talk Subject:

Re: Mysql YEAR(DateField) problems with cfqueryparam

2007-02-21 Thread James Holmes
You do know what that word means outside of the US right? On 2/21/07, Dinner [EMAIL PROTECTED] wrote: Years of wanking... -- mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ ~| ColdFusion MX7

RE: Mysql YEAR(DateField) problems with cfqueryparam

2007-02-21 Thread Will Swain
What does it mean IN the US? :) -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: 21 February 2007 11:22 To: CF-Talk Subject: Re: Mysql YEAR(DateField) problems with cfqueryparam You do know what that word means outside of the US right? On 2/21/07, Dinner [EMAIL

OT Allowing access to /flashservices/gateway in httpd.conf

2007-02-21 Thread Adrian Lynch
On my current dev set up I restrict access in Apache with: Directory C:/path/to/webroot AuthType Basic AuthName Apache Realm AuthUserFile C:\path\to\auth\file Require user aUser /Directory Then I'll create user access to sub directories using the same directive as

RE: Why is required not working?

2007-02-21 Thread Stephens, Larry V
You've hit the nail on the head and, with this last suggestion, I see why. Thanks for solving the mystery. -Original Message- From: Tom McNeer [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 20, 2007 4:53 PM To: CF-Talk Subject: Re: Why is required not working? Larry, Well, you've

Re: Best Practices for Web Site Traffic Tracking

2007-02-21 Thread Mik Muller
I'm doing something similar, but I'm not leaving a user cookie. Hmm... good idea. Also, I am logging the user_agent (but not if the user_agent appears to be a bot, I don't log their activity... for some sites crawlers was 2/3 of the site log activity). This is what I keep: DATETIME, GROUPID,

Showing data from a cfquery.

2007-02-21 Thread Matthew Irwin
I have a catalog that shows page numbers at the top of the table using a startrow=x. Is there a way to show above the page number the first item and the last item that would be shown. This is to help them get to the Items quicker. Thanks

Re: Mysql YEAR(DateField) problems with cfqueryparam

2007-02-21 Thread James Holmes
They use it as a surname... On 2/21/07, Will Swain [EMAIL PROTECTED] wrote: What does it mean IN the US? :) -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: 21 February 2007 11:22 To: CF-Talk Subject: Re: Mysql YEAR(DateField) problems with cfqueryparam You

RE: Mysql YEAR(DateField) problems with cfqueryparam

2007-02-21 Thread David Low
http://computing-dictionary.thefreedictionary.com/wank -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: 21 February 2007 13:50 To: CF-Talk Subject: Re: Mysql YEAR(DateField) problems with cfqueryparam They use it as a surname... On 2/21/07, Will Swain

Re: Regular Expression Help on Email Addresses

2007-02-21 Thread Eric Haskins
I am working on a variable mask version as I have time. This one will atleast mask the domain for now. Eric On 2/20/07, Eric Haskins [EMAIL PROTECTED] wrote: cfset email = ReReplaceNocase(email, ([a-zA-Z0-9_\-\.]+)@((([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3}), [EMAIL PROTECTED])/ Try

RE: Mysql YEAR(DateField) problems with cfqueryparam

2007-02-21 Thread Will Swain
Ah, Ok got ya. There are a few other words which don't translate across the Atlantic. ~| Upgrade to Adobe ColdFusion MX7 The most significant release in over 10 years. Upgrade see new features.

cfcs defining datasource in application.cfm

2007-02-21 Thread coldfusion . developer
If I define a datasource variable in the application.cfm file in my webroot shouldn't that variable be available to a cfc inside my webroot/components/ directory? in webroot /application.cfm CFSET datasource = database_01 in webroot/components/some.cfc !--- CFC forLa Dolce/Sting contest - ---

Re: cfcs defining datasource in application.cfm

2007-02-21 Thread Dan Vega
This is not an attempt to promote my work but I just posted an article about this a couple of days ago that I think you would benefit from. http://www.danvega.org/blog/index.cfm/2007/2/19/Avoid-Global-Data Dan Vega http://www.danvega.org/blog/ On 2/21/07, [EMAIL PROTECTED] [EMAIL PROTECTED]

Re: cfcs defining datasource in application.cfm

2007-02-21 Thread Dwayne Cole
cfquery datasource=datasource name=Expedition SELECT ID FROM tbl_Ecotourism /cfquery You might want to try this In the application file try this: CFSET request.datasource = database_01 In the cfc try this: cfquery datasource=#request.datasource# name=Expedition You did not

Switching to Weblogic 9.2 on Java 1.5 - which version of CF to use?

2007-02-21 Thread Tanguy Rademakers
Hello All, The company i work for currently runs CFMX v. 6 on Weblogic 8.1 / Java 1.4 on Solaris, alongside a number of regular java web apps. We are starting a project to upgrade to Weblogic 9.2 on Java 1.5, and i have been tasked with looking into the question which version of CF should we

Re: cfcs defining datasource in application.cfm

2007-02-21 Thread Dwayne Cole
Great article. I wrap everything, almost everything, in functions and i have consistently found myself locked in. I wish I would have read this some time ago. Take this advise seriously, especially if your application architecture uses this type of structure often. -- Original

RE: Switching to Weblogic 9.2 on Java 1.5 - which version of CF to use?

2007-02-21 Thread Richard Kroll
So that's where i'm at for now: 1) Might work with cfmx 7, but not supported. 2) Will most likely work with CFMX 8, but no information of whether it will be officially supported (the Weblogic 9.2 bit, not the java 1.5 bit). 3) Some kind of one time automated migration to regular java web app

Re: cfcs defining datasource in application.cfm

2007-02-21 Thread Dwayne Cole
The artcile still does not address what I think is the root of the question though. Are application variables availble inside a component (cfc) initiated within that application root? -- Original Message -- From: Dan Vega [EMAIL PROTECTED] Reply-To:

Re: Switching to Weblogic 9.2 on Java 1.5 - which version of CF to use?

2007-02-21 Thread Vince Bonfanti
Your other option is to use the only CFML server engine that's tested, sold, and supported directly by BEA: http://www.bea.com/framework.jsp?CNT=index.htmFP=/content/products/weblogic/bluedragon/ Vince Bonfanti New Atlanta Communications, LLC Hello All, The company i work for currently

Re: Why is required not working?

2007-02-21 Thread Tom McNeer
On 2/21/07, Stephens, Larry V [EMAIL PROTECTED] wrote: Thanks for solving the mystery. Glad to do it. It's one of those things I keep forgetting about myself. It bit me as recently as a week ago. D'oh. -- Thanks, Tom Tom McNeer MediumCool http://www.mediumcool.com 1735 Johnson Road NE

Re: cfcs defining datasource in application.cfm

2007-02-21 Thread JediHomer
Yes they are available, however they do need to be in the Application scope, the initial post was just creating global variables which are not available to the CFC rather than Application variables. Similarly as someone has pointed out, the use of the variable was not surrounded with hashes so

Re: cfcs defining datasource in application.cfm

2007-02-21 Thread Dwayne Cole
what about request scoped variables? Are they available inside components? -- Original Message -- From: JediHomer [EMAIL PROTECTED] Reply-To: cf-talk@houseoffusion.com Date: Wed, 21 Feb 2007 15:13:28 + Yes they are available, however they do need to

Re: Switching to Weblogic 9.2 on Java 1.5 - which version of CF to use?

2007-02-21 Thread Vince Bonfanti
A quick follow-up on this. WebLogic 10 is being released at the end of March, and BlueDragon 7.0, BEA WebLogic Edition will be released at the same time. It's the only CFML server that is officially supported by BEA. Vince Your other option is to use the only CFML server engine that's tested,

Re: Showing data from a cfquery.

2007-02-21 Thread Rick Root
On 2/21/07, Matthew Irwin [EMAIL PROTECTED] wrote: I have a catalog that shows page numbers at the top of the table using a startrow=x. Is there a way to show above the page number the first item and the last item that would be shown. This is to help them get to the Items quicker.

Re: Regular Expression Help on Email Addresses

2007-02-21 Thread Eric Haskins
cfset variables.domainlen = Len(ReReplaceNocase(attributes.email, ([a-zA-Z0-9_\-\.]+)@((([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3}), \2)) - 1 cfset variables.mask = cfloop from=1 to=#variables.domainlen# index=i cfset variables.mask = variables.mask * /cfloop cfset variables.email =

Re: FCKeditor File Browsing question

2007-02-21 Thread Rick Root
On 2/20/07, Mark Leder [EMAIL PROTECTED] wrote: Haven't used FCK much, but I'm curious, can the file browser mechanism be set to browse a public directory on a remote server (which is in another city)? In other words, could I set it to browse using a FQDN:

Delete Session Info on Browser Close

2007-02-21 Thread Jim H
Ok, I need a refresher here. I want to delete all session information on browser close. What is the best way to handle this since the session info is stored on the server? ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2

RE: Vista password

2007-02-21 Thread Jacob
http://home.eunet.no/pnordahl/ntpasswd/ I used this on various systems and it works. I have not used it on Vista though. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 20, 2007 7:24 PM To: CF-Talk Subject: RE: Vista password I don't know if it

Re: cfcs defining datasource in application.cfm

2007-02-21 Thread JediHomer
As far as I know these are also available, within theory you should be able to access Application, Session, Request and Client scopes directly, whether this is a good idea or not isn't my call ;) HTH On 21/02/07, Dwayne Cole [EMAIL PROTECTED] wrote: what about request scoped variables? Are

Re: Showing data from a cfquery.

2007-02-21 Thread Eric Haskins
Here is some of my code cfif IsDefined(attributes.pageNumber) cfset pageNumber = attributes.pageNumber /cfif cfparam name=pageNumber default=1 cfset k = 30 cfset startNumber = Evaluate((k * pageNumber) - (k - 1)) cfset endNumber = startNumber + k - 1 cfset pageTotal =

HELP

2007-02-21 Thread Chad Gray
One of our clients had the idea to clean up their web server and now the CF service wont start. I found this error in this log file: C:\CFusionMX\runtime\logs\default-err.log Error: no `server' JVM at `C:\Program Files\Java\j2sdk1.4.2_09\jre\bin\server\jvm.dll'. Error: no `server' JVM at

Re: cfcs defining datasource in application.cfm

2007-02-21 Thread Eric Haskins
Not to Hijack but I always do this // instantiate Image CFC imgObject = CreateObject(component, model.image).init(dsn); cffunction name=init returntype=user access=public output=false cfargument name=dsn type=string required=yes / cfset variables.dsn = arguments.dsn / cfreturn this /

Re: HELP

2007-02-21 Thread Webdevotion
Can't you try a reinstall ? In stead of remove, choose repair ? ~| Upgrade to Adobe ColdFusion MX7 The most significant release in over 10 years. Upgrade see new features. http://www.adobe.com/products/coldfusion Archive:

Re: HELP

2007-02-21 Thread Gareth Hughes
You could try installing a later JVM. I posted instructions a while ago: http://www.houseoffusion.com:80/groups/CF-Talk/message.cfm/messageid:269082 - Original Message - From: Chad Gray [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Wednesday, February 21, 2007 3:53 PM

RE: HELP

2007-02-21 Thread Chad Gray
Is that an option in CF installer? I will load the disk and see. Thanks! -Original Message- From: Webdevotion [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 21, 2007 10:56 AM To: CF-Talk Subject: Re: HELP Can't you try a reinstall ? In stead of remove, choose repair ?

RE: Delete Session Info on Browser Close

2007-02-21 Thread Andy Matthews
If you've got CF7, then you can use the onSessionEnd method in Application.cfc. Short of that though, there is no way I know of to delete a session on browser close. andy -Original Message- From: Jim H [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 21, 2007 8:29 AM To: CF-Talk

RE: Switching to Weblogic 9.2 on Java 1.5 - which version of CF to use?

2007-02-21 Thread Ben Forta
ColdFusion has supported BEA WebLogic since 2000. Indeed, ColdFusion was the first CFML engine supported on BEA WebLogic, and we remain committed to the platform (as do many very high profile customers who run ColdFusion on WebLogic). The current version (CFMX7) supports WebLogic 7 and 8.1. And

Re: Delete Session Info on Browser Close

2007-02-21 Thread Rick Root
On 2/21/07, Andy Matthews [EMAIL PROTECTED] wrote: If you've got CF7, then you can use the onSessionEnd method in Application.cfc. Short of that though, there is no way I know of to delete a session on browser close. Actually, that wouldn't work. onSessionEnd() only runs when the SESSION

Re: Switching to Weblogic 9.2 on Java 1.5 - which version of CF to use?

2007-02-21 Thread Vince Bonfanti
RE: ColdFusion was the first CFML engine supported on BEA WebLogic. I'm not sure this is true. If I remember correctly (I could be wrong), the original CFMX 6.0 release was not supported on BEA WebLogic. These release notes seem to indicate that CFMX didn't run on WebLogic until Dec 2002:

Re: cfcs defining datasource in application.cfm

2007-02-21 Thread Dwayne Cole
Eric if I was not comitted, I would use your approach. It doesn't cost much and i think it's just alot easier to back out of. However, everything depends of the scope and the size of your project. My son's toy boat works fine in the bath tub but in the open ocean, we might have a few

RE: Delete Session Info on Browser Close

2007-02-21 Thread Ian Skinner
If you want to do this, you should use non-persistent (memory) cookies rather than sessions or in addition to sessions. The cookie goes away when the users closes the browser in those cases. Rick And this tech note explains how to cause the cfid and cftoken cookies that associate a user to

Re: Switching to Weblogic 9.2 on Java 1.5 - which version of CF to use?

2007-02-21 Thread Rick Root
On 2/21/07, Vince Bonfanti [EMAIL PROTECTED] wrote: But we quibble, since BlueDragon remains the only CFML engine officially supported by BEA (and, in fact, BlueDragon is sold and supported by BEA as a BEA product). I hate these arguments. As long as CFMX is officially supported on BEA by

Re: Delete Session Info on Browser Close

2007-02-21 Thread Rick Root
That's cool, I'd never even considered that method. I've usually avoided session variables for the most part in most of my apps. On 2/21/07, Ian Skinner [EMAIL PROTECTED] wrote: If you want to do this, you should use non-persistent (memory) cookies rather than sessions or in addition to

Re: ORM Question

2007-02-21 Thread Nathan Strutz
You're too kind :) On 2/20/07, Dinner [EMAIL PROTECTED] wrote: Yup, that was the one! Mr. Nate- YOU ROCK. On 2/20/07, Rob Wilkerson [EMAIL PROTECTED] wrote: This one, perhaps? http://www.dopefly.com/techblog/entry.cfm?entry=149 Once you said something, it occurred to me that I

Re: Switching to Weblogic 9.2 on Java 1.5 - which version of CF to use?

2007-02-21 Thread Vince Bonfanti
Hi Rick, I think the differences are: 1) BlueDragon is tested and certified by BEA's quality assurance (QA) test team; CFMX is not. The BEA QA testers and technical support staff are trained on BlueDragon; they're not trained on CFMX. 2) When you have a problem or question with BlueDragon on

Re: Switching to Weblogic 9.2 on Java 1.5 - which version of CF to use?

2007-02-21 Thread Vince Bonfanti
produce offerings? Of course, these are software products, not fruit and vegetables. :-) Hi Rick, I think the differences are: 1) BlueDragon is tested and certified by BEA's quality assurance (QA) test team; CFMX is not. The BEA QA testers and technical support staff are trained on

Logging Errors in Database

2007-02-21 Thread John Sterrett
I am curious to see what decisions your guys have made towards logging errors. Currently, I need to store detailed information about errors in a database. The scope of my engagement includes all web browsers. Therefore, I want to log user web browser (#CGI.HTTP_USER_AGENT#) and also user ids

Re: Best Practices for Web Site Traffic Tracking

2007-02-21 Thread Rey Bango
Rick, I couldn't remember the name of the free stats server that I had seen awhile back. I found it: http://www.mrunix.net/webalizer/ Haven't used it but it might work for you. Rey... Rick Faircloth wrote: Good point, Claude... Rick -Original Message- From: Claude Schneegans

Re: HELP

2007-02-21 Thread Christopher Jordan
Sounds like the JVM was removed or somehow corrupted. Try reinstalling it. Chris Chad Gray wrote: One of our clients had the idea to clean up their web server and now the CF service wont start. I found this error in this log file: C:\CFusionMX\runtime\logs\default-err.log Error: no

Re: Showing data from a cfquery.

2007-02-21 Thread Rey Bango
Matthew, It sounds like you want something like this: #getCust.email[1]# (first record in query) #getCust.email[getCust.recordcount]# (last record in query) Rey... Matthew Irwin wrote: I have a catalog that shows page numbers at the top of the table using a startrow=x. Is there a way to

RE: cfcs defining datasource in application.cfm

2007-02-21 Thread Richard Kroll
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 exactly the same thing, but now I also need to pass not just the DSN but also the database I'm currently working on. I chose

Re: Best Practices for Web Site Traffic Tracking

2007-02-21 Thread Cutter (CFRelated)
But, we've found that bots will also show a screen res of 0 x 0, so if you check this sort of thing you can then exclude anything without a screen res. Cutter __ http://blog.cutterscrossing.com Claude Schneegans wrote: Anyone know of a discussion/tutorial on the best way to

RE: Logging Errors in Database

2007-02-21 Thread Dave Watts
I am curious to see what decisions your guys have made towards logging errors. Currently, I need to store detailed information about errors in a database. The scope of my engagement includes all web browsers. Therefore, I want to log user web browser (#CGI.HTTP_USER_AGENT#) and also

RE: Distributed Mode

2007-02-21 Thread Dave Watts
Interesting. Do you, the majority of people run ColdFusion in an n tiered setup (Web, Application, Data etc) I guess you can run ColdFusion in this tiered approach without the need for it to be in distributed mode? Most of our clients don't bother with this, and simply run CF on the

Re: Logging Errors in Database

2007-02-21 Thread Robertson-Ravo, Neil (RX)
Interesting, thanks Dave. This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also be privileged. It is for

Data Caching mythology.

2007-02-21 Thread Ian Skinner
I have an issue that I could use some advice on how to best resolve. This is a calendar report that shows a summation of daily transactional data. Three times daily processes in the oracle database fire off that aggregate and sums this information for use by this report. These processes take

Re: Switching to Weblogic 9.2 on Java 1.5 - which version of CF to use?

2007-02-21 Thread Tanguy Rademakers
Your other option is to use the only CFML server engine that's tested, sold, and supported directly by BEA: Hello Vince, Thanks for the info - i know that's going to be music to my management's ears. Regs, /t ~| ColdFusion

Re: Distributed Mode

2007-02-21 Thread Robertson-Ravo, Neil (RX)
Oops, I mean interesting, thanks Dave for this thread! This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also

Re: Logging Errors in Database

2007-02-21 Thread Claude Schneegans
Therefore, I want to log user web browser (#CGI.HTTP_USER_AGENT#) Not really useful. Differences in browser can cause script errors on client side, but are rarely responsible for errors on server. Use CFERROR, collect anything you can, like session variables, etc. and store it in a memo

Having difficulty with cffile on IIS7 and Vista

2007-02-21 Thread Sandra Clark
Trying to upload a file through an HTML form. When I hit the cffile action=upload, I get an error telling me that The form field C:\CFusionMX7\runtime\servers\coldfusion\SERVER-INF\temp\wwwroot-tmp\neotmp 1155.tmp did not contain a file. I checked the directory and sure enough the file does

Re: Switching to Weblogic 9.2 on Java 1.5 - which version of CF to use?

2007-02-21 Thread Tanguy Rademakers
And yes, WebLogic 9.2 support is indeed planned for ColdFusion Scorpio (aka CF8). Hello Ben, Also good news, given that the company has a subscription for cf enterprise. It looks like i will be the bearer of double good news! Terrible: now they'll have to actually decide something ;)

output as an image

2007-02-21 Thread Dan Vega
Does anyone know how I could take the html (generated output) and save that as an image. I need it for printing a gant chart. Any help would be appreciated. -- Thank You Dan Vega [EMAIL PROTECTED] http://www.danvega.org ~|

RE: output as an image

2007-02-21 Thread Ben Nadel
You could try a screen shot utility, or maybe pull it into CFDocument and print it as a PDF? .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Dan Vega [mailto:[EMAIL

Re: Mail Spool Slow

2007-02-21 Thread Nick Tong - TalkWebSolutions.co.uk
FWIW: we send out thousands and i find it easier to write the files directly to the mail root instead of getting CF to send the email via the cf spool. On 20/02/07, Rob Kopp [EMAIL PROTECTED] wrote: ok, having fixed DNS, I have IMS working on it's own without relay to my exchange server. It

Re: output as an image

2007-02-21 Thread Nick Tong - TalkWebSolutions.co.uk
Tim Blair pointed out a while back: If you're on Windows this is a nitfy command line util that could be run from cfexecute: http://www.websitescreenshots.com/; On 21/02/07, Ben Nadel [EMAIL PROTECTED] wrote: You could try a screen shot utility, or maybe pull it into CFDocument and print it

Re: output as an image

2007-02-21 Thread Dan Vega
Tried that. The main problem is that there is a setting in IE Advnaced Print background colors. I need a way to override this setting. The client does not want to have to go in and change this everytime. Dan On 2/21/07, Ben Nadel [EMAIL PROTECTED] wrote: You could try a screen shot utility,

RE: Logging Errors in Database

2007-02-21 Thread Mik Muller
First, wrapping your entire page with CFTRY is an awful idea. Don't do that. Forgive me for being dense, but why is it an awful idea? System resources? Granularity on code? Just sloppy or lazy? Currently I have certain pages wrapped in a cftry and in the cfcatch I send myself an email as

Query works on windows / access server, but not Linux / MySQL

2007-02-21 Thread Steve Good
I moved my testing environment from a windows server to a linux server. In doing so I had to migrate my DB from Access to MySQL. Everything seems to be working fine except when I query a query. Here's the error and the queries in question. The query that seems to be the perpetrator is

Re: Data Caching mythology.

2007-02-21 Thread Joshua Cyr
Funny, I was thinking about something very similar last night and found myself wondering if there was a good portal type resource focused on enterprise strategies and CF. Specifically how to properly architect your new site that you know (hope) will end up with millions of records and millions of

Re: Logging Errors in Database

2007-02-21 Thread Robertson-Ravo, Neil (RX)
It's sloppy. Try/catch should be around specific code blocks and thrown with descriptive messages for the error type. Putting it all around the page, which can contain 1 or many pages / functions would not be very smart of help with debugging / defensive coding. This e-mail is from Reed

RE: Best Practices for Web Site Traffic Tracking

2007-02-21 Thread Rick Faircloth
Thanks for point that out to me, Rey... unfortunately it only runs on Linux and I'm not capable of porting it to Windows. Rick -Original Message- From: Rey Bango [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 21, 2007 11:52 AM To: CF-Talk Subject: Re: Best Practices for Web Site

RE: Logging Errors in Database

2007-02-21 Thread Dave Watts
Forgive me for being dense, but why is it an awful idea? System resources? Granularity on code? Just sloppy or lazy? Currently I have certain pages wrapped in a cftry and in the cfcatch I send myself an email as well as give the user a polite apology for any inconvenience. It's the

RE: Data Caching mythology.

2007-02-21 Thread Dave Watts
Funny, I was thinking about something very similar last night and found myself wondering if there was a good portal type resource focused on enterprise strategies and CF. Specifically how to properly architect your new site that you know (hope) will end up with millions of records and

Re: Query works on windows / access server, but not Linux / MySQL

2007-02-21 Thread Cutter (CFRelated)
either the TotalMile or expenses columns, within your new MySQL db, have been converted to a type of VARCHAR, which can not take this aggregate function. Verify the data type of these columns, so that they correspond to some numeric data type (Integer, Float, etc.). Cutter _

RE: output as an image

2007-02-21 Thread Andy Matthews
Why not just use an alternate stylessheet? Or use javascript to change the background color. -Original Message- From: Dan Vega [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 21, 2007 12:38 PM To: CF-Talk Subject: Re: output as an image Tried that. The main problem is that there is

Re: output as an image

2007-02-21 Thread Dan Vega
This seems like it will work great, only problem it doesnt look like it can take dynamic content www.abc.com?param1=whatparam2=ever On 2/21/07, Nick Tong - TalkWebSolutions.co.uk [EMAIL PROTECTED] wrote: Tim Blair pointed out a while back: If you're on Windows this is a nitfy command line

Re: FCKeditor File Browsing question

2007-02-21 Thread Dinner
On 2/21/07, Rick Root [EMAIL PROTECTED] wrote: On 2/20/07, Mark Leder [EMAIL PROTECTED] wrote: Haven't used FCK much, but I'm curious, can the file browser mechanism be set to browse a public directory on a remote server (which is in another city)? In other words, could I set it to

Re: OT Allowing access to /flashservices/gateway in httpd.conf

2007-02-21 Thread Dinner
On 2/21/07, Adrian Lynch [EMAIL PROTECTED] wrote: Directory /flashservices/gateway Allow from all /Directory Looks good, off the top of my head. Is it working? ~| Upgrade to Adobe ColdFusion MX7 Experience

Re: ORM Question

2007-02-21 Thread Dinner
On 2/21/07, Nathan Strutz @gmail.com wrote: You're too kind :) Not by half! ~| Create Web Applications With ColdFusion MX7 Flex 2. Build powerful, scalable RIAs. Free Trial http://www.adobe.com/products/coldfusion/flex2/

Re: cfcs defining datasource in application.cfm

2007-02-21 Thread Dinner
On 2/21/07, Richard Kroll [EMAIL PROTECTED] wrote: Passing the dsn to the CFC in the create object?? Is this correct or should I change my ways? 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

RE: output as an image

2007-02-21 Thread Ian Skinner
Why not just use an alternate stylessheet? Or use javascript to change the background color. Or use the media property of the style sheet to over ride when printing. I do this all the time to great effect. style media=all /*Stuff that goes for both screen and print */ body

RE: Change Log on database updates - need some ideas

2007-02-21 Thread Dave Watts
Most JS libs worth their salt have in-line editing type deals (where you're in a view and you click on a field, say the First Name field, and it becomes a text-box so that you can edit content)- aside from the first insert, how often is /every/ field changed? That's the beauty of AJAX,

Re: output as an image

2007-02-21 Thread Dan Vega
This will not work, there is a preference in IE that tells the printer specfically not to print background colors. I need to somehow override this. Dan On 2/21/07, Ian Skinner [EMAIL PROTECTED] wrote: Why not just use an alternate stylessheet? Or use javascript to change the background color.

RE: Change Log on database updates - need some ideas

2007-02-21 Thread Andrew Tyrone
Dave Watts wrote: I shouldn't complain too much, as they don't care how much it costs and pay quickly - but, is there a more efficient way of doing this? triggers. AJAX. Field-based editing with a simple log. =] I'm sorry, but that, by itself, is a very silly answer. AJAX

RE: Change Log on database updates - need some ideas

2007-02-21 Thread Andy Tyrone
Dave Watts wrote: I shouldn't complain too much, as they don't care how much it costs and pay quickly - but, is there a more efficient way of doing this? triggers. AJAX. Field-based editing with a simple log. =] I'm sorry, but that, by itself, is a very silly answer. AJAX

Re: Best Practices for Web Site Traffic Tracking

2007-02-21 Thread Rey Bango
Actually, check the downloads. They have Windows binaries if I recall. Rey Rick Faircloth wrote: Thanks for point that out to me, Rey... unfortunately it only runs on Linux and I'm not capable of porting it to Windows. Rick -Original Message- From: Rey Bango [mailto:[EMAIL

OT: New worldship sucks!

2007-02-21 Thread Will Tomlinson
I just tried installing UPS Worldship 9.0, and I can't because it now uses MSDE for its DB. It detects SQL Server on my machine and says it's incompatible. This sucks! My vent for the day, Will ~| ColdFusion MX7 and Flex 2

RE: output as an image

2007-02-21 Thread Ian Skinner
This will not work, there is a preference in IE that tells the printer specfically not to print background colors. I need to somehow override this. Dan Sorry, I thought you where trying to remove the background color, not preserve it. There are limited possibilities that I know of. 1)

Re: FCKeditor File Browsing question

2007-02-21 Thread Matt Robertson
On 2/21/07, Dinner [EMAIL PROTECTED] wrote: Indeed. Luckily, writing a connector isn't too difficult. Denny is just saying that cuz he has already written one... or he did on an older version :D. Worked better than the original IIRC. I'd use Rick's tool nowadays. You can have CFFM in place

Re: output as an image

2007-02-21 Thread Dan Vega
I found a similar utility but they want 500 per year. On 2/21/07, Ian Skinner [EMAIL PROTECTED] wrote: This will not work, there is a preference in IE that tells the printer specfically not to print background colors. I need to somehow override this. Dan Sorry, I thought you where trying

Re: Query works on windows / access server, but not Linux / MySQL

2007-02-21 Thread Steve Good
Thanks for the point in the right direction. Looks like I had non-integer data stored there, and when i had changed it to an integer the data was truncated. Looks like I have some data editing to do hehe. ~Steve Cutter (CFRelated) wrote: either the TotalMile or expenses columns, within your

Re: Change Log on database updates - need some ideas

2007-02-21 Thread Dinner
On 2/21/07, Dave Watts @figleaf.com wrote: AJAX is FAR from a display technology*. Far far far. But I do love my fancy fades and whatnot. :-) AJAX is not far from a display technology. That's all it is. It lets you reorder your presentation logic in a way different from

Re: Change Log on database updates - need some ideas

2007-02-21 Thread Les Mizzell
I feel it's ridiculous to track changes to fields BEFORE the complete data set (form) is submitted, unless that is a specific intention of the business logic, which I don't think in this case it is. Basically, ADMIN sends an email to all the sys managers that have systems listed in the

Re: Change Log on database updates - need some ideas

2007-02-21 Thread Dinner
On 2/21/07, Andy Tyrone [EMAIL PROTECTED] wrote: I feel it's ridiculous to track changes to fields BEFORE the complete data set (form) is submitted, unless that is a specific intention of the business logic, which I don't think in this case it is. Just because AJAX can do all that

RE: Help with single quote in QofQ

2007-02-21 Thread Ian Skinner
cfset qDave = queryNew(mystring) cfset queryAddRow(qDave) cfset querySetCell(qDave,mystring,This is Dave's test.) cfset sSearchString = This is Dave's test. cfdump var=#qDave# cfquery dbtype=query name=qSELECT * FROM qDave WHERE mystring = '#sSearchString#'/cfquery cfdump var=#q# Your

RE: Best Practices for Web Site Traffic Tracking

2007-02-21 Thread Rick Faircloth
Yes.. I do see a Win32-Intel binary distribution. I was going by information found in the FAQ's. Thanks! -Original Message- From: Rey Bango [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 21, 2007 2:23 PM To: CF-Talk Subject: Re: Best Practices for Web Site Traffic Tracking

RE: OT Allowing access to /flashservices/gateway in httpd.conf

2007-02-21 Thread Kevin Aebig
I've had trouble with some versions of flash needing an ending /. /flashservices/gateway/ Cheers, !k -Original Message- From: Dinner [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 21, 2007 1:06 PM To: CF-Talk Subject: Re: OT Allowing access to /flashservices/gateway in

RE: Change Log on database updates - need some ideas

2007-02-21 Thread Andy Tyrone
Well, actually, once you go AJAX, you kinda want it everywhere. It truly is a different way of doing stuff than the old static way. What's that quote... we're just now getting back to where we were 10 years ago, UI wise something like that. Well, I really disagree with that

RE: Change Log on database updates - need some ideas

2007-02-21 Thread Andrew Tyrone
Well, actually, once you go AJAX, you kinda want it everywhere. It truly is a different way of doing stuff than the old static way. What's that quote... we're just now getting back to where we were 10 years ago, UI wise something like that. Well, I really disagree with that

  1   2   >