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 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 would be: > > 128910

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" wrote: > Using what web server? That’s the crux of where any

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 wrote: > Assuming a single server, development instance install. > > {installLocation}\runtime\servers\coldfusion\SERVER-INF\jrun.x

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

2012-09-20 Thread Teddy R. Payne
>" and it > worked fine. > > I appreciate your advice and time. > > -- > *From:* Teddy R. Payne > *To:* discussion@acfug.org > *Sent:* Tuesday, September 18, 2012 2:13 PM > *Subject:* Re: [ACFUG Discuss] Converting HTML formatted t

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 o

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 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 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
creation. Pseudo code: 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 wrote: > Teddy, > > The logic and cfpdf/cfdocument stuff is already in place i.e. on the pa

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

2011-03-17 Thread Teddy R. Payne
Ajas, You can probably just or 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 Google Talk

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 at

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 wrote: > Does anyone know what element to use for the mouse over color for the column > headers in cfgrid?  I can

Re: [ACFUG Discuss] Query within a Query

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

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

2011-01-28 Thread Teddy R. Payne
Ahh, that is unfortunate. Adding logic just to "re-parse" does seem like accommodating an interface issue. On Fri, Jan 28, 2011 at 1:24 PM, Steve Ross wrote: > I think the issue is he is consuming a webservice he has no control over... > > On Fri, Jan 28, 2011 at 1:22

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

2011-01-28 Thread Teddy R. Payne
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 Mohammed wrote: > Charlie, spot on. I was expecting the same resul

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 wrote: > The code that is causing the issue is a simple insert query, > >insert into folder_ka >(name,

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 On

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
nts 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 wrote: > Afternoon All! > > > > Here’s my basic dilemma. I’m enhancin

Re: [ACFUG Discuss] Noob help

2010-12-06 Thread Teddy R. Payne
exists and how often it is being referenced. When you cannot find code, then you need to expand your searches to the interfaces to the application. This could be in many forms to include databases, webservices, ...etc where either data access or other code logic could reside. Happy Hunting! Tedd

Re: [ACFUG Discuss] Noob help

2010-12-06 Thread Teddy R. Payne
Mike, In your 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 wrote: > Hi everyone, > I am new to Cold Fusion

Re: [ACFUG Discuss] Performance with Self-Join

2010-02-22 Thread Teddy R. Payne
is a Celko model that fits this type 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 wrote: > No. As in the case of an addendum or appendix, it relates to ONLY one &

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 wrote: > Good afternoon, > > Normally, I would not hesitate to creat

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
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] C# question clarified

2010-02-08 Thread Teddy R. Payne
ame 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

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 wrote: >

Re: [ACFUG Discuss] Query or Stored Proc calling

2010-02-04 Thread Teddy R. Payne
n the returned data that is stored in the variable. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Wed, Feb 3, 2010 at 10:20 PM, Ajas Mohammed wrote: > Hi, > > I came across code like this > > >select col1,col2,col3 from tbl where condition > > > No

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

2010-01-27 Thread Teddy R. Payne
De nada, amigo. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Wed, Jan 27, 2010 at 5:49 PM, Dusty Hale wrote: > I may have to do that because now I have another issue LOL. While using the > connection string approach, it works great on our production server. However >

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

2010-01-27 Thread Teddy R. Payne
and [haircolor] like Qualify the columns and the view 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 wrote: > I also stopped using the tag and

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

2010-01-27 Thread Teddy R. Payne
, height, weight, heightmetric, weightmetric, reportedpregnancy, opendonorid, infomp3avail, ethnicity, cmvstatus, DateEntered, ARTavail, ARTonly, SelectDonors FROM v_websearch where available = 1 AND donorid like '%9986%' ORDER BY donorid Does this run correctly? Teddy R. Payne, ACCFD G

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 wrote: > Hi: > > I've run into a very

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 wrote: > 32 bit Windows cannot even fully address 4GB of RAM to begin with. The > actual addre

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

2010-01-11 Thread Teddy R. Payne
hared repository for contact 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
orts 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 wrote: > I agree that the amount of concurrent users and traffic do determine how >

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

2010-01-05 Thread Teddy R. Payne
less discussion about when to use a framework, design pattern, anti-pattern, ...etc. I think 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 Pe

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

2009-12-01 Thread Teddy R. Payne
bably some 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 wrote: > Trying to get a numerical value for a string, store i

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 wrote: > Teddy: > > Banging my head here. Can't get CAST to work in any form, even with the > database itself (using phpmyadm

Re: [ACFUG Discuss] problem inserting crc32 values

2009-11-25 Thread Teddy R. Payne
And many blessings in return, your Majesty. ;-) Teddy

Re: [ACFUG Discuss] problem inserting crc32 values

2009-11-25 Thread Teddy R. Payne
ml If you 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 wrote: > Trying to remove a PHP script from a cold fusion site by replacing it with > a simple CF query. >

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 wrote: > Sorry Teddy, I missed this. I tried the getTempDirectory thing as well and >

Re: [ACFUG Discuss] porting data using wddx

2009-11-20 Thread Teddy R. Payne
read after 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 wrote: > I think that is exactly what I am trying to do if I can just figure out the > wdd

Re: [ACFUG Discuss] porting data using wddx

2009-11-20 Thread Teddy R. Payne
Jeff, Have you tried saving the file as a ".txt" and then perform the same task? Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Fri, Nov 20, 2009 at 3:07 PM, Jeff Howard wrote: > Teddy, > > Now that I'm actually working on what you sent, I notice that i

Re: [ACFUG Discuss] porting data using wddx

2009-11-20 Thread Teddy R. Payne
he caveats 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 wrote: > Thanks, I'll work with it and see what I can

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
Something like: Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Fri, Nov 20, 2009 at 2:35 PM, Jeff Howard wrote

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 wrote: > Doing most of that. > > Except for the analysis later part. Anything specific you look for in &g

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 wrote: > the stuff I'm seeing is nothing really new, just was wondering if there are > some best practices on what do to af

Re: [ACFUG Discuss] browser based IDE?

2009-11-19 Thread Teddy R. Payne
Wes, I am familiar with 9ne, which is similar to Emacs (but not): http://robrohan.com/projects/9ne/ And mozilla is working on Bespin: https://mozillalabs.com/blog/2009/02/introducing-bespin/ 9ne by Rob Rohan has been around a few years. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com

Re: [ACFUG Discuss] live filtering of search results

2009-11-19 Thread Teddy R. Payne
Jeff, Are you looking to edit the grid dynamically? Anuj Gakhar had a good code example that I found to offer some good insight into a recent project piece that I did: http://www.anujgakhar.com/2008/03/18/crud-with-cfgrid-html-format/ This was based off a Dan Vega post. Teddy R. Payne, ACCFD

Re: [ACFUG Discuss] live filtering of search results

2009-11-19 Thread Teddy R. Payne
x-Tutorial-1-AutoSuggest Now, if you are trying to display this information in grid (dynamic table). This is a combination of using cfgrid and dynamic filtering. Dan Vega has some good blog posts about using cfgrid. http://www.danvega.org/blog/ Teddy R. Payne, ACCFD Google Talk - teddyrpa...

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
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 wrote: > I

Re: [ACFUG Discuss] cfdocument filename backslash

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

Re: [ACFUG Discuss] cfdocument filename backslash

2009-07-22 Thread Teddy R. Payne
navigate to \\fooServer\sharingFolder\subfolder This is a network layer concern and not an application layer concern. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Wed, Jul 22, 2009 at 5:18 PM, Ajas Mohammed wrote: > Hi there, > > I came across code today which crea

Re: [ACFUG Discuss] Learning a ColdFusion Framework

2009-07-21 Thread Teddy R. Payne
I read through the wiki for FW/1. For something small, there is still some nuance there. I see some code examples and where to put various files, but a sample application is what is really needed there. Perhaps I missed the location of the sample application. >From what he is describing is prob

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 ava

Re: [ACFUG Discuss] Learning a ColdFusion Framework

2009-07-19 Thread Teddy R. Payne
Tim, The built-in ORM in CF9 is Java's Hibernate under the covers. What I expect to see in MVC frameworks that use a current ORM like Transfer or Reactor will probably provide an ability to use the native ORM engine when CF9 becomes gold. There may be a benefit in performance with using a native

Re: [ACFUG Discuss] Learning a ColdFusion Framework

2009-07-19 Thread Teddy R. Payne
u. You know your aptitude more than us and you know what problems you are trying to solve. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Sun, Jul 19, 2009 at 2:57 PM, Clarke Bishop wrote: > Thanks guys! > > > > I know that for some people choosing a framework bec

Re: [ACFUG Discuss] Error with inherited method

2009-07-14 Thread Teddy R. Payne
If the components are publishing correctly, it really does sound like implementation or the consumption of said components. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Tue, Jul 14, 2009 at 12:28 PM, wrote: > Thanks for all the detailed work Teddy. My trainee.cfc DOES h

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: So, we are in "gov". In the gov/epa/rtp/land/ folder, there is a file called bean.cfc. It has nothing in it. (will explain shortly) So, let's go

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: [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: 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: 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: broken urls in email RE: [ACFUG Discuss] ColdFusion and MySQL

2009-07-08 Thread Teddy R. Payne
Charlie, Please take this in good humor. When I say "bandwidth", I am referring to the amount of time that I have to allocate to a given topic or item. Situation: "Teddy, can you get me that TP report by 4:00?" "Sorry Bill, I do not have the bandwidth today to fit that in, how about tomorrow mor

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: [ACFUG Discuss] ColdFusion and MySQL

2009-07-08 Thread Teddy R. Payne
Charlie, I think that your URL broke across two lines. http://www.carehart.org/blog/client/index.cfm/2006/8/8/checking_jdbc_driver_version The above link should work. Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Wed, Jul 8, 2009 at 3:38 PM, Charlie Arehart wrote: > And

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: [ACFUG Discuss] ColdFusion and MySQL

2009-07-08 Thread Teddy R. Payne
There is that.. =)

Re: [ACFUG Discuss] ColdFusion and MySQL

2009-07-08 Thread Teddy R. Payne
If you have CFEXECUTE ability, here is a curious post for that question: http://blog.pengoworks.com/index.cfm/2008/1/15/Display-ColdFusion-JDBC-Drivers-on-Windows Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Wed, Jul 8, 2009 at 2:48 PM, John Mason wrote: > You'll

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

[ACFUG Discuss]

2009-07-08 Thread Teddy R. Payne
In response to Howard from the other mailing list: Teddy, what exactly do you mean by that? Shouldn't the JDBC drivers be able to deal with the InnoDB database type? Howard, I was just getting a semblance of how old the database that Clarke was dealing with. MyISAM and InnoDB storage databases a

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] 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
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] 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 wrote: > I KNOW that someone here has cracked this nut before. I have integrated > PayPal into a couple of CF sites recently,

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] Any recommendations for a website capture utility with CFusion

2009-06-05 Thread Teddy R. Payne
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 > Thanks Teddy, I have

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 wrote: > PGh0bWwgeG1sbnM6dj0idXJuOnNjaGVtYXMtbWljcm9zb2Z0LWNvbTp2bWwiIHhtbG5zOm89InVy > bjpzY2hlbWFzLW1pY3Jvc29mdC1jb206b2ZmaWNlOm9mZmljZSIgeG1sbnM6dz0idXJuOnNjaGVt > YXMtbWljcm9zb2Z0LWNvbTpvZmZpY2U6d29yZCIgeG1sbnM6eD0

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] 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] 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 associated

Re: [ACFUG Discuss] Intro CF Training

2009-06-02 Thread Teddy R. Payne
*chuckle* It's all good John. I referenced them both early in this email chain. ACFUG has had great experiences with both organizations that we oftentimes forget to mention how much we value each organization.

Re: [ACFUG Discuss] Intro CF Training

2009-06-02 Thread Teddy R. Payne
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 wrote: > Hey folks, > > We have a new dev starting out fresh in CF with a background in php. > > Any suggesti

Re: [ACFUG Discuss] Intro CF Training

2009-06-02 Thread Teddy R. Payne
Rudi, Well, your new developer should also join this mailing list. Mailing lists are good resources for asking questions to a group that is pretty responsive. Blogs, Forums, Mailing Lists, User Groups, Books, Conferences, and a willingness to learn. That is how you probably learn any language th

Re: [ACFUG Discuss] Intro CF Training

2009-06-02 Thread Teddy R. Payne
Errata: "Have you sat down and asked him or her how they learned PHP?"

Re: [ACFUG Discuss] Using tabs in CFLAYOUT

2009-05-27 Thread Teddy R. Payne
function(){ updateElement(); }); My apologies for simplifying your example. Cheers, Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Wed, May 27, 2009 at 10:52 AM, wrote: > > I have both a specific and a general question for the group. > > Specific question: Anyone

[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
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 wrote: > There are other ways to generate unique ids. You could give them names like > Chad, or Bob, or Steve, o

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-07 Thread Teddy R. Payne
d 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 wrote: > For example, a simple UUID would do the trick here. > > J

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 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 wrote: > Ok, here is another

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,

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

2009-05-05 Thread Teddy R. Payne
The user with the issue, do they have cookies enabled? Teddy R. Payne, ACCFD Google Talk - teddyrpa...@gmail.com On Tue, May 5, 2009 at 1:47 PM, Ajas Mohammed wrote: > Yes, XYZ has CDATA and CGLOBAL in it. > > Let me know if you need more information. I am stumped. > > Thank

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 wrote: > Hi, > > I b

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 wrote: > Hi, > > I have a datasource def

  1   2   >