Re: CF sourceless deployment tool

2009-03-02 Thread Peter Boughton
Railo Extension Manager will support easy and quick deployments. Hopefully, once it is released, Adobe and OpenBD will support the same structure, so it can become a standard CFML deployment tool. Information here: http://www.railo.ch/blog/index.cfm/2008/9/3/Extension-Manager

Re: CF sourceless deployment tool

2009-03-02 Thread James Holmes
Can you point out the tools available for PHP that fulfill these criteria so we can compare? mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ 2009/3/2 Bob sol_xp...@yahoo.com: Why isn’t there a tool to help deploy (compile and obfuscate) coldfusion

Re: Good Release Management Software

2009-03-02 Thread Joseph Bugeja
Hi, Our system is developed using ColdFusion technology. We have a number of clients and very often we need to deliver them not a full deployment (our whole package) but just some updates to certain files (.cfm, .cfc, .js, etc.). I am searching for a solution that can automatically build

Re: CF sourceless deployment tool

2009-03-02 Thread Bob
@James I don't think such tools exist for PHP , only for Java and .NET applications. but i didn't mention PHP cause it has them ... just to point out how much i prefer CF over other popular languages , and would like to see it as capable in terms of Deployment as it is in other areas . @Peter

Re: CF sourceless deployment tool

2009-03-02 Thread Jose Diaz
Hi Bob, You could also use Microsoft Wix to build a deployment package. Jose Diaz On Mon, Mar 2, 2009 at 10:35 AM, Bob sol_xp...@yahoo.com wrote: @James I don't think such tools exist for PHP , only for Java and .NET applications. but i didn't mention PHP cause it has them ... just to

Weird scoping issue

2009-03-02 Thread Rick Root
Hey all would you please take a look at the following code: pisdefined member_id = cfoutput#isdefined(url.member_id)#/cfoutput/p cfset p = server.udf.getMemberDetail(member_id=url.member_id, includeTextFields=true) cfoutput query=p pisdefined member_id = #isdefined(url.member_id)#/p

Re: Weird scoping issue

2009-03-02 Thread Rick Root
shoot never mind, the member detail record contains a field named url On Mon, Mar 2, 2009 at 8:58 AM, Rick Root rick.r...@webworksllc.com wrote: Hey all would you please take a look at the following code: pisdefined member_id = cfoutput#isdefined(url.member_id)#/cfoutput/p cfset p =

Need a new host

2009-03-02 Thread David Fekke
I need a new host for a client of mine. Here are the requirements; ColdFusion 8 on Windows SQL Server 2005/8, 2008 preferred Support for a java library that lets him connect to a First Data merchant account SSL certificate support The client would prefer a shared hosting environment to keep

Re: Weird scoping issue

2009-03-02 Thread Peter Boughton
What happens if you switch it to StructKeyExists( url , 'member_id' ) ? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: JQuery data grid

2009-03-02 Thread Web Specialist
I'm using with great success this plugin: http://www.flexigrid.info/ Working with views and integrated with the beautyful spSelectNextN( http://blog.pengoworks.com/index.cfm/2006/6/19/MSSQL-2k-Stored-Procedure-for-Pagination- developed by Dan G. Switzer) stored procedure. Works like a charm.

RE: Page steps list

2009-03-02 Thread Rick Faircloth
Hi, Pranathi... I'm sorry we're all having such a difficult time understanding what you're trying to do. Can you tell us of a website we can visit that shows how you want the one to render the steps which you always see when you fill online application of the header to work? Can you tell us a

Re: Need a new host

2009-03-02 Thread Michael Dinowitz
I've used AHPHosting.net for the last 10 years or so. Their only problem is that whenever there is a problem with my servers, they look bad. I have my own boxes there, thought the new mail server is on a VPS. On Mon, Mar 2, 2009 at 9:13 AM, David Fekke da...@fekke.com wrote: I need a new host

Re: Page steps list

2009-03-02 Thread Pranathi Reddy
Hi, Pranathi... I'm sorry we're all having such a difficult time understanding what you're trying to do. Can you tell us of a website we can visit that shows how you want the one to render the steps which you always see when you fill online application of the header to work? Can you tell us a

Re: Page steps list

2009-03-02 Thread Pranathi Reddy
https://chaseonline.chase.com/public/oao/GettingStarted.aspx?PROD_CODE=010SUB_PROD_CODE=104PROD_SEG=MASSMARKET If you can see in this link it shows that getting started, new information etc.., are pages and their stage names. They have 4 steps but I need 3 steps but have 4 pages to work on..

Re: Weird scoping issue

2009-03-02 Thread Rick Root
On Mon, Mar 2, 2009 at 9:12 AM, Peter Boughton bought...@gmail.com wrote: What happens if you switch it to StructKeyExists( url , 'member_id' ) ? See my previous message. The answer to your question is: it errors because url is a string in the returned query. Another good reason to use

Re: Need a new host

2009-03-02 Thread Jason Fisher
I've been real happy with CrystalTech.com for shared CF hosting. They offer CF8, SQL 2005 (not sure about 2008, but haven't looked into it), and SSL. Just one vote ;) ~| Adobe® ColdFusion® 8 software 8 is the most important

RE: Need a new host

2009-03-02 Thread Robert Rawlins
I've been running with Chystaltech.com for a few years, started with a bunch of shared plans with them and have since moved onto Dedicated solutions, I cannot recommend them enough, their service is very efficient and cost effective and in instance when I've needed technical support email replys

64 bit imagecr3

2009-03-02 Thread Rick Root
Anyone here successfully using the 64 bit windows version of ImageCR3 (with the imagecr service?) we recently migrated from a 32 bit windows system to a 64 bit windows system running 64 bit CF (Win2k8) and we're having a problem getting the ImageCR3 service to work. The services is started

RE: 64 bit imagecr3

2009-03-02 Thread Gaulin, Mark
We're using the service version of imagecr3, but not on 64 bit windows (to work better with Windows Server 2008). It works as expected. Does the Local account have access to the image folder? -Original Message- From: Rick Root [mailto:rick.r...@webworksllc.com] Sent: Monday, March 02,

Re: 64 bit imagecr3

2009-03-02 Thread Azadi Saryev
any particular reason you do not want to use cfimage tag/image functions for getting image info? what info does imageCR3 give you that you can't get with cf's built-in functions? Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Rick Root wrote: Anyone here successfully using the 64 bit

Re: 64 bit imagecr3

2009-03-02 Thread Rick Root
On Mon, Mar 2, 2009 at 11:10 AM, Azadi Saryev az...@sabai-dee.com wrote: any particular reason you do not want to use cfimage tag/image functions for getting image info? what info does imageCR3 give you that you can't get with cf's built-in functions? Not specifically for getting image

RE: Need a new host

2009-03-02 Thread William Seiter
I would check out GearHost.com. They are very reasonably priced for what you get. They are also very lenient on the 'optional' parts of the coldfusion administrator section. (they actually let you use some of the more advanced tags, since they did their homework on how to 'lock them down' to

Re: 64 bit imagecr3

2009-03-02 Thread Rick Root
On Mon, Mar 2, 2009 at 11:03 AM, Gaulin, Mark mgau...@globalspec.com wrote: We're using the service version of imagecr3, but not on 64 bit windows (to work better with Windows Server 2008).  It works as expected. That's interesting, I thought the only purpose of the service method was for 64

Re: Good Release Management Software

2009-03-02 Thread Mike Chabot
To clarify, it sounds like your goal is to identify the differences between the version of the software each client is running and the current version, and to automatically bundle together all the files that are different between the two versions so that you can give the customers only the files

Re: Page steps list

2009-03-02 Thread Azadi Saryev
did you ever look up that link to Ben's blog i posted before? it does exactly what you want to do, with other bells and whistles you have probably not yet thought of in regard to multi-step forms... Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Pranathi Reddy wrote:

Re: 64 bit imagecr3

2009-03-02 Thread Azadi Saryev
yes, i just googled some examples and comparisons... interesting... i should give efflare stuff a try one day! Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Rick Root wrote: On Mon, Mar 2, 2009 at 11:10 AM, Azadi Saryev az...@sabai-dee.com wrote: any particular reason you do not

RE: Need a new host

2009-03-02 Thread Rick Faircloth
KickAssVPS.com Not one single problem of *any* kind since July 2008. Not even a millisecond of downtime, either. :o) (If a VPS is what you need...) Rick -Original Message- From: William Seiter [mailto:will...@seiter.com] Sent: Monday, March 02, 2009 11:14 AM To: cf-talk Subject: RE:

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: 64 bit imagecr3

2009-03-02 Thread Adrian Lynch
We ran some tests here and ImageCR was quicker. Adrian -Original Message- From: Azadi Saryev [mailto:az...@sabai-dee.com] Sent: 02 March 2009 16:24 To: cf-talk Subject: Re: 64 bit imagecr3 yes, i just googled some examples and comparisons... interesting... i should give

Re: 64 bit imagecr3

2009-03-02 Thread Wil Genovese
The CFIMAGE tag is not so good for resizing this is true, BUT have you looked into the rest of the CF8 image functions? They give you the ability to resize an image and chose the algorithm that you want to use. http://livedocs.adobe.com/coldfusion/8/htmldocs/ ImageResize(name, width, height [,

problem with cferror, trycatch and iis7

2009-03-02 Thread Rick Root
I have a couple issues with error trapping on our new server (CF801, x64 windows 2k8 and IIS7) Take a look at this code: cfset source = u:\classcreator\003\00700\1_5.jpg pcfoutputfile exists? #fileExists(source)#/cfoutput/p cftry cfx_imagecr3 getimageinfo=#source# cfdump

RE: problem with cferror, trycatch and iis7

2009-03-02 Thread Pat Wenke
CF Admin - Server Settings - Settings - Enable HTTP status codes -Original Message- From: Rick Root [mailto:rick.r...@webworksllc.com] Sent: Monday, March 02, 2009 11:21 AM To: cf-talk Subject: problem with cferror, trycatch and iis7 I have a couple issues with error trapping on our

RE: Need a new host

2009-03-02 Thread Scott Stewart
How is gearhost's support, they look like they're half the price of HostMySite.com, but HMS's support rocks!! -- Scott Stewart ColdFusion Developer 4405 Oakshyre Way Raleigh, NC 27616 (h) 919.874.6229 (c) 703.220.2835 -Original Message- From: William Seiter [mailto:will...@seiter.com]

cf tags in query

2009-03-02 Thread Chad Gray
Is it possible to have CF tags in a database record and have them run on the page? For example, I enter cfmodule into a database record. When I output that database record on the CF page can I get cfmodule to run on the page? My goal is to have someone upload HTML/CFM code into a database

Re: cf tags in query

2009-03-02 Thread Jason Fisher
HTML, of course, will run 'as is'. To get CF to run, you need to execute it, generally with a DE() wrapper, if I recall correctly: cfoutput query=myContentQry #evaluate(de(myContentFieldWithCFTags))# /cfoutput ~| Adobe®

Re: crud generator comparison / overview ?

2009-03-02 Thread Cutter (CFRelated)
I don't know of a comparison. I know I like Illudium, because I can adjust the XSLT to make it output as I would like it. Steve Cutter Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer Co-Author of Learning Ext JS http://www.packtpub.com/learning-ext-js/book

cffunction in Component file

2009-03-02 Thread Pranathi Reddy
Hi All, I am planning to shift all the queries to one .cfc file. I am confused what if I have to pass the form values to the function in the .CFC files. cffunction name=AddData returntype=any cfset var Qry_Data = cfquery name=Qry_Data datasource=Platform INSERT INTO tblWebSiteBrand

Re: cf tags in query

2009-03-02 Thread Peter Boughton
Do you have a reason for storing the code in the database - rather than writing the file to disc and storing the filename in the database? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date

Re: crud generator comparison / overview ?

2009-03-02 Thread Peter Boughton
I don't know of a comparison. I know I like Illudium, because I can adjust the XSLT to make it output as I would like it. Yeah, the XSLT is good for flexibility, although the constant lt; gt; is frustrating! Would be much more readable with a dummy cf: namespace instead. However, I couldn't

Re: cffunction in Component file

2009-03-02 Thread Dave Watts
I am planning to shift all the queries to one .cfc file. I am confused what if I have to pass the form values to the function in the .CFC files. cffunction name=AddData returntype=any cfset var Qry_Data = cfquery name=Qry_Data datasource=Platform INSERT INTO tblWebSiteBrand

RE: cf tags in query

2009-03-02 Thread brad
The only way to do this is to write the code to a .cfm file and then cfinclude that file. I would need to have a pretty good reason for doing this though. Performance and security would be large concerns. ~Brad Original Message Subject: cf tags in query From: Chad Gray

Re: crud generator comparison / overview ?

2009-03-02 Thread Peter Boughton
although the constant lt; gt; is frustrating! Hmm, that should be amp;lt; amp;gt; then. i.e. the escaped equivalent of and Not sure why they're getting converted. ~| Adobe® ColdFusion® 8 software 8 is the most important

CFGRID (Flash) I need a checkbox as input

2009-03-02 Thread Scott Stewart
Hey all I'm displaying a bunch of data in a Flash CFGRID.. At the end of the row I'd like to add a column called Approve. Which would be a checkbox. I have two possible scenarios for updating the DB 1) I click the check box and the action page is called, the db is updated and the CFGRID

RE: cffunction in Component file

2009-03-02 Thread Gaulin, Mark
Another approach that I sometimes use is to declare an explicit argument to the function call inputArgs of type struct, and then replace all references to FORM in the function to arguments.inputArgs. This allows the main page can the function with as myCfc.myFunction(inputArgs = form) and it

XmlTransform and Iframe

2009-03-02 Thread Lee
I want to take the results of an xmlTransform and display it in an Iframe. As far as I can tell Iframe wants a source document and I don't want to go through the hassle of creating a file. Are there any work arounds for this? Lee

Re: problem with cferror, trycatch and iis7

2009-03-02 Thread Rick Root
On Mon, Mar 2, 2009 at 12:57 PM, Pat Wenke pwe...@uhlig.com wrote: CF Admin - Server Settings - Settings - Enable HTTP status codes That tells CF to send 500 errors instead of 200s. But that doesn't have anything to do with why my cftry/cfcatch is being ignored. -- Rick Root New Brian

Re: cffunction in Component file

2009-03-02 Thread Peter Boughton
ArgumentCollection is your friend. :) Save functionality but allows explicit arguments... ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

RE: problem with cferror, trycatch and iis7

2009-03-02 Thread Pat Wenke
Either you don't have the tag installed / configured correctly, or it's the fact that you're running 64 bit. The com/allaire/cfx/CustomTag null gives it away. Contact efflare for the 64 bit version of imageCR3 (it now runs as a service). Don't forget to run the service under an account that

Re: problem with cferror, trycatch and iis7

2009-03-02 Thread Rick Root
On Mon, Mar 2, 2009 at 3:40 PM, Pat Wenke pwe...@uhlig.com wrote: Either you don't have the tag installed / configured correctly, or it's the fact that you're running 64 bit.  The com/allaire/cfx/CustomTag null gives it away. You seem to have misunderstood my problem. I'm not asking for

Re: problem with cferror, trycatch and iis7

2009-03-02 Thread Rick Root
It would appear that CF is unable to catch the error generated by the cfx tag. I tried something simpler, like this: cfset source = u:\classcreator\003\00700\1_5.jpg pcfoutputfile exists? #fileExists(source)#/cfoutput/p cftry !-- bar is not defined -- cfset foo = bar

processing form variable in application.cfm

2009-03-02 Thread Mike Little
hey guys... i have the following code in my application.cfm cflogin cfif isDefined(FORM.logon) cfswitch expression=#FORM.logon# cfcase value=customerauthenticate and log in customer/cfcase cfcase value=adminauthenticate and log in admin/cfcase /cfswitch

Re: 64 bit imagecr3

2009-03-02 Thread Rick Root
On Mon, Mar 2, 2009 at 11:03 AM, Gaulin, Mark mgau...@globalspec.com wrote: We're using the service version of imagecr3, but not on 64 bit windows (to work better with Windows Server 2008).  It works as expected. Mark, In your setup, what is the class name for the CFX tag? Is it imagecr3

RE: CFGRID (Flash) I need a checkbox as input UPDATED

2009-03-02 Thread Scott Stewart
I've gotten the form side to work, however what it posts to the action page is a mess.. As follows: Form Fields: FIELDNAMES=SUBMIT,__CFGRID__NEWCONTENT__GRID_TABLES SUBMIT=Approve Articles __CFGRID__NEWCONTENT__GRID_TABLES=__CFGRID__EDIT__=5OD_Content_IDYOD_Cont

RE: problem with cferror, trycatch and iis7

2009-03-02 Thread Pat Wenke
Two thoughts on that: 1. Because the type of error being thrown and what types of errors your error.cfm handles. 2. It's an unhandled exception in ColdFusion itself (com/allaire/cfx/CustomTag null), so CF error handling is never invoked. -Original Message- From: Rick Root

Re: processing form variable in application.cfm

2009-03-02 Thread Mike Little
sorry, have solved. moved cflogin inside switch. funny though, it did work on cf7. mike ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: 64 bit imagecr3

2009-03-02 Thread Rick Root
I checked out the exception.log to see if there's more detail on the error Error,jrpp-65,03/02/09,09:36:37,cc_domain_sites,com/allaire/cfx/CustomTag The specific sequence of files included or processed is: D:\Inetpub\classcreator\www\test.cfm, line: 14 java.lang.NoClassDefFoundError:

RE: 64 bit imagecr3

2009-03-02 Thread Pat Wenke
Add this (or your jar location): C:\Program Files (x86)\Efflare\ImageCR3Service\imagecr3.jar To: CF Admin - Server Settings - Java and JVM - ColdFusion Class Path You'll probably need to restart CF. -Original Message- From: Rick Root [mailto:rick.r...@webworksllc.com] Sent: Monday,

Re: 64 bit imagecr3

2009-03-02 Thread Rick Root
I figured it out! Or these guys did... http://www.asfusion.com/blog/entry/cfxjar-not-in-class-path-coldfusion cfx.jar is installed someplace that's NOT in the classpath in a multi-instance install. Why, I have no idea. But I added

(ot) how to edit a .mov or .swf/.flv file for simple stuff

2009-03-02 Thread Don L
like to add a stop button and stop automatic replaying. I have somone working on it but he seems struggling with it... thanks. Don Chunshen Li ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to

Re: crud generator comparison / overview ?

2009-03-02 Thread Gerald Guido
None really. Charlie Arehart compiled a list of them here: http://www.carehart.org/cf411/#cfcodegen I have tried most of them. I like/use Illudium because of the templates. I haven't tried the newest release but I hear you can do all tables of a DB. G! On Sun, Mar 1, 2009 at 5:02 PM, Peter

Chrome now higher traffic than IE on some of my sites

2009-03-02 Thread Mike Kear
For the first time since I started building web sites, IE is not the most prominent server on my two highest traffic sites. Google Chrome now amounts to over half the traffic on these sites. Not sure what that means for us as web developers, but it would certainly be significant for Microsoft

Re: Chrome now higher traffic than IE on some of my sites

2009-03-02 Thread Mike Kear
Oops! There's a senior moment. Of course i meant to say that IE is not the most prominent BROWSER on my two highest traffic sites, not SERVER. Sorry. Cheers Mike Kear Windsor, NSW, Australia Adobe Certified Advanced ColdFusion Developer AFP Webworks http://afpwebworks.com ColdFusion, PHP,

Re: Chrome now higher traffic than IE on some of my sites

2009-03-02 Thread John M Bliss
Seems anomalous to me: http://www.w3schools.com/browsers/browsers_stats.asp 2009 January IE7 25.7% IE6 18.5% IE8 0.6% Fx 45.5% Chrome 3.9% S 3.0% O 2.3% On Mon, Mar 2, 2009 at 6:38 PM, Mike Kear afpwebwo...@gmail.com wrote: For the first time since I

Re: Chrome now higher traffic than IE on some of my sites

2009-03-02 Thread Rick Root
On Mon, Mar 2, 2009 at 9:08 PM, John M Bliss bliss.j...@gmail.com wrote: Seems anomalous to me: http://www.w3schools.com/browsers/browsers_stats.asp I would agree. I don't have quick stats on browsers for classcreator but I do track user agents whenever a user logs in to our system. I've

Re: cffunction in Component file

2009-03-02 Thread Pranathi Reddy
I can actually pass the string and numeric values but unable to pass the image into the cfarguement. I was wondering how would I really save this data into database?? Thanks, Pranathi. ArgumentCollection is your friend. :) Save functionality but allows explicit arguments...

Re: Chrome now higher traffic than IE on some of my sites

2009-03-02 Thread Michael Dinowitz
House of Fusion's Google analytics stats for January shows: 47.06% Firefox 43.41% IE 4.30% Chrome 3.04% Safari 1.40% Opera We tend to be tech user heavy on our visitors so the numbers may not reflect those of non-tech focused sites. An additional but unrelated stat shows that visitors

Re: Chrome now higher traffic than IE on some of my sites

2009-03-02 Thread Mike Kear
Yes, by those indications you are right, it is a bit anomalous. But i'm not changing anything either way anyway, it was just interesting to me when i saw that. I still stick to standards, and test in all those browsers anyway. Cheers Mike Kear Windsor, NSW, Australia Adobe Certified