Re: CFImage at 300dpi

2011-02-07 Thread Michael Grant
Well he posted in another thread the day after he made his declaration. So he's alive. Whether he's ok is another thing altogether. On Mon, Feb 7, 2011 at 12:30 AM, Steven Durette st...@durette.org wrote: Has anyone heard anything? Is he ok? Sent from my iPhone

CFIMAGE (CF8) - moving /saving file from CFFileServlet

2011-02-07 Thread Tom King
Hi all, I'm having problems getting an image which I've used CFIMAGE to crop on CF8. I can crop the image, return it to the browser, but trying to 'get' at it on the subsequent page request is driving me mad. I can output the image, i.e img src=

Re: CFIMAGE (CF8) - moving /saving file from CFFileServlet

2011-02-07 Thread Dave Watts
I'm having problems getting an image which I've used CFIMAGE to crop on CF8. I can crop the image, return it to the browser, but trying to 'get' at it on the subsequent page request is driving me mad. I can output the image, i.e img src=

Re: CFIMAGE (CF8) - moving /saving file from CFFileServlet

2011-02-07 Thread Tom King
I'm using Matt Gifford's trick of returning the cropped image via an ajax request: http://www.mattgifford.co.uk/image-cropping-with-coldfusion-jquery/ So, yes, I suppose I could save it at that point, but it would remove the functionality of being able to revert to the original which is rather

Re: CFIMAGE (CF8) - moving /saving file from CFFileServlet

2011-02-07 Thread Dave Watts
I'm using Matt Gifford's trick of returning the cropped image via an ajax request: http://www.mattgifford.co.uk/image-cropping-with-coldfusion-jquery/ So, yes, I suppose I could save it at that point, but it would remove the functionality of being able to revert to the original which is

RE: Charge for meetings

2011-02-07 Thread Mark A. Kruger
We also set a policy to charge in 15 minute increments. Any phone call is going to incur at least 15 minute charge. That way we have substantive discussions with customers over the phone or in meetings and avoid those 5 minute phone calls (I had a thought...). -Original Message- From:

Re: Charge for meetings

2011-02-07 Thread Marc Funaro
I've done botha, and I vote iterative as well. Velocity seems to stay higher, and you can still make the bean counters happy by regularly discussing overall budget, timeline, and number/complexity of changes. It may not work for all clients, but I'd definitely encourage defining and trying

RE: SOT - site monitors

2011-02-07 Thread Brook Davies
I love wormly.com! Its cheap and highly configurable. They do remote monitoring of your website and you can install an agent if you want to monitor and get alerts on CPU, disk space etc. You can configure escalation schedules, get SMS messages and even get an automated phone call on an error.

RE: Charge for meetings

2011-02-07 Thread Jason Fisher
+1 to 15-minute increments. As an employee, tracking at this level is annoying, but as an independent contractor, it's crucial. Very easy to get nickel-and-dime'd to pieces, but this way you at least get compensated for it. From: Mark A. Kruger

2r hour time format

2011-02-07 Thread Orlini, Robert
Hello, Is there a way to format 24 hour time? Right now it dispalys as 1630 count time for example. I would like it to read 16:30. Could not find an example wit he Format filter. Thanks. RO HWW ~| Order the Adobe

RE: 2r hour time format

2011-02-07 Thread Robert Harrison
CreateTime, TimeFormat() ... see CF documentation. Robert B. Harrison Director of Interactive Services Austin Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 P : 631.231.6600 Ext. 119 F : 631.434.7022 http://www.austin-williams.com Great advertising can't be either/or. It must be

Re: 2r hour time format

2011-02-07 Thread Claude Schnéegans
Is there a way to format 24 hour time? Sure: use HH instead of hh in the mask with the timeFormat() function. ~| Order the Adobe Coldfusion Anthology now!

Re: 2r hour time format

2011-02-07 Thread Greg Morphis
Timeformat (time, HH:mm) doesn't work? notice the capital H sent from my Droid phone On Feb 7, 2011 9:17 AM, Orlini, Robert rorl...@hwwilson.com wrote: Hello, Is there a way to format 24 hour time? Right now it dispalys as 1630 count time for example. I would like it to read 16:30. Could not

RE: 2r hour time format

2011-02-07 Thread Mark A. Kruger
Timeformat(timeVariable,HH:mm ... either upper case o lower case gives you the 24 hour clock I think check the documentation. Mark A. Kruger, MCSE, CFG (402) 408-3733 ext 105 Skype: markakruger www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original Message- From:

RE: 2r hour time format

2011-02-07 Thread Orlini, Robert
Thank you all. I looked over the livedocs for CF and formatted it this way: #TimeFormat(get.prodreccounttime, hh:mm:ss)# However, instaed of the time 1630 becoming 16:30 I get 12:00:00. What did I do wrong here? RO -Original Message- From: Robert Harrison rob...@austin-williams.com

Re: RE: 2r hour time format

2011-02-07 Thread Greg Morphis
Try outputting your get.prodreccounttime variable. On Feb 7, 2011 10:14 AM, Orlini, Robert rorl...@hwwilson.com wrote: Thank you all. I looked over the livedocs for CF and formatted it this way: #TimeFormat(get.prodreccounttime, hh:mm:ss)# However, instaed of the time 1630 becoming

Re: 2r hour time format

2011-02-07 Thread Kelly
What do you get when you just do #get.prodreccounttime# w/ out the formatting? 1630 or 1200? also no need for :ss unless you want to display seconds. On 2/7/2011 11:14 AM, Orlini, Robert wrote: Thank you all. I looked over the livedocs for CF and formatted it this way:

Re: 2r hour time format

2011-02-07 Thread Ian Skinner
On 2/7/2011 8:14 AM, Orlini, Robert wrote: Thank you all. I looked over the livedocs for CF and formatted it this way: #TimeFormat(get.prodreccounttime, hh:mm:ss)# However, instaed of the time 1630 becoming 16:30 I get 12:00:00. What did I do wrong here? RO What type of data is

Re: 2r hour time format

2011-02-07 Thread Orlini, Robert
It is being output as cfoutput query=get. With this I get the 1630 not the 16:30 as I need. -Original Message- From: Kelly webd...@gmail.com Sent: Monday, February 7, 2011 11:18am To: cf-talk cf-talk@houseoffusion.com Subject: Re: 2r hour time format What do you get when you just do

Re: 2r hour time format

2011-02-07 Thread Orlini, Robert
Ahh. Good question. It is just numeric. I beleive I need to change it to date-time object? -Original Message- From: Ian Skinner h...@ilsweb.com Sent: Monday, February 7, 2011 11:19am To: cf-talk cf-talk@houseoffusion.com Subject: Re: 2r hour time format On 2/7/2011 8:14 AM, Orlini,

Re: 2r hour time format

2011-02-07 Thread Ian Skinner
On 2/7/2011 8:24 AM, Orlini, Robert wrote: Ahh. Good question. It is just numeric. I beleive I need to change it to date-time object? You will need to convert it, if you want to use the timeFormat() function. Otherwise you could just use some basic string manipulation functions to format

Re: 2r hour time format

2011-02-07 Thread Phillip Vector
You need to convert that to a date. When you store it in your db, you need to store it as a date or convert it before it's put into the DB. Please look up the date type of fields info. On Mon, Feb 7, 2011 at 8:23 AM, Orlini, Robert rorl...@hwwilson.com wrote: It is being output as cfoutput

Re: 2r hour time format

2011-02-07 Thread Orlini, Robert
Thanks Ian and thanks all for your 2 cents! -Original Message- From: Ian Skinner h...@ilsweb.com Sent: Monday, February 7, 2011 11:27am To: cf-talk cf-talk@houseoffusion.com Subject: Re: 2r hour time format On 2/7/2011 8:24 AM, Orlini, Robert wrote: Ahh. Good question. It is just

cf.Objective() 2011 Early Registration Rate ends Feb 14th!

2011-02-07 Thread Jim Louis
Hello Everyone, This the one and only email I will send regarding cf.Objective() 2011 to this list. So I thank you for your understanding. cf.Objective() 2011: The Only Enterprise ColdFusion Conference... May 12-14, 2011 at the Hyatt Regency Minneapolis, MN! * 76 Sessions, 5 Tracks,

RE: 2r hour time format

2011-02-07 Thread Mark A. Kruger
Try this... Numberformat(prodreccounttime,__:__) -Mark Mark A. Kruger, MCSE, CFG (402) 408-3733 ext 105 Skype: markakruger www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original Message- From: Orlini, Robert [mailto:rorl...@hwwilson.com] Sent: Monday, February 07, 2011

cleaning operators out of cfsearches

2011-02-07 Thread Richard Steele
I saw a utility to do this once, but have not been able to find it now that I need it. Here's what is needed... http://forums.adobe.com/thread/546788?tstart=0 Thanks in advance. ~| Order the Adobe Coldfusion Anthology now!

RE: 2r hour time format

2011-02-07 Thread Orlini, Robert
Generated an error: __:__ is an invalid mask for the input number: 1630. The following table contains all valid NumberFormat masks: Still need to set field to date/time I figure. Thanks. RO HWW -Original Message- From: Mark A. Kruger mkru...@cfwebtools.com Sent: Monday, February 7,

Re: 2r hour time format

2011-02-07 Thread Michael Grant
It seems to me that prodreccounttime is an integer and not a date/time object. On Mon, Feb 7, 2011 at 12:21 PM, Orlini, Robert rorl...@hwwilson.comwrote: Generated an error: __:__ is an invalid mask for the input number: 1630. The following table contains all valid NumberFormat masks:

RE: 2r hour time format

2011-02-07 Thread Mark A. Kruger
Rats... thought that might work. Ah well... -Original Message- From: Orlini, Robert [mailto:rorl...@hwwilson.com] Sent: Monday, February 07, 2011 11:22 AM To: cf-talk Subject: RE: 2r hour time format Generated an error: __:__ is an invalid mask for the input number: 1630. The

Re: cleaning operators out of cfsearches

2011-02-07 Thread Richard Steele
Found it! http://www.cflib.org/index.cfm?event=page.udfbyidudfid=760 ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Re: Accessing Specific CF8 Instances

2011-02-07 Thread Richard Steele
How do you get the session ids for each instance? What would the url look like that targeted a specific instance? Many thanks. ~| Order the Adobe Coldfusion Anthology now!

Re: Accessing Specific CF8 Instances

2011-02-07 Thread Dave Watts
How do you get the session ids for each instance? What would the url look like that targeted a specific instance? Many thanks. If you're using the JRun web server to access each instance, each one will have a different port: http://localhost:8300/cfide/administrator/

Problem with Report Builder - Element bottom

2011-02-07 Thread Wally Randall
After modifying the query in a label page in CF Report Builder I get this message: Report design not valid : 1. Warning : Element bottom reaches outside band area : y=2 height=72 band-height=72 This label format worked correctly but now all attempts to alter the label report result in this

Re: SOT - site monitors

2011-02-07 Thread Will Tomlinson
I unashamedly admit I don't want to pay for a service if I can. Can anyone recommend anything or alternatively I'm happy to run it off my own box if someone can recommend some code etc TIA! I use aremysitesup.com Works well. Will

Re: Accessing Specific CF8 Instances

2011-02-07 Thread Richard Steele
Well, I'm wondering if I can access the instance using an external, website address. Our developers don't necessarily have access to logging into the server. So, I'm hoping we could do something like this. http://www.website.com/index.cfm?CFID=x where x is the id of an instance.

Re: Accessing Specific CF8 Instances

2011-02-07 Thread Dave Watts
Well, I'm wondering if I can access the instance using an external, website address. Our developers don't necessarily have access to logging into the server. They don't have to log into the server, they can simply connect to the listening port:

Re: Charge for meetings

2011-02-07 Thread Sean Corfield
On Mon, Feb 7, 2011 at 6:15 AM, Marc Funaro subscripti...@advantex.net wrote: Sean, it would be interesting to learn what source code repository + ticketing system you use. Unfuddle.com seems to be the most accessible for clients in terms of friendly terminology etc. And I use git with it.

Re: Charge for meetings

2011-02-07 Thread Charlie Griefer
On Mon, Feb 7, 2011 at 4:33 PM, Sean Corfield seancorfi...@gmail.com wrote: On Mon, Feb 7, 2011 at 6:15 AM, Marc Funaro subscripti...@advantex.net wrote: Sean, it would be interesting to learn what source code repository + ticketing system you use. Unfuddle.com seems to be the most

refreshing application variables

2011-02-07 Thread Richard Steele
How does one refresh application.cfc application variables without restarting coldfusion services? Thanks in advance. ~| Order the Adobe Coldfusion Anthology now!

Re: refreshing application variables

2011-02-07 Thread Justin Scott
How does one refresh application.cfc application variables without restarting coldfusion services? Thanks in advance. What do you mean by refreshing specifically? ~| Order the Adobe Coldfusion Anthology now!

Re: Charge for meetings

2011-02-07 Thread Justin Scott
Unfuddle.com seems to be the most accessible for clients in terms of friendly terminology etc. And I use git with it. Hey wow.  Me too :) I'm glad this topic came up as I'm in the market for a new centralized repository for git as well as an issue tracking system, so this looks to be just

Re: refreshing application variables

2011-02-07 Thread Richard Steele
I've changed the code in application.cfc that creates application variables for error checking and I need to test it (without restarting coldfusion 8 services). ~| Order the Adobe Coldfusion Anthology now!

Re: refreshing application variables

2011-02-07 Thread Dave Watts
How does one refresh application.cfc application variables without restarting coldfusion services? Thanks in advance. 1. Rename your application. 2. Write some code you can trigger manually to explicitly call onApplicationStart: cffunction name=onRequestStart cfif structKeyExists(url,

Re: refreshing application variables

2011-02-07 Thread Sean Corfield
Call applicationStop() - assuming you're on ColdFusion 9 - that will cause the application to be restarted on the next request, running onApplicationStart() etc. On Mon, Feb 7, 2011 at 5:57 PM, Richard Steele r...@photoeye.com wrote: How does one refresh application.cfc application variables

Re: refreshing application variables

2011-02-07 Thread Raymond Camden
When I do this, I typically also do a cflocation right after to reload it for me. So I'll go to ?reinit=1 and get relocated back to ? after the applicationStop() call. (Hopefully that made sense.) On Mon, Feb 7, 2011 at 8:43 PM, Sean Corfield seancorfi...@gmail.com wrote: Call

Re: Re: Accessing Specific CF8 Instances

2011-02-07 Thread jqdurham
Wouldn'ta URL rewriter suffice? On Feb 7, 2011 5:19pm, Dave Watts dwa...@figleaf.com wrote: Well, I'm wondering if I can access the instance using an external, website address. Our developers don't necessarily have access to logging into the server. They don't have to log into the

Re: Accessing Specific CF8 Instances

2011-02-07 Thread Jochem van Dieten
On Mon, Feb 7, 2011 at 10:58 PM, Richard Steele wrote: Well, I'm wondering if I can access the instance using an external, website address. Our developers don't necessarily have access to logging into the server. So, I'm hoping we could do something like this.