Re: CF8, visual cropping tools?

2007-08-16 Thread Eric Cobb
LHWH Interactive wrote: Without re-inventing the wheel, does anyone know of some visual cropping tools that take advantage of CF8's cropping ability? Something that shows you the image you just uploaded, with some sort of visual overlay that allows you to draw a square over the area you want

Re: Hosting CF 8

2007-09-04 Thread Eric Cobb
I've used Crystal Tech for years, and I've never had a problem with their service. I've got about 15 client's sites running on Crystal Tech, and they're all happy as well. I really like their Control Center as it's easy for me to manage everything, I can even create accounts for my clients

Re: Hosting CF 8

2007-09-04 Thread Eric Cobb
No problem. I'm glad I could help. Vince Collins wrote: Thanks very much for the detailed response Eric! Vince http://www.vincentcollins.com Eric Cobb wrote: I've used Crystal Tech for years, and I've never had a problem with their service. I've got about 15 client's sites

Re: Forums?

2007-09-18 Thread Eric Cobb
Try Galleon by Ray Camden: http://galleon.riaforge.org/ Justin Scott wrote: Can anyone make recommendations on a decent ColdFusion-based forum application similar to phpBB or vBulletin. Free is preferred, but I don't mind dropping some $$$ on a decent app. Thanks in advance! -Justin

Re: CFStoredProc out variable

2007-10-05 Thread Eric Cobb
CF returns the value of the OUT variable as a regular variable, just like you created it with cfset for example. Try this: cfstoredproc procedure=addOneToOneChildFolder datasource=portdb cfprocparam type=in cfsqltype=cf_sql_varchar value=#url.OneToOneFolder# null=no cfprocparam type=in

Re: 2007 Web Design Survey

2007-10-19 Thread Eric Cobb
LMAO! Thanks, Eric Jochem van Dieten wrote: [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hey Bruce, Great response. I'm doing the same thing you're doing. I guess I just want to make that jump to a higher level beyond 9-5 and side jobs which is a great living. But I want to join those guys

Re: New 64-bit Dev Server

2007-10-23 Thread Eric Cobb
Exchange, SQL, and CF on the same box? That sounds like a disaster waiting to happen! Here are a few things that jumped into my head when I read your post: What happens when you're debugging code that keeps crashing the server, and you have to reboot a dozen times a day (from an Exchange

Re: New 64-bit Dev Server

2007-10-23 Thread Eric Cobb
Message- From: Eric Cobb [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 23, 2007 10:48 AM To: CF-Talk Subject: Re: New 64-bit Dev Server Exchange, SQL, and CF on the same box? That sounds like a disaster waiting to happen! Here are a few things that jumped into my head when I read your

Re: cfqueryparam and dynamically-created SQL

2007-10-24 Thread Eric Cobb
It did go through. Check the website, there have been several responses. http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:54002 Thanks, Eric Ben Mueller wrote: Posted this yesterday, but it didn't seem to go through... I became a convert to cfqueryparam, thanks to this

Re: CFC Not acting like I expect

2007-11-06 Thread Eric Cobb
You're trying to return propID, but you don't reference it anywhere in your Stored Procedure. The only time you reference it is with cfset propID=foo. This is just setting a variable, it's not a query, which is what your function is expecting as a return type. Thanks, Eric Bruce Sorge

Re: How do I get the characters after the last period in a string?

2007-11-07 Thread Eric Cobb
ListFirst('dog.jpg','.') Rick Faircloth wrote: This seems so simple, yet I couldn't figure out the answer even after going through the list and strings functions in the docs for CF 8. I want to return the characters in the name of a photo preceding the period. i.e.. If the photo is

Re: CFStoredProc

2007-11-09 Thread Eric Cobb
cfprocresult is for returning a query result set. If you're not returning query, then you should use: cfprocparam type=OUT cfsqltype=CF_SQL_INTEGER variable=nextval CF Developer wrote: This should have been simple as making a PBJ.

Re: Replace Syntax

2007-11-13 Thread Eric Cobb
remove the quotes around form.description #Replace(form.description,'',',ALL)# Rick Sanders wrote: Hey list, I'm trying to replace double quotes for single quotes in a string using this syntax: #Replace('form.description','',',ALL)# However, it's giving back

Re: blocking spambots

2007-11-16 Thread Eric Cobb
The easiest thing I've found is to just use a Flash/Flex form. While I realize this may not be ideal for all situations, I've had much success with it. I had a simple contact form on my website that was getting 3-5 Spam submissions per day. I put up a Flash form, and that stopped 100% of

Re: CF 5 and DAO

2008-01-03 Thread Eric Cobb
Actually, you can. Sort of. http://intersuite.com/client/index.cfm/2007/11/8/Stupid-MS-Access-Tricks This was tested on CF 7, but I would think that it would work with CF 5 Hope this helps! Eric Chad Gray wrote: I though about that, but I am forced to use Access and too my knowledge you

Re: deleting all files in a directory with code

2008-04-16 Thread Eric Cobb
If you're going to be working with a large number of files, you may want to think about tapping in to CF's underlying Java capabilities. I've found that to be much better than using cfdirectory. Che Vilnonis wrote: Glad I could help... -Original Message- From: Richard White

CF 7 Certification Exam

2008-06-05 Thread Eric Cobb
I'm wanting to take the CF 7 Certification exam. I wasn't able to find any reference to the CF 7 exam on Adobe's website, only CF 8. However, when I log in to the VUE website to see what exams are available, they have both the CF 7 and CF 8 exams listed. Whenever I try to schedule the CF 7

Re: Is it Flex?

2008-06-06 Thread Eric Cobb
He just has it programmed to play background music while you wait for your results. ;) Thanks, Eric Ryan Stille wrote: Very useful, thanks. The weird thing is, its running the swf, too? I ran pandora.com through it, because I've always wondered about that. Then some music started

Re: SP's AND cfqueryparam?

2008-07-09 Thread Eric Cobb
Do you always cfqueryparam everything, no exceptions? Yep! Are you safe just using stored procedures alone, or do you always need to couple them with cfqueryparam? If you're going to use stored procedures, use the cfstoredproc tag with cfprocparams. Thanks, Eric Will Tomlinson wrote:

Re: Login failed for user 'sa'

2008-07-15 Thread Eric Cobb
Yeah, Never, EVER, under any circumstances, use the SA login for your web apps!! Create a new login in SQL Server, and change your datasources to use that. Thanks, Eric Orlini, Robert wrote: Some of our CF programs are generating this SQL error. [Macromedia][SQLServer JDBC

Re: SQL injection attack on House of Fusion

2008-08-20 Thread Eric Cobb
is cfqueryparam something a lot of programmers really use? Only the good ones. ;) Thanks, Eric David Moore, Jr. wrote: When you say Update Your Code, are you saying using cfqueryparam? But even so, the SQL injection still will use up countless resources instead of cutting it off

Re: CFQueryParam question

2008-10-28 Thread Eric Cobb
Try this: cfqueryparam value=#Trim(URL.a)# cfsqltype=cf_sql_varchar list=true / Thanks, Eric Cobb Scott Stewart wrote: I have a variable passed though a URL that looks like this index.cfm?a=1,2,3 The variable a is passed to a SQL statement WHERE clause as part of an IN operator IE

Re: Use Wordpress or BlogCFC?

2008-12-08 Thread Eric Cobb
You're just really, really confused... ;) Wil Genovese wrote: BTW: So what am I? Since I do use BlogCFC, but on Bluedragon JX 64bit and with PostgreSQL 8.x all running on Centos5.x 64bit? Cheers, Wil Genovese Sr. Web Application Developer

Re: Adobe's CF IDE, Bolt

2008-12-11 Thread Eric Cobb
Actually, he just got a brand new, high-end HP laptop 3 or 4 weeks ago. Cutter's right, it's all the porn. Larry Lyons wrote: No, Andy's Eclipse is always jacked up. I'm convinced, though, that it's a PEBKAC issue. Or he needs to stop looking at porn on his laptop;) Steve Cutter Blades

Re: CFIMAGE Questions

2009-01-30 Thread Eric Cobb
cfimage documentation states the destination can be an Absolute or relative pathname where the image output is written. http://livedocs.adobe.com/coldfusion/8/htmldocs/Tags_i_02.html Write an image to a file cfimage required action = write destination = absolute

Re: Managing Software Releases

2009-02-11 Thread Eric Cobb
You need Subbversion (http://subversion.tigris.org/). Aaron West wrote an awesome step-by-step tutorial on how to install and configure Subversion, and even shows you how to check out code files to your local development system. It's a 5 part blog series, but you can breeze through them

Re: tools for creating DAO, Gateway, Bean, etc CFCs

2009-02-12 Thread Eric Cobb
I you want to use Stored Procedures, don't forget to check out SquidHead. http://squidhead.riaforge.org/ Thanks, Eric Cobb http://www.cfgears.com Gerald Guido wrote: There are tons of them. Go here and search for generator or code. http://www.riaforge.org/index.cfm?event=page.search I

Re: Need a new host

2009-03-02 Thread Eric Cobb
Like Rob, I've been with CrystalTech for years, and have recently moved to a dedicated server with them. I've had no problems and would recommend them to anyone! -- Thanks, Eric Cobb Certified Macromedia ColdFusion MX 7 Developer http://www.cfgears.com Robert Rawlins wrote: I've been

Re: BOLT!

2009-04-17 Thread Eric Cobb
into Beta. All they say on Labs is BETA APPLICATIONS NOW BEING ACCEPTED!. It doesn't say the Beta has started. http://labs.adobe.com/wiki/index.php/Bolt Thanks, Eric Cobb Certified Macromedia ColdFusion MX 7 Developer http://www.cfgears.com Jose Diaz wrote: Hello All, I have applied to Adobe

Re: Detect a 301 redirect

2009-05-05 Thread Eric Cobb
Perhaps your users could land on the original page, which displays a message telling them they are being redirected, then after 5 seconds (or whatever) the 301 redirect kicks in and moves them to the new page. This could easily be done with a cfheader/sleep/cflocation combo. Thanks, Eric

Re: Application Scope Problem

2009-06-19 Thread Eric Cobb
This little tool can help you find what variables need to be put into the var scope: http://varscoper.riaforge.org/ Thanks, Eric Cobb Certified Macromedia ColdFusion MX 7 Developer http://www.cfgears.com Paul Alkema wrote: Ok, I'll look into that and see if that fixes the problem. Also

Re: IIS Log Analyzer

2009-07-14 Thread Eric Cobb
SmarterStats rocks! http://www.smartertools.com/SmarterStats/Features/Web-Log-Analytics-Website-Statistics.aspx Thanks, Eric Cobb Certified Macromedia ColdFusion MX 7 Developer http://www.cfgears.com Justin Scott wrote: So, what are people using for analyzing IIS web traffic logs

Re: Comparisons - Your thoughts

2009-07-15 Thread Eric Cobb
/coldfusion_performance_04.html Thanks, Eric Cobb Certified Macromedia ColdFusion MX 7 Developer http://www.cfgears.com Jason Fisher wrote: I have long been in the habit of using EQ and NEQ (and now moving to == and !=) for numbers in all cases, since there is no such thing as 'sort

Re: Comparisons - Your thoughts

2009-07-15 Thread Eric Cobb
than squeezing out every tiny little millisecond of speed (on most apps). Thanks, Eric Cobb Certified Macromedia ColdFusion MX 7 Developer http://www.cfgears.com Charlie Griefer wrote: I'd be leery of something that says, always. Sometimes, it's OK to consider the readability/maintainability

Re: ecommerce emergency

2009-07-23 Thread Eric Cobb
registrations than a competitor...$3 per year! That's $0.25 per month!) I finally moved to an area where people realize that it costs money for technology products and services. They see it as a necessary investment, not an unnecessary expense. Thanks, Eric Cobb http://www.cfgears.com

Re: CF and Java

2009-08-07 Thread Eric Cobb
I'm not sure if all of these are available to CF. http://java.sun.com/javase/6/docs/api/overview-summary.html Thanks, Eric Cobb http://www.cfgears.com Alan Rother wrote: Hey All, Has anyone found an easy way to wander through all of the classes / packages available to CF through Java

Re: CFSTOREDPROC kind of sucks

2009-08-26 Thread Eric Cobb
According to LiveDocs, in MX 6 Changed the dbvarname attribute behavior: it is now ignored for all drivers. ColdFusion uses JDBC 2.2 and does not support named parameters. Thanks, Eric Cobb http://www.cfgears.com Dave Watts wrote: Three issues that come to mind: You've really only

Re: Datasource issue with CrystalTech

2009-09-15 Thread Eric Cobb
Sounds like a question for the CrystalTech support guys. I've been using CrystalTech for years and have never run into any problems with datasources. Thanks, Eric Cobb http://www.cfgears.com Joshua Rowe wrote: Hello there! I have a website that is being hosted through CrystalTech

Shift from a single developer team to a multiple developer team

2009-10-20 Thread Eric Cobb
any tips for how to head off issues down the road. The application is somewhat modular, but certainly not to an object oriented extent. I am no project manager and am fearful that without proper planning we are going to be stepping on each other's toes an awful lot. -- Thanks, Eric Cobb http

Re: T-SQL Stored procedure, In predicate in a Where clause

2009-10-21 Thread Eric Cobb
Yep. Anything you can run in a query, you can run in a Proc (plus more!). Thanks, Eric Cobb http://www.cfgears.com Scott Stewart wrote: Hey all, Quick question, in T-SQL (MS SQL Server) can you put an in predicate in a Where clause inside a stored procedure? ie

Re: REReplace Statment Help

2009-10-21 Thread Eric Cobb
If you want it in one line, just combine them: productPageName = Replace(REReplace(FORM.pageName,[.*+?^${}()|[\]/\\],,All), ,-,All); BTW, you don't the the #'s inside of a function unless the variable is in quotes. Thanks, Eric Cobb http://www.cfgears.com Glyn Jackson wrote: I am just

Re: Education

2009-10-23 Thread Eric Cobb
Heh...nuclear physics...ColdFusioncoincidence? I think not! http://en.wikipedia.org/wiki/Cold_fusion Thanks, Eric Cobb http://www.cfgears.com s. isaac dealey wrote: Of around 8-9 devs in our team over the last 18 months we had one developer with a comp science degree. He was worse

Re: Comparing upper case and lower case

2009-10-23 Thread Eric Cobb
check out the compare() function, it's case sensitive. http://livedocs.adobe.com/coldfusion/8/htmldocs/functions_c-d_06.html#1101820 Thanks, Eric Cobb http://www.cfgears.com Phillip Vector wrote: I got a confusion issue here... session.sRep.PassWord NEQ password session.sRep.Password

Re: Deleting contents within a folder

2009-11-09 Thread Eric Cobb
and it was able to do it. This should help: http://www.cfgears.com/index.cfm/2009/5/19/Tapping-in-to-ColdFusions-underlying-Java-capabilities Thanks, Eric Cobb http://www.cfgears.com Barney Boisvert wrote: If you don't mind synchronizing, you can just delete the directory (as you are now

Re: CF LiveDocs

2009-11-10 Thread Eric Cobb
it's just me, but when I do a search on array, I want a list of every function that does something with an array, not just the ones that have array at the beginning of their name. Thanks, Eric Cobb http://www.cfgears.com Brook Davies wrote: I use http://www.cfquickdocs.com/cf8/ almost

'Tis a sad, sad day...jQuery kills FireFox but works great in IE!

2009-11-12 Thread Eric Cobb
processing the display/hide of so many table rows? -- Thanks, Eric Cobb http://www.cfgears.com ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http

Re: 'Tis a sad, sad day...jQuery kills FireFox but works great in IE!

2009-11-13 Thread Eric Cobb
-dee.com/ On 13/11/2009 06:38, Eric Cobb wrote: Oh, the horror to see my beloved FireFox crash repeatedly when trying to run some jQuery that works flawlessly in IE 8! (I thought it was supposed to be the other way around!) Seriously though, I do have a chunk of jQuery that I hope someone

Re: 'Tis a sad, sad day...jQuery kills FireFox but works great in IE!

2009-11-13 Thread Eric Cobb
, although in FF there's still a good bit of lag time from when you click the checkbox until it actually hides the rows. I guess it's just the way FF is dealing with so many table rows. -- Thanks, Eric Cobb http://www.cfgears.com Peter Boughton wrote: I have a (large) table that has a list

Re: 'Tis a sad, sad day...jQuery kills FireFox but works great in IE!

2009-11-13 Thread Eric Cobb
I'm not sure if you guys are following what I'm trying to do I want to dynamically hide/display certain table rows when a checkbox is selected/deselected. -- Thanks, Eric Cobb http://www.cfgears.com Charlie Griefer wrote: Preference. Some people would prefer to not introduce

Re: 'Tis a sad, sad day...jQuery kills FireFox but works great in IE!

2009-11-13 Thread Eric Cobb
Thanks Josh! I'll give that a whirl and see how it works. -- Thanks, Eric Cobb http://www.cfgears.com Josh Nathanson wrote: You might get a tad bit more speed if you do this in your selectors: $(table.stripetbodytr.oldUsers) Instead of this: $(.oldUsers) This is because jQuery

Re: Looking for a CF 8 host

2009-11-25 Thread Eric Cobb
+1 for CrystalTech! Thanks, Eric Cobb http://www.cfgears.com Joshua Rowe wrote: http://www.crystaltech.com/ has been awesome! -Original Message- From: Michael J. Sprague [mailto:mikespra...@gmail.com] Sent: Wednesday, November 25, 2009 11:39 AM To: cf-talk Subject: Re

Re: Sending a Fax

2009-12-09 Thread Eric Cobb
br /br /br /br /br /br /br /br /br /br /br /br /br /br / There, that should do it. ;) (sorry, I couldn't resist!) Thanks, Eric Cobb http://www.cfgears.com Damo Drumm wrote: Ive a text box on a fom and when I fill it in, and enter the Fax Number The Info is sent to the fax machine

Re: scoping and speed

2009-12-10 Thread Eric Cobb
According to Adobe, Yes. http://www.adobe.com/devnet/coldfusion/articles/coldfusion_performance_04.html Thanks, Eric Cobb http://www.cfgears.com Chad Gray wrote: If you don't scope your local variables does the page run slower? IE. #variables.foo# vs. #foo

Re: (admin) test message

2009-12-29 Thread Eric Cobb
Worked for me as well, but this is the only message thread I've gotten since sometime yesterday afternoon. Thanks, Eric Cobb http://www.cfgears.com James Holmes wrote: It worked for me. mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ 2009/12/29

Re: IIS ColdFusion Developer, best practices for setting up multiple sites

2010-01-08 Thread Eric Cobb
. There are hacks and specialty software you can use to get around this, but natively IIS isn't going to let you do it. Thanks, Eric Cobb http://www.cfgears.com Jeff F wrote: I'd like to set up my development environment to match what I've got on the server, namely multiple sites under IIS with each site

Re: IIS ColdFusion Developer, best practices for setting up multiple sites

2010-01-08 Thread Eric Cobb
Sweet! I wasn't sure about 7 (haven't used it yet), but I didn't realize that about Vista. I've never had a need to check. That's good to know. Thanks, Eric Cobb http://www.cfgears.com Dave Watts wrote: ColdFusion is not going to be your problem, IIS is. If you're talking about

Re: (ot) Adobe error messages

2010-01-25 Thread Eric Cobb
Considering that I still get Allaire errors all along, it's probably going to be a while. ;-) Thanks, Eric Cobb http://www.cfgears.com Qing Xia wrote: I wonder how long it is going to take Adobe to replace all the [Macromedia] in CF error messages to [Adobe]. Completely irrelevant

Re: (ot) Adobe error messages

2010-01-25 Thread Eric Cobb
Hey, if you're going to break something, do it right! Thanks, Eric Cobb http://www.cfgears.com Andy Matthews wrote: You only get Allaire errors because you code is really sucky. Minor code problems get you Adobe messages. Major code problems get you Macromedia errors. Quit your day job

Re: CF8 Advanced Status?

2010-02-01 Thread Eric Cobb
I believe you're right, they supposedly did away with the advanced CF 8 certification. Now you're either certified or you're not, no distinction between certified and advanced certified. Thanks, Eric Cobb http://www.cfgears.com Azadi Saryev wrote: didn't they drop the 'advanced

Re: ColdFusion Windows Authentication

2010-02-05 Thread Eric Cobb
Have you looked into LDAP? Thanks, Eric Cobb http://www.cfgears.com ColdFusion - the most profitable dead language I've ever worked with. Craig Brown wrote: I'm developing an application that will hopefully interact with SQL Server Reporting Services 2005 so that when the user clicks

Re: cfmodule and query of queries

2010-02-09 Thread Eric Cobb
You should really be doing this in a CFC. They're built for stuff like this. Thanks, Eric Cobb http://www.cfgears.com ColdFusion - the most profitable dead language I've ever worked with. Thane Sherrington wrote: Hi all, This is probably a stupid question, but my simple mind can't

Re: Host with CF and Alias Names/Virtual Directory Support?

2010-02-24 Thread Eric Cobb
If you want to stay with Linux, and need complete control over your server, then check out Linode (http://www.linode.com/). You can get a Linux VPS starting at $20 per month. Thanks, Eric Cobb http://www.cfgears.com ColdFusion - the most profitable dead language I've ever worked

Re: Best subversion repository

2010-02-24 Thread Eric Cobb
I use an old Pentium III Dell desktop with less than 1GB of RAM at home, and it works great! :-) Thanks, Eric Cobb http://www.cfgears.com ColdFusion - the most profitable dead language I've ever worked with. Rick Faircloth wrote: Assembla's been great for me, too...but I only use

Re: Best subversion repository

2010-02-24 Thread Eric Cobb
Yep, I've got Subversion/Apache running my repositories on port 81, and Railo/IIS running my (final test/staging) websites on port 80. Works like a champ. Thanks, Eric Cobb http://www.cfgears.com ColdFusion - the most profitable dead language I've ever worked with. Rick Faircloth wrote

Re: Forms Processing: Updating Only Changed Data

2010-03-10 Thread Eric Cobb
The first thing that jumps out at me would be to have hidden form fields in the form that contain the original values. Then, when you're processing the form any value that doesn't match its corresponding hidden value has been changed. thanks, eric cobb ecar technologies, llc http

Re: Forms Processing: Updating Only Changed Data

2010-03-10 Thread Eric Cobb
. --- /cfif That's the basics of what I was trying to get at. thanks, eric cobb ecar technologies, llc http://www.cfgears.com Eric Cobb wrote: The first thing that jumps out at me would be to have hidden form fields in the form that contain the original values. Then, when you're processing

Re: Two CFQUERY statements?

2010-03-11 Thread Eric Cobb
Sounds like ColdFusion is having problems connecting to one of your databases. Try this: 1) make sure you can verify both datasources in your ColdFusion Administrator. 2) make sure you didn't misspell one of the datasource names in your cfquery tags. thanks, eric cobb ecar technologies

Re: Online domain name search tag/tool

2010-03-16 Thread Eric Cobb
information for it. thanks, eric cobb ecar technologies, llc http://www.cfgears.com Terry Troxel wrote: Coldfusion Tag/Tool for Domain Name searches. Is there such a thing that can allow you to let your users search for possible domain names to register without going to places like godaddy.com

Re: ColdFusion Builder Released!

2010-03-23 Thread Eric Cobb
for a language they don't use, or spend $50 less and just get the IDE they need? thanks, eric cobb ecar technologies, llc http://www.cfgears.com Charlie Griefer wrote: On Mon, Mar 22, 2010 at 2:28 PM, Mary Jo Sminkey mary...@cfwebstore.comwrote: The cost has to do with Adobe being a publicly

Re: ColdFusion Builder Released!

2010-03-23 Thread Eric Cobb
Yes! Andy agreed with me! I'm going to print this out and frame it! ;-) thanks, eric cobb ecar technologies, llc http://www.cfgears.com Andy Matthews wrote: As much as it kills me to say that Eric is right, and it does, I think he's right. A developer in another language isn't gonna

Re: default for numeric argument

2010-04-05 Thread Eric Cobb
yep. thanks, eric cobb http://www.cfgears.com Matthew Smith wrote: cfargument name=app_user_id type=numeric required=no default= I am not passing it in. I am getting: The APP_USER_ID argument passed to the check_item_quantities function is not of type numeric. Should I make

Re: java.lang.String as a structure with members

2010-04-06 Thread Eric Cobb
You don't need the #'s either! change cfset t1 = #Trim(t1.Team)# to cfset tname1 = Trim(t1.Team) and cfset logo1 = #Trim(t1.Logo)# to cfset logo1 = Trim(t1.Logo) thanks, eric cobb http://www.cfgears.com Maureen wrote: You are using t1 as the name of a query: cfquery name=t1 datasource

Re: Joni Mitchell and Cold Fusion

2010-04-07 Thread Eric Cobb
yeah, Go Daddy is crap! I documented my last run-in with them: http://www.cfgears.com/index.cfm/2009/4/23/How-GoDaddy-Destroyed-my-Clients-Site thanks, eric cobb http://www.cfgears.com Kevin Pepperman wrote: Charlie beat me to it... Move it to Viviotech or some other VPS, Go Daddy did

Re: CFDocs

2010-04-08 Thread Eric Cobb
isArray, ListToArray, etc..., are not listed in cfquickdocs, but they are in coldfusiondocs.com and cfmldocs.com. Just being picky... thanks, eric cobb http://www.cfgears.com Paul Kukiel wrote: There is also http://www.cfmldocs.com which also has an offline AIR app. Paul http

Re: Easy application question

2010-04-12 Thread Eric Cobb
Make sure both Application.cfm files have the same name in the cfapplication tag. thanks, eric cobb http://www.cfgears.com Brian Bradley wrote: I think I misunderstand how to use application.cfm files. I have a application.cfm file on the root and I set a group of session variables. I

Re: number format mask

2010-04-27 Thread Eric Cobb
Try it and see: cfset variables.ordertotal = 100 cfoutput#numberformat(variables.ordertotal, .99)#/cfoutput Thanks, Eric Cobb ECAR Technologies, LLC http://www.ecartech.com http://www.cfgears.com Matthew P. Smith wrote: #numberformat(variables.ordertotal, .99)# Does

Re: CF 9 Hosting

2010-05-20 Thread Eric Cobb
I'll +1 for CrystalTech. I've been using them for years. Thanks, Eric Cobb ECAR Technologies, LLC http://www.ecartech.com http://www.cfgears.com Alan Rother wrote: Just to put them in the Mix... www.crystaltech.com I've hosted dozens of sites there, great company, few issues

Re: CF 9 Hosting

2010-05-20 Thread Eric Cobb
-quote-EVER :) Thanks, Eric Cobb ECAR Technologies, LLC http://www.ecartech.com http://www.cfgears.com Kelly Matthews wrote: Actually while hostek's prices are great, the fact that they go down 2-3 times PER day is far too much for my client, which is why I'm looking to move. Should have

Re: cfc accessing session scope - bad?

2010-05-20 Thread Eric Cobb
. Thanks, Eric Cobb ECAR Technologies, LLC http://www.ecartech.com http://www.cfgears.com Adrian Moreno wrote: I've got an example of a Session Facade (or Session Proxy?) on my site: http://www.iknowkungfoo.com/blog/index.cfm/2007/2/12/Using-a-Session-Facade-to-handle-evolving-session-variables

Re: How to delete a post in House of fusion?

2010-05-27 Thread Eric Cobb
://www.houseoffusion.com/contact.cfm) and ask him to manually take them out of the database. It won't remove them off of the Internet, but it will get them off of the HOF website. Thanks, Eric Cobb ECAR Technologies, LLC http://www.ecartech.com http://www.cfgears.com C S wrote: All posts that go

Problems with slashes in JSON

2010-06-09 Thread Eric Cobb
, Eric Cobb ECAR Technologies, LLC http://www.ecartech.com http://www.cfgears.com ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion

Re: Problems with slashes in JSON

2010-06-10 Thread Eric Cobb
Thanks Brian. That eliminated all of the RegEx I was having to do, but my closing list tag is now being displayed as \\\/li at the end of every list item, and all slashes in my text are showing up as \\\/. Any idea on how to fix that? Thanks, Eric Cobb ECAR Technologies, LLC http

Re: Problems with slashes in JSON

2010-06-10 Thread Eric Cobb
it out in CF and just have jQuery display it. Too much JavaScript hurts my head. :) I'm about to the point I'm ready to ditch jQuery and just do what I need to do without trying to be all ajaxy with it. Thanks, Eric Cobb ECAR Technologies, LLC http://www.ecartech.com http://www.cfgears.com

Check for remote CFC call in CF 8

2010-06-15 Thread Eric Cobb
, is there a way I can programmatically figure out if the current request is calling a remote method in CF 8? -- Thanks, Eric Cobb ECAR Technologies, LLC http://www.ecartech.com http://www.cfgears.com ~| Order the Adobe

Re: Is it time for Adobe to Rebrand Cold Fusion?

2010-06-21 Thread Eric Cobb
Not to stir the pot any more than it already is, but I wanted to point out two quick things: 1) That's not Ben Forta's blog you linked to. 2) That article was published 6 years ago. Carry on Thanks, Eric Cobb ECAR Technologies, LLC http://www.ecartech.com http://www.cfgears.com

php.org is written in ColdFusion

2010-06-21 Thread Eric Cobb
Simon Horwith just posted this on his blog (http://www.horwith.com/index.cfm/2010/6/21/php-dot-org-is-written-in-ColdFusion), and it's too good not to pass on! http://php.org/ appears to be written completely in ColdFusion. -- Thanks, Eric Cobb ECAR Technologies, LLC http

Re: Is it time for Adobe to Rebrand Cold Fusion?

2010-06-22 Thread Eric Cobb
It works on getting managers to upgrade too! We're still running CF2000, when CF2009 is already out. We're 9 years behind everyone else! Thanks, Eric Cobb ECAR Technologies, LLC http://www.ecartech.com http://www.cfgears.com Cameron Childress wrote: On Tue, Jun 22, 2010 at 9:54 AM, Andy

Re: cfdot.net

2010-06-23 Thread Eric Cobb
his examples so they are more accurate. Thanks, Eric Cobb ECAR Technologies, LLC http://www.ecartech.com http://www.cfgears.com Matthew Small wrote: All language religion aside - it's not a fair comparison, it's biased towards CF. You should be more honest in your comparisons if you expect

Re: CF Shopping carts

2010-06-29 Thread Eric Cobb
in your free time. The time you waste on the freebie clients would be better spent trying to find paying clients, or cutting your neighbors grass to scrape together the money you need. Trust me, I've been there. Thanks, Eric Cobb ECAR Technologies, LLC http://www.ecartech.com http://www.cfgears.com

Re: development and testing server

2010-07-13 Thread Eric Cobb
Forta show up at your office and type the key in for you, getting the go-ahead directly from Adam is about as good as it gets. At least it would be around here, anyway. Thanks, Eric Cobb ECAR Technologies, LLC http://www.ecartech.com http://www.cfgears.com Judah McAuley wrote: The author

Re: Need a west coast (US) based CF host

2010-07-29 Thread Eric Cobb
located. Your site can have it's own time zone independent of the server time zone. (again, assuming all of the date/time stamps are being entered via CFML instead of the DB itself) Thanks, Eric Cobb ECAR Technologies, LLC http://www.ecartech.com http://www.cfgears.com Charlie Griefer wrote

(ot) Eclipse hangs on startup.

2010-08-03 Thread Eric Cobb
to hang at the splash screen for so long? Some way to get a behind the scenes look at what's going on? -- Thanks, Eric Cobb ECAR Technologies, LLC http://www.ecartech.com http://www.cfgears.com ~| Order the Adobe Coldfusion

Re: onApplicationStart

2010-08-04 Thread Eric Cobb
Here's the poor mans answer to applicationStop(), it works on CF7 CF8. |||cfset| |application.setIsInited(false) / | See Mister Dai for a more detailed explanation: http://misterdai.wordpress.com/2010/06/11/cf-flag-application-to-run-onapplicationstart/ | | Thanks, Eric Cobb ECAR Technologies

Re: onApplicationStart

2010-08-04 Thread Eric Cobb
Huh, not sure what happened with the formatting on that. Here you go: cfset application.setIsInited(false) / Thanks, Eric Cobb ECAR Technologies, LLC http://www.ecartech.com http://www.cfgears.com Eric Cobb wrote: Here's the poor mans answer to applicationStop(), it works on CF7 CF8

Re: Trying to understand application.cfc...

2010-08-12 Thread Eric Cobb
You should be able to set that variable in OnApplicationStart() with no problems. In fact, as you said, that's the preferred place to set it. You must have something else going on that's causing the problem. Thanks, Eric Cobb ECAR Technologies, LLC http://www.ecartech.com http

License question about compiled code between Developer Enterprise

2010-08-26 Thread Eric Cobb
production server with CF Enterprise Edition, we're not in any type of license violation, are we? We just want to clarify that we don't actually have to compile the code on a licensed Enterprise CF server in order to deploy to production Enterprise CF servers. -- Thanks, Eric Cobb ECAR Technologies

Re: Check out this... code....

2010-08-31 Thread Eric Cobb
I'm glad you posted this today, I just found this one a few minutes ago: #Year(DateAdd(, 1, Now()))-1# Thanks, Eric Cobb ECAR Technologies, LLC http://www.ecartech.com http://www.cfgears.com Rick Root wrote: Three fun pieces of code I found today while doing some maintenance on code

Re: Check out this... code....

2010-08-31 Thread Eric Cobb
Exactly! :) Thanks, Eric Cobb ECAR Technologies, LLC http://www.ecartech.com http://www.cfgears.com Andy Matthews wrote: You're right. The correct version should be: #Year(DateAdd(, 0, Now()))# No need for the -1. andy -Original Message- From: Eric Cobb [mailto:cft

Re: Using ## vs not using ##

2010-09-01 Thread Eric Cobb
According to Adobe, yes. http://www.adobe.com/devnet/coldfusion/articles/coldfusion_performance_04.html Although, I'm sure it's probably negligible. All they really say is that the extra pound signs will negatively affect performance. Thanks, Eric Cobb ECAR Technologies, LLC http

Re: Authorization and Security for a web service

2010-09-03 Thread Eric Cobb
Check out these presentations by Simone Free. He's got some really good pointers in them. http://www.simonfree.com/presentations/cfobjective.html http://www.simonfree.com/presentations/cfunited-09---washington-dc.html http://www.simonfree.com/presentations/nashville-cfug.html Thanks, Eric

  1   2   >