Re: CRUD screens...

2010-04-21 Thread Tom Chiverton
On Monday 19 Apr 2010, Justin Scott wrote: Just curious what people are using to make/manage CRUD screens these days for data management applications. Anything new in this area over the last couple of years? ColdFusion Builder has a wizard. -- Helping to enthusiastically cultivate low-risk

Where do i find CFGRID Code?

2010-04-21 Thread Mike Kear
I have an application where the client's code, containing some CFGrid tags works fine on the production server built by a previous developer, but when I load all that code onto my dev server, so i have a local working copy, the CFGRID tags dont work. I'm guessing this is because I have a

Re: CF9 Air Server Manager

2010-04-21 Thread Cameron Childress
On Tue, Apr 20, 2010 at 1:54 PM, Ian Skinner h...@ilsweb.com wrote: Is anybody using the new AIR based server manager? Happily? Don't forget to also try out Merlin Manager: http://www.merlinmanager.com/ -Cameron ... ~|

Scheduled task isn't running the item in the url

2010-04-21 Thread daniel kessler
I have the following task (CF7). The URL that it specifies is not being run. This is my first task so I assume I'm doing something wrong. I run that url separately and it works fine. I check my list of scheduled tasks and my task shows up in that list and appears to be set up the way I

Re: cfhttp Connection Failure

2010-04-21 Thread John Drake
Would this Custom Tag work?: http://www.cftagstore.com/tags/cfxhttp5.cfm It says it does GZIP compression, and can speed things up by 64x. Anybody here use the tag? I did download the demo and was impressed. I didn't know if it worked with CF 9 - and btw, I would love to see a comparison of

Re: cfschedule tasks

2010-04-21 Thread daniel kessler
These all worked great. Thanks! ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

Re: cfschedule tasks

2010-04-21 Thread daniel kessler
Those were both very interesting. Thank you. They will help alot. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

Re: CRUD screens...

2010-04-21 Thread Gerald Guido
Here is a list of most of the offerings I am aware of. http://www.carehart.org/cf411/#cfcodegen http://www.remotesynthesis.com/cfopensourcelist/index.cfm?event=public.homecategoryID=8474EB08-DB24-BAF7-24A39BADA46972B5 There are also some plugins for CF builder.

Re: Where do i find CFGRID Code?

2010-04-21 Thread Dave Watts
So here's my question: [A]  do you think the cause of this problem is that the location of the CFGRID code is non-standard and therefore i need to use the scriptsrc= attibute of the CFFORM tag? Yes, I think that's the cause, although honestly I don't know whether changing SCRIPTSRC works

Re: Where do i find CFGRID Code?

2010-04-21 Thread Mike Kear
Can anyone tell me why this happens?? If i run a page in the root of a site, the CFGRID works. If i run the precise same file in the same relative location of a subdomain of that site, it doesnt. Can anyone see what i've got wrong here? Here is the relevant code: ! First collect the

Re: Where do i find CFGRID Code?

2010-04-21 Thread Dave Watts
Can anyone tell me why this happens??   If i run a page in the root of a site, the CFGRID works.  If i run the precise same file in the same relative location of a subdomain of that site,   it doesnt.     Can anyone see what i've got wrong here? Well, first, a bit of clarification.

Re: Where do i find CFGRID Code?

2010-04-21 Thread Azadi Saryev
looks like virtual dir to /CFIDE folder is not configured properly on the sub-domain: cfform.js and masks.js files return 404 not found (both in http://shard.adcalpos.net/cfide/scripts/ dir) Azadi On 22/04/2010 01:08, Mike Kear wrote: Can anyone tell me why this happens?? If i run a page

RE: Where do i find CFGRID Code?

2010-04-21 Thread brad
If you go to the working link: http://adcalpos.net/trygrid.cfm you'll see it works, therefore the CFGRID applet has been installed ok, then if you go to the subdomain version of the exact same file at http://shard.adcalpos.net/trygrid.cfm you'll see now it cant find the CFGRID applet.

Re: Where do i find CFGRID Code?

2010-04-21 Thread Dan Blickensderfer
Mike, Make sure you have the virtual directory cfide setup on your sub domain website. That virtual directory needs to be pointing to your cfide directory of your server. I've ran into that as well but just not cfgrid. it was all cfide components. Thanks, Dan - Original Message

DateAdd value different on different servers

2010-04-21 Thread Tom McNeer
There's a simple answer to this one; it's just beyond me. I have a routine that takes a Unix time value which is passed from an external device and creates a date/time object. A client complained that the time being generated was an hour off. He's right. But I can't figure out why. As a test, I

Re: Where do i find CFGRID Code?

2010-04-21 Thread Mike Kear
Thanks for you help, as always Dave. I am always in admiration of your patience and helpful attitude whenever anyone asks a question. I dont think we say thanks enough. So thanks! Anyway, the structure is referred to in the HELM control panel of this shared hosting as a subdomain. I dont

RE: DateAdd value different on different servers

2010-04-21 Thread DURETTE, STEVEN J (ATTASIAIT)
Looks like one of the servers updated to DST and the others didn't. Steve -Original Message- From: Tom McNeer [mailto:tmcn...@gmail.com] Sent: Wednesday, April 21, 2010 1:55 PM To: cf-talk Subject: DateAdd value different on different servers There's a simple answer to this one;

Re: DateAdd value different on different servers

2010-04-21 Thread Judah McAuley
Two quick things: 1) those times aren't an hour off. EDT should be 4 hours off of UTC (GMT) and you are showing it as 1 hour, so that is actually a discrepancy of 3 hours. 2) Java uses its own date/time/timezone system that is independent of the underlying OS. You can directly invoke the OS

Re: DateAdd value different on different servers

2010-04-21 Thread Tom McNeer
Thanks for the replies, but mainly they tell me that I've muddied the water. Let me try to be clearer: I shouldn't have even mentioned the Unix value, because that's not relevant. Just forget that I'm getting a Unix value completely. And I definitely should not have shown the time zones,

CfEclipse Slow Code Hinting

2010-04-21 Thread Paul Alkema
Hi, Does any know if there's any way to change how long it takes for cfEclipse to provide code hinting? It's so slow. Regards, Paul ~| Want to reach the ColdFusion community with something they want? Let them know on

Re: DateAdd value different on different servers

2010-04-21 Thread Jason Fisher
I'd say that earns a WTF. It would appear that one of the servers must be adjusting the original CreateDate(), but your output shows that it's just not happening that way. I always thought that the DateAdd() was a simple math function. What are the differences (if any) in JVM and CF

Re: CfEclipse Slow Code Hinting

2010-04-21 Thread Jason Fisher
Window Preferences ColdFusion Editor Profiles Editor Code Assist There's a setting there called Dealy Before Showing Code Assist(in milliseconds) ~| Want to reach the ColdFusion community with something they want? Let

Re: DateAdd value different on different servers

2010-04-21 Thread Tom McNeer
On Wed, Apr 21, 2010 at 5:32 PM, Jason Fisher ja...@wanax.com wrote: I'd say that earns a WTF. I'd agree. It would appear that one of the servers must be adjusting the original CreateDate(), but your output shows that it's just not happening that way. And in the real world, the _one_

Re: CfEclipse Slow Code Hinting

2010-04-21 Thread denstar
For CFE it's: Preferences CFEclipse Editor : Insight Delay And you can disable specific kinds of assist using: Preferences CFEclipse Editor Auto-insertion closing: Suggest... In case one of them gets in your way too much at the lower delay setting. :den -- Psychologically experienced

Re: DateAdd value different on different servers

2010-04-21 Thread Jason Fisher
Wow. Post back after you update. I can't image that there's any real difference between 6.17 and 6.18, but if there is, I'll gladly update all of our servers NOW! :) ~| Want to reach the ColdFusion community with something

Re: Scheduled task isn't running the item in the url

2010-04-21 Thread Qing Xia
Logging is your friend. :-) Create a log file for your scheduled task. Does this page sit in an application that requires authentication? If so, make sure to specify the username and password. On Wed, Apr 21, 2010 at 10:48 AM, daniel kessler dani...@umd.edu wrote: I have the following task

Re: Where do i find CFGRID Code?

2010-04-21 Thread Dave Watts
So thanks! You're welcome! I guess what i need to do, is create a folder called CFIDE in the subdomain shard and put a copy of the classes and the form ajax scripts etc.      The HELM control panel doesn't have the functionality to create virtual directories, so to create those involves a

Re: Scheduled task isn't running the item in the url

2010-04-21 Thread Dave Watts
I have the following task (CF7).  The URL that it specifies is not being run.  This is my first task so I assume I'm doing something wrong.  I run that url separately and it works fine.  I check my list of scheduled tasks and my task shows up in that list and appears to be set up the way I

Re: DateAdd value different on different servers [spamtrap bayes][spamtrap heur]

2010-04-21 Thread Paul Hastings
On 4/22/2010 4:13 AM, Tom McNeer wrote: So - we're not dealing with time zones. We're simply creating date/time no, you're *always* dealing with tz when it comes to cf datetimes. cf will always use the server's tz for all datetime operations. dump out the java epoch for both server's

Re: CF9 Air Server Manager

2010-04-21 Thread krishna reddy
In the Errors view,if you see Duplicate session exception, please follow the following steps to fix.I believe that could be the case with you. Issue: In Server Manager AIR application, when you register two ColdFusion server instances running on the same machine with same hostname, you might