Re: [ACFUG Discuss] Coldfuison date to LDAP timestamp

2013-08-21 Thread Teddy R Payne
Try using PrecisionEvaluate() function for large integer math. Sent from my iPhone On Aug 21, 2013, at 10:24 AM, Chip Mathers mathersc...@gmail.com wrote: To answer your question, a Microsoft LDAP or Active Directory time stamp is in nanoseconds and based on time since 1/1/1601. An example

Re: [ACFUG Discuss] CF 9 IP restriction

2013-04-20 Thread Teddy R Payne
I did some brief internet research and found this. Perhaps this might lead you to something. http://marakana.com/bookshelf/jboss_admin_tutorial/security.html HIH Sent from my iPhone On Apr 19, 2013, at 10:40 PM, Charlie Arehart char...@carehart.org wrote: Using what web server? That’s the

Re: [ACFUG Discuss] CF 9 IP restriction

2013-04-19 Thread Teddy R Payne
If I recall, there is more than one xml file or child node that has interface set to asterisk. Sent from my iPhone On Apr 19, 2013, at 9:38 AM, Dawn Hoagland dawnhoagl...@gmail.com wrote: Assuming a single server, development instance install.

Re: [ACFUG Discuss] Converting HTML formatted text to regular text in Coldfusion 9

2012-09-20 Thread Teddy R. Payne
advice and time. -- *From:* Teddy R. Payne teddyrpa...@gmail.com *To:* discussion@acfug.org *Sent:* Tuesday, September 18, 2012 2:13 PM *Subject:* Re: [ACFUG Discuss] Converting HTML formatted text to regular text in Coldfusion 9 Chris, Do you need to store

Re: [ACFUG Discuss] Converting HTML formatted text to regular text in Coldfusion 9

2012-09-18 Thread Teddy R. Payne
Chris, Do you need to store the style formatting for Test Record? If Test Record needs to look differently across different mediums (Flex, PDF), have the style formatting defined in Flex and the PDF and just store the actual data inside of the database. If you need to capture the formatting on

Re: [ACFUG Discuss] cfmenu adding an iframe

2011-07-21 Thread Teddy R. Payne
Jeff, I have not run into this yet, but if you are trying to apply style or manipulate the DOM for something that loads last then using the onload attribute of the body tag executes after the body has completed. That could be one way, but not a direct fix. Teddy R. Payne, ACCFD Google Talk

Re: [ACFUG Discuss] CF Lunch - Midtown Edition

2011-06-13 Thread Teddy R. Payne
Cameron, I can probably make it on June 22. I have a meeting at 1:30, but I am game before then. Depending on the heat index for that day, I am game for a patio if it will not be blistering. Front Page News is a shaded patio/grotto, so that is definitely in its favor. Teddy R. Payne, ACCFD

Re: [ACFUG Discuss] Handling SQL limitation with CF

2011-04-13 Thread Teddy R. Payne
: SELECT * FROM uploadWorkOrder where var IN ( SELECT var FROM qryVarList ) Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Wed, Apr 13, 2011 at 1:16 PM, Matthew

Re: [ACFUG Discuss] error trap emails -- html format for gmail?

2011-03-24 Thread Teddy R. Payne
to white space. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Thu, Mar 24, 2011 at 10:53 AM, Steven steve...@gmail.com wrote: Hey all, We do some error trapping via email for one of our apps, and the formatting doesn't come over quite right for gmail. We're just dumping out

Re: [ACFUG Discuss] cfloop query - whats best include page vs cfhttp

2011-03-17 Thread Teddy R. Payne
Ajas, You can probably just cfpdf or cfdocument for your document creation after you save the content of each query loop and create whatever display logic you need. As far as making aquery execute longer, try the sleep() function or using cfthread with the sleep action. Teddy R. Payne, ACCFD

Re: [ACFUG Discuss] cfloop query - whats best include page vs cfhttp

2011-03-17 Thread Teddy R. Payne
creation. Pseudo code: cfloop ... cfset myUDForCFC.createDoc(argumentCollection=...) / /cfloop Hopefully that answered some portion of your question. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Thu, Mar 17, 2011 at 3:53 PM, Ajas Mohammed ajash...@gmail.com wrote: Teddy

Re: [ACFUG Discuss] css for cfgrid

2011-02-18 Thread Teddy R. Payne
Are you trying to change the style in flash format or html? Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Fri, Feb 18, 2011 at 3:26 PM, Jeff Howard jeh...@gmail.com wrote: Does anyone know what element to use for the mouse over color for the column headers in cfgrid?  I can't

Re: [ACFUG Discuss] css for cfgrid

2011-02-18 Thread Teddy R. Payne
Since you are using HTML, you can view the source of the document. In the source code, you should see the name of the class for the column header. Also, there should be a link to the CSS file used for the grid. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Fri, Feb 18, 2011

Re: [ACFUG Discuss] Query within a Query

2011-02-15 Thread Teddy R. Payne
Matthew, Your could merge the two ideas with the following: cfquery name=spListNarrow datasource=#main_dsn# select * from table2 where id IN ( select distinct id

Re: [ACFUG Discuss] XML data showing in dump but not in cfoutput

2011-01-28 Thread Teddy R. Payne
build strings using the string functions or create an xml object and use the XML functions. I am just curious if this is not a technology solution here, but a design decision that is needed. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Fri, Jan 28, 2011 at 1:02 PM, Ajas

Re: [ACFUG Discuss] help with where to start trouble shooting an error

2011-01-20 Thread Teddy R. Payne
Jeff, In the SQL Server realm, a cursor is typical of a stored procedure that has a loop structure. Without using while loops and table variables, cursors used to be the defacto way to loop over logic in complex stored procedures. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com

Re: [ACFUG Discuss] help with where to start trouble shooting an error

2011-01-20 Thread Teddy R. Payne
cases unless you validate prior to executing this query. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Thu, Jan 20, 2011 at 2:46 PM, Jeff Howard jeh...@gmail.com wrote: The code that is causing the issue is a simple insert query, cfquery name=new_folder_ka datasource

Re: [ACFUG Discuss] Newbie Question with Components

2010-12-31 Thread Teddy R. Payne
without much effort. Just an idea and not a criticism or saying your approach is incorrect. Just something I have been looking into for some ideas as I move away from DAO(s) in favor of Gateways for smaller solution sets that do not have external interfaces. Teddy R. Payne, ACCFD Google Talk

Re: [ACFUG Discuss] Newbie Question with Components

2010-12-30 Thread Teddy R. Payne
scope with some sort of business logic to determine what to do with each structure key/value. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Thu, Dec 30, 2010 at 4:52 PM, Matthew Nicholson matthew.nichol...@soltech.net wrote: Afternoon All! Here’s my basic dilemma. I’m

Re: [ACFUG Discuss] Noob help

2010-12-06 Thread Teddy R. Payne
Mike, In your cfquery tag around the code below, is there an attribute called dbtype and the value equal to query? Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Mon, Dec 6, 2010 at 5:19 PM, mike barnes mdb3...@gmail.com wrote: Hi everyone, I am new to Cold Fusion and have

Re: [ACFUG Discuss] Performance with Self-Join

2010-02-22 Thread Teddy R. Payne
Donna, Will any of the non primary documents be associated with more than one primary document? Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Mon, Feb 22, 2010 at 2:09 PM, Donna Martin dmar...@gmail.com wrote: Good afternoon, Normally, I would not hesitate to create a self

Re: [ACFUG Discuss] Performance with Self-Join

2010-02-22 Thread Teddy R. Payne
of approach, but I am not sure you need that level of engineering. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Mon, Feb 22, 2010 at 3:04 PM, Donna Martin dmar...@gmail.com wrote: No. As in the case of an addendum or appendix, it relates to ONLY one document. However, that appendix

Re: [ACFUG Discuss] C# question clarified

2010-02-10 Thread Teddy R. Payne
Charlie, Confirmed on email reception. Teddy

Re: [ACFUG Discuss] C# question clarified

2010-02-08 Thread Teddy R. Payne
Kristine, Are you trying to search through a string variable for a string pattern of C#? Then after you find it, you are putting C# into a query call? Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Mon, Feb 8, 2010 at 12:49 PM, Kristine techsupp...@hirenet.net wrote: I’m

Re: [ACFUG Discuss] C# question clarified

2010-02-08 Thread Teddy R. Payne
location of the error or abhorrent behavior. Follow the code from the source of data and stepping over the application to watch for how your code manipulates the data could provide better introspection to the overall problem. HTH, Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Mon

Re: [ACFUG Discuss] C# question clarified

2010-02-08 Thread Teddy R. Payne
Charlie, That is bizarre. I do not have record of your email on this conversation chain. I was feeling bad that I only noticed that Kristen got a response today as she was asking about it several days ago. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Mon, Feb 8, 2010 at 2:47

Re: [ACFUG Discuss] a very strange sql error that only happens when using CF

2010-01-27 Thread Teddy R. Payne
Dusty, What type of single quotes are those? What is the source of the text? Was the query copied and pasted from a Microsoft document? Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Wed, Jan 27, 2010 at 2:24 PM, Dusty Hale du...@climbonline.com wrote: Hi: I've run

Re: [ACFUG Discuss] a very strange sql error that only happens when using CF

2010-01-27 Thread Teddy R. Payne
AND donorid like '%9986%' ORDER BY donorid /cfquery Does this run correctly? Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Wed, Jan 27, 2010 at 2:47 PM, Dusty Hale du...@climbonline.com wrote: Teddy here's how I build the qText string part where the quotes are: if(len

Re: [ACFUG Discuss] a very strange sql error that only happens when using CF

2010-01-27 Thread Teddy R. Payne
and query param the search string. This may also add some legibility as well. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Wed, Jan 27, 2010 at 4:25 PM, Dusty Hale du...@climbonline.com wrote: I also stopped using the cfquery tag and now it works: cfscript classLoader

Re: [ACFUG Discuss] Ideal memory Configuration for CF Production server?

2010-01-14 Thread Teddy R. Payne
Google is your friend: http://lmgtfy.com/?q=maximum+coldfusion+heap+size+windows+32 Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Thu, Jan 14, 2010 at 4:55 PM, shawn gorrell chees...@yahoo.com wrote: 32 bit Windows cannot even fully address 4GB of RAM to begin

Re: [ACFUG Discuss] Examples of How NOT to Code in ColdFusion?

2010-01-11 Thread Teddy R. Payne
information does make it easier to keep uniform and comprehensive data. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com

Re: [ACFUG Discuss] Examples of How NOT to Code in ColdFusion?

2010-01-05 Thread Teddy R. Payne
the original intent of this email chain was more for identifying small little nit pick things for fun. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Tue, Jan 5, 2010 at 8:25 AM, Derrick Peavy derr...@derrickpeavy.comwrote: *(looking forward to being told how wrong I am here

Re: [ACFUG Discuss] Examples of How NOT to Code in ColdFusion?

2010-01-05 Thread Teddy R. Payne
= / or cfscript variables.foo = ''; /cfscript ... etc. =) Prevents all sorts of problems for me when I receive data and variables from unknown recipients. My $0.02, Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Tue, Jan 5, 2010 at 11:04 AM, Teddy R. Payne teddyrpa...@gmail.comwrote

Re: [ACFUG Discuss] javacast to convert string to int?

2009-12-01 Thread Teddy R. Payne
other more brainiac solutions out there as well in the realm of hashing techniques or encryption algorithms. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Tue, Dec 1, 2009 at 11:03 AM, Derrick Peavy derr...@derrickpeavy.comwrote: Trying to get a numerical value for a string

Re: [ACFUG Discuss] problem inserting crc32 values

2009-11-25 Thread Teddy R. Payne
are already using JConnector, ignore the recommendation. =) Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Tue, Nov 24, 2009 at 5:15 PM, Derrick Peavy derr...@derrickpeavy.comwrote: Trying to remove a PHP script from a cold fusion site by replacing it with a simple CF query

Re: [ACFUG Discuss] problem inserting crc32 values

2009-11-25 Thread Teddy R. Payne
to defer to the rest of the community. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Wed, Nov 25, 2009 at 12:04 PM, Derrick Peavy derr...@derrickpeavy.comwrote: Teddy: Banging my head here. Can't get CAST to work in any form, even with the database itself (using phpmyadmin

Re: [ACFUG Discuss] SQL Injection

2009-11-20 Thread Teddy R. Payne
could also reduce your noise to sound ratio as well. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Fri, Nov 20, 2009 at 9:44 AM, Rudi Shumpert shump...@gmail.com wrote: the stuff I'm seeing is nothing really new, just was wondering if there are some best practices on what do

Re: [ACFUG Discuss] SQL Injection

2009-11-20 Thread Teddy R. Payne
of revenue, developer time, private data, and public confidence. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Fri, Nov 20, 2009 at 9:56 AM, Rudi Shumpert shump...@gmail.com wrote: Doing most of that. Except for the analysis later part. Anything specific you look

Re: [ACFUG Discuss] porting data using wddx

2009-11-20 Thread Teddy R. Payne
/ /cfif /cfif cfreturn qryFromFile / /cffunction Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Fri, Nov 20, 2009 at 2:35 PM, Jeff Howard jeh...@gmail.com wrote: Thanks for the help. I understand how to do that part, but how do I get the packet from my server

Re: [ACFUG Discuss] porting data using wddx

2009-11-20 Thread Teddy R. Payne
Jeff, My code snippet is as is as I wrote it ad hoc without testing it against a live file and off of memory, but the general idea is there. Teddy

Re: [ACFUG Discuss] porting data using wddx

2009-11-20 Thread Teddy R. Payne
about where the data is coming from, so the client is not expecting a certain behavior. Just suggestions though. =) Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Fri, Nov 20, 2009 at 2:50 PM, Jeff Howard jeh...@gmail.com wrote: Thanks, I'll work with it and see what I can get

Re: [ACFUG Discuss] porting data using wddx

2009-11-20 Thread Teddy R. Payne
that and the subsequent value returned from the function came back as a query. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Fri, Nov 20, 2009 at 3:10 PM, Jeff Howard jeh...@gmail.com wrote: I think that is exactly what I am trying to do if I can just figure out the wddx issue. I

Re: [ACFUG Discuss] porting data using wddx

2009-11-20 Thread Teddy R. Payne
Not a problem and glad that you re-mediated the issue and were able to move forward. =) Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Fri, Nov 20, 2009 at 4:09 PM, Jeff Howard jeh...@gmail.com wrote: Sorry Teddy, I missed this. I tried the getTempDirectory thing as well

Re: [ACFUG Discuss] CFEclipse Read Only Files

2009-09-01 Thread Teddy R. Payne
Press Window Preferences CFEclipse Editor Turn off the check box next to Warn when opening read only files Voila! Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com

Re: [ACFUG Discuss] Charlies presentation - CFApplication tag without clientmanagment sessionmanagement means registry populated every time???

2009-08-18 Thread Teddy R. Payne
Ajas, Here is a link in the ColdFusion Livedocs for CF8 concerning how to use Client variables: http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=sharedVars_08.html This may assist you in answering some questions about client variables. Teddy R. Payne, ACCFD Google Talk

Re: [ACFUG Discuss] Learning a ColdFusion Framework: Update

2009-08-12 Thread Teddy R. Payne
these functions are doing, you may want to move away from some of them as you will probably need to code more strictly or have requirements that the generic functions do not handle. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Tue, Aug 11, 2009 at 10:07 AM, Clarke Bishop cbis

Re: [ACFUG Discuss] cfdocument filename backslash

2009-07-22 Thread Teddy R. Payne
Uniform not Universal...gah...

Re: [ACFUG Discuss] Learning a ColdFusion Framework

2009-07-20 Thread Teddy R. Payne
Flex calling a framework is a nice feature. Model-Glue, unless it has changed recently, takes advantage of ColdSpring. Using the RemoteObjectProxy in ColdSpring made it pretty simple to create a webservice that calls the result of several dependent CFC objects created in the application to be

Re: [ACFUG Discuss] Learning a ColdFusion Framework

2009-07-19 Thread Teddy R. Payne
R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Sun, Jul 19, 2009 at 2:57 PM, Clarke Bishop cbis...@resultantsys.comwrote: Thanks guys! I know that for some people choosing a framework becomes a religious question. I started to say something about this in my original message

Re: [ACFUG Discuss] Error with inherited method

2009-07-14 Thread Teddy R. Payne
Ed, I took a brief look and created a simple example. I created a gov folder in my webroot. I have an index.cfm in there with this code: cfset foo = createobject(component, gov.epa.rtp.onlinetraining.trainee.trainee) / cfset fooDao = createobject(component,

Re: [ACFUG Discuss] CF 9 and CF Builder beta are now public

2009-07-13 Thread Teddy R. Payne
In multi-server mode during the initial CF installation, you can set it up so that you can set up multiple CF MX (6, 7, 8 , 9). You basically deploy them as Enterprise Archives (EAR) with a Web Archive (WAR) inside of it. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Mon, Jul

Re: [ACFUG Discuss] CF 9 and CF Builder beta are now public

2009-07-13 Thread Teddy R. Payne
Here is a link that might for multi-server installation: http://livedocs.adobe.com/coldfusion/8/install.pdf Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com

Re: broken urls in email RE: [ACFUG Discuss] ColdFusion and MySQL

2009-07-09 Thread Teddy R. Payne
Charlie/Jasun, Excellent! And we look forward to the special announcement for the CF Meetup. Teddy

Re: [ACFUG Discuss] ColdFusion and MySQL

2009-07-08 Thread Teddy R. Payne
Clarke, What version of MySQL are you using? I believe 5+ is InnoDB storage only. Teddy

Re: [ACFUG Discuss] Re: [AFFUG Discuss] ColdFusion and MySQL

2009-07-08 Thread Teddy R. Payne
Jeremy, You reminded me of a fix that I did for a client that resolved a few issues. I implemented Connector/J for the MySQL JDBC drivers. http://www.mysql.com/products/connector/ Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com

Re: [ACFUG Discuss] ColdFusion and MySQL

2009-07-08 Thread Teddy R. Payne
Doug G. gets a gold star for the day for the CF approach to display the drivers. =) (not being patronizing here)

Re: broken urls in email RE: [ACFUG Discuss] ColdFusion and MySQL

2009-07-08 Thread Teddy R. Payne
Well, I hope that will help you in the future to get your URL(s) across to those (like me) who may not have too much bandwidth for any given email. T

Re: broken urls in email RE: [ACFUG Discuss] ColdFusion and MySQL

2009-07-08 Thread Teddy R. Payne
All, And allow me to apologize here as I did not hit the correct reply to send a personal note to Charlie. I am by no means trying to be patronizing in public here. I was attempting to resolve a difference in vernacular. Mia culpa Charlie, Teddy

Re: [ACFUG Discuss] NEVERMIND RE: CF in the database?

2009-07-01 Thread Teddy R. Payne
Mark, To be honest, I am still unsure what you are trying to accomplish. You mention a mail merge. How is the merged document sent out? Are you storing a copy of the file? Are you generating a document dynamically to display on the screen for printing? Color me curious... Teddy

Re: [ACFUG Discuss] PayPal IPN and ColdFusion

2009-06-24 Thread Teddy R. Payne
Have you looked into? http://paypalcfc.riaforge.org/ Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Wed, Jun 24, 2009 at 12:15 PM, Derrick Peavy derr...@derrickpeavy.comwrote: I KNOW that someone here has cracked this nut before. I have integrated PayPal into a couple of CF

Re: [ACFUG Discuss] PayPal IPN and ColdFusion

2009-06-24 Thread Teddy R. Payne
It would be more apt for me be called the idiot for recommending a project link with so little detail. My apologies for that. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com

Re: [ACFUG Discuss] Engraved Text Effect

2009-06-11 Thread Teddy R. Payne
Clarke, Yes, you can do this with cfimage. cfimage uses a Java library, so you are already using one. ;-) The method that I have seen is using imageDrawText() function: http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Images_12.html Teddy R. Payne, ACCFD Google Talk

Re: [ACFUG Discuss] Tour pictures are online

2009-06-10 Thread Teddy R. Payne
Ben's Deck probably will not be available probably until after the tour. This is typically so people can be surprised when they attend the events. After the events are over, I would not be surprised if there would be more detail available. Teddy

Re: [ACFUG Discuss] Cfcompile

2009-06-05 Thread Teddy R. Payne
Tom, If you are trying to obscure the source code, you want to research cfencode utility: http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=appSecurity_02.html cfcompile is just a way to speed software deployment as the cf source code would already be converted into the

Re: [ACFUG Discuss] Cfcompile

2009-06-05 Thread Teddy R. Payne
@Cameron, I believe cfencode is the obfuscation of CF code and not the Java byte code. A file scrambler of sorts in an algorithm that the CF application understands. @Tom, Mia culpa. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Fri, Jun 5, 2009 at 9:41 AM, Cameron Childress

Re: [ACFUG Discuss] Any recommendations for a website capture utility with CFusion

2009-06-05 Thread Teddy R. Payne
Bill, cfexecute is tricky. Have you tried executing this command first from the command line? This would tell you that the software is installed correctly on the web/app server you are executing this code on. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com

Re: [ACFUG Discuss] Any recommendations for a website capture utility with CFusion

2009-06-05 Thread Teddy R. Payne
Bill, I did not quite get that... On Fri, Jun 5, 2009 at 9:59 AM, Bill Laing bla...@eyewonder.com wrote: PGh0bWwgeG1sbnM6dj0idXJuOnNjaGVtYXMtbWljcm9zb2Z0LWNvbTp2bWwiIHhtbG5zOm89InVy bjpzY2hlbWFzLW1pY3Jvc29mdC1jb206b2ZmaWNlOm9mZmljZSIgeG1sbnM6dz0idXJuOnNjaGVt

Re: [ACFUG Discuss] Any recommendations for a website capture utility with CFusion

2009-06-05 Thread Teddy R. Payne
or outputfile attribute to reference what you just generated. These are only some things that I recall that I did on a project where I created dynamic images prior to cfimage being available. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com 2009/6/5 Bill Laing bla...@eyewonder.com Thanks

Re: [ACFUG Discuss] Intro CF Training

2009-06-02 Thread Teddy R. Payne
with a schedule on their available Adobe ColdFusion training classes. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Tue, Jun 2, 2009 at 1:34 PM, Rudi Shumpert shump...@gmail.com wrote: Hey folks, We have a new dev starting out fresh in CF with a background in php. Any suggestions

Re: [ACFUG Discuss] Using tabs in CFLAYOUT

2009-05-27 Thread Teddy R. Payne
your example. Cheers, Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Wed, May 27, 2009 at 10:52 AM, szwedo...@epamail.epa.gov wrote: I have both a specific and a general question for the group. Specific question: Anyone know how to use the underlying Ext lib to register events

[ACFUG Discuss] Adobe E-Seminar for

2009-05-26 Thread Teddy R. Payne
:00 EST Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com

Re: [ACFUG Discuss] Encrypting URL Parameters

2009-05-08 Thread Teddy R. Payne
Giving a unique ID to an object is like trying to replicate the functionality or base premise of Hibernate if you are using it to track state of the object's store.

Re: [ACFUG Discuss] Encrypting URL Parameters

2009-05-08 Thread Teddy R. Payne
lol, I need to create a teddy.cfc =) bob.cfc sounds just as good. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Fri, May 8, 2009 at 11:14 AM, shawn gorrell chees...@yahoo.com wrote: There are other ways to generate unique ids. You could give them names like Chad, or Bob

Re: [ACFUG Discuss] Encrypting URL Parameters

2009-05-07 Thread Teddy R. Payne
not worry about tracking a time. Otherwise, you may want to track when the last time an unsubscribe was sent to them. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Thu, May 7, 2009 at 12:52 PM, John Mason ma...@fusionlink.com wrote: For example, a simple UUID would do the trick here

Re: [ACFUG Discuss] ColdFusion 7 + SQL Server 2000. 500 Operation failed on the data source named XYZ.

2009-05-05 Thread Teddy R. Payne
Does the user that you bind for the datasource have access to create table? Client storage creates two database tables: CDATA, CGLOBAL Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Tue, May 5, 2009 at 11:15 AM, Ajas Mohammed ajash...@gmail.com wrote: Hi, I have

Re: [ACFUG Discuss] ColdFusion 7 + SQL Server 2000. 500 Operation failed on the data source named XYZ.

2009-05-05 Thread Teddy R. Payne
Can you confirm that the client store tables exist in the CF DSN that you are referencing in your application file? Does XYZ have CDATA and CGLOBAL in it? Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Tue, May 5, 2009 at 1:11 PM, Ajas Mohammed ajash...@gmail.com wrote: Hi

Re: [ACFUG Discuss] ColdFusion 7 + SQL Server 2000. 500 Operation failed on the data source named XYZ.

2009-05-05 Thread Teddy R. Payne
What does Yes mean in this context? Does Yes mean that you are getting the same error as the the user who is complaining or are just saying yes that you have cookies turned on? Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Tue, May 5, 2009 at 2:02 PM, Ajas Mohammed ajash

Re: [ACFUG Discuss] ColdFusion 7 + SQL Server 2000. 500 Operation failed on the data source named XYZ.

2009-05-05 Thread Teddy R. Payne
inside a given Application.cfm structure, place a new Application.cfm in a subdirectory with either a new name on a cfapplication tag or just leave the document blank. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Tue, May 5, 2009 at 2:46 PM, Ajas Mohammed ajash...@gmail.com wrote

Re: [ACFUG Discuss] Adobe Support Packages

2009-04-23 Thread Teddy R. Payne
and proposed infrastructure that was earmarked money. The budgetary meeting also led into their enterprise hardware/software life-cycle (sunsetting vs. maintenance vs. new procurement). Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Thu, Apr 23, 2009 at 11:12 AM, Thomas Nunn larry.n

Re: re[2]: [ACFUG Discuss] cross domain cookie validation

2009-04-16 Thread Teddy R. Payne
is called for data. If it is just the initial customer information, then it is a quick kill at the start of your process. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Thu, Apr 16, 2009 at 12:21 PM, Mischa Uppelschoten mischa.uppelscho...@bankersx.com wrote: : Hey Mischa

Re: re[4]: [ACFUG Discuss] cross domain cookie validation

2009-04-16 Thread Teddy R. Payne
, please consider the fact that I am of my own mind and my own opinion on any public matter on this forum. As you too have ability to draw conclusions, perspectives or considerations contrariwise or not with the same rights. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Thu, Apr 16

Re: re[6]: [ACFUG Discuss] cross domain cookie validation

2009-04-16 Thread Teddy R. Payne
Jeff, I needed a brain teaser today. You obvisouly want to replace container with your cfhttp.responseheader. Also, I make the assumption that there will always be a = sign in the list items in the second loop. You may want to put some conditional logic there. This is just to show how to get

Re: [ACFUG Discuss] Update graph without refresh

2009-04-10 Thread Teddy R. Payne
Seth, I completely understand your dilemma and I think your first instinct is the right one. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Thu, Apr 9, 2009 at 8:04 PM, Tepfer, Seth la...@emory.edu wrote

Re: [ACFUG Discuss] cfinput autosuggest

2009-04-01 Thread Teddy R. Payne
, that JS is just to check your version of the flash player and show the SWF correctly. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Wed, Apr 1, 2009 at 10:01 AM, Clarke Bishop cbis...@resultantsys.comwrote: Thanks Josh, Teddy, and Steven! I’ve convinced myself that the problem

Re: [ACFUG Discuss] cfinput autosuggest

2009-03-31 Thread Teddy R. Payne
cfinput tag to introspect where the generated libraries are stored. I know cfinput validation javascript code is put inline into the html portion of the document for the most part. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Tue, Mar 31, 2009 at 11:16 AM, Clarke Bishop cbis

Re: [ACFUG Discuss] cfinput autosuggest

2009-03-31 Thread Teddy R. Payne
. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Tue, Mar 31, 2009 at 11:24 AM, Teddy R. Payne teddyrpa...@gmail.comwrote: Yes, AC_ functions are adobe generated. Similar in Flex, AC_FL_ functions are used for loading the flash player to display the compiled SWF(s). In Flex though

Re: [ACFUG Discuss] over-stating security concerns? (was RE: ValidateAt parameter is effectively only client side )

2009-03-11 Thread Teddy R. Payne
A worthy discussion that show concerns that each of us need to keep in mind on this matter. Perhaps an agreement to disagree on the various points exemplified, shake hands and I buy the next round of drinks? Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Wed, Mar 11, 2009 at 11

Re: [ACFUG Discuss] Password CFinput regular expression - throws alert/error after correction also

2009-03-09 Thread Teddy R. Payne
you can help it. These are just a few of the ideas that you can touch on that surround passwords. Now CF supports most of these ideas, but you may have to also leverage supporting technologies, but CF allows you to collaborate with them. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com

Re: [ACFUG Discuss] Password CFinput regular expression - throws alert/error after correction also

2009-03-09 Thread Teddy R. Payne
Ajas, You might want to try doing a web searching: http://blog.stevenlevithan.com/archives/regex-lookahead-bug I found this within two searches that may give you some insight that IE and the RegEx engine have some issues and the example above addresses a password RegEx specifically. Teddy

Re: [ACFUG Discuss] Password CFinput regular expression - throws alert/error after correction also

2009-03-09 Thread Teddy R. Payne
Not a problem, Ajas. It happens and it will probably happen again to any one of us. Happy Coding, T

Re: [ACFUG Discuss] excel or csv to database table

2009-03-06 Thread Teddy R. Payne
of that API. Support and other licenses available if needed. This will make your Excel nightmares go away. :) I have not tried it, but it has been updated recently and may remove some of what you are trying to achieve. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Fri, Mar 6, 2009 at 9

Re: [ACFUG Discuss] isValid and validate=integer

2009-03-04 Thread Teddy R. Payne
Troy, I am not sure I would say this a case for a bug report. It seems like what you are trying to compare is the representation of an integer in the context of a string versus teh representation of a integer in context of a number. As ColdFusion has dynamic data types, $100 as a currency is a

Re: [ACFUG Discuss] cfmail issue

2009-03-03 Thread Teddy R. Payne
I believe there are a couple of open source mail bouncing applications on riaforge.com as well as Ray Camden had a small utility that was created an additional interface in your ColdFusion administrator to inspect your mail spool. These could help in your troubleshooting. Teddy R. Payne, ACCFD

Re: [ACFUG Discuss] CF 7 Pagination - Query rerun making pagination useless

2009-02-23 Thread Teddy R. Payne
at the end of the day was all that matters illusion or not. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Mon, Feb 23, 2009 at 3:03 PM, Mischa Uppelschoten ext 10 mischa.uppelscho...@bankersx.com wrote: : But if the query is run *every time* when you go to next page, inst

Re: [ACFUG Discuss] Discount for Flex Camp Miami

2009-02-20 Thread Teddy R. Payne
Road trip!!!

Re: [ACFUG Discuss] CF Applications hosted on third party webserver/hosting services

2009-02-17 Thread Teddy R. Payne
on various options on server monitoring tools for production systems as this can negatively impact your system's performance. Do you have a staging server where you can perform test cases? Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Tue, Feb 17, 2009 at 2:11 PM, Ramirez, Ruben

Re: [ACFUG Discuss] Parsing XML

2009-02-13 Thread Teddy R. Payne
Seth, I did not see anything in your message. Accidental or premature send? Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com

Re: [ACFUG Discuss] weird cfinput vs input stuff. date is shown as {d '2009-02-12'} vs 02/12/2009

2009-02-12 Thread Teddy R. Payne
Ajas, This is my unconfirmed assertion. You have a validator type of type date, which returns a string expression of a date object notation. My assertion is that the validator type that you use will give you the data type on the submission in its expressed format. I changed your code to

Re: [ACFUG Discuss] weird cfinput vs input stuff. date is shown as {d '2009-02-12'} vs 02/12/2009

2009-02-12 Thread Teddy R. Payne
Ajas, I recommend reading the Adobe Live Docs concerning validation and form fields. In the below snippet, you will see some curious behavior: cfparam name=form.test default= / cfdump var=#form# cfform name=foo action=untitled2.cfm cfinput type=text name=absence_date_1 size=10 value=

Re: [ACFUG Discuss] weird cfinput vs input stuff. date is shown as {d '2009-02-12'} vs 02/12/2009

2009-02-12 Thread Teddy R. Payne
What of the AJAX approach to validation? You can pass the form to a server side object for validation. Take the CF8 feature of cfajaxproxy. Obviously, you can turn of JavaScript. As well as a client initiated validation would not solely suffice. Teddy R. Payne, ACCFD Google Talk - teddyrpa

  1   2   >