RE: Enable Request Debugging Output not working

2015-04-06 Thread David Phelan
Andrew, IIS will capture CF errors and display friendly error messages if it is set to. The debugging output, however, should display regardless of this setting as, as you stated, it is not an error. I would look at the source to see if the output is being generated and simply being hidden

RE: 500 error/Permission issue with IIS 7

2015-03-31 Thread David Phelan
I have run into this very issue. If I remember, it ended up being a corruption in the web.config default documents. Try rebuilding that section. Dave -Original Message- From: Gerald Guido [mailto:gerald.gu...@gmail.com] Sent: Friday, March 27, 2015 1:52 PM To: cf-talk Subject: 500

RE: Can you use a CFTHREAD inside an Ajax routine?

2015-03-12 Thread David Phelan
Steven, What is it that is telling you that the thread is not running? What is it supposed to do that it is not, manipulate the file system, execute a stored procedure? Is it supposed to return a value that you are not seeing? Remember that a function that initiates a thread will continue

RE: Adobe ColdFusion Blog futzed?

2015-01-09 Thread David Phelan
Seems to be OK for me. -Original Message- From: george.e...@ssa.gov george.e...@ssa.gov [mailto:george.e...@ssa.gov] Sent: Friday, January 09, 2015 8:50 AM To: cf-talk Subject: Adobe ColdFusion Blog futzed? Is it just me or is the Adobe ColdFusion Blog (http://blogs.coldfusion.com/)

RE: Trouble with ArrayAppend

2014-12-30 Thread David Phelan
: Dean Lawrence [mailto:dean...@gmail.com] Sent: Monday, December 22, 2014 3:28 PM To: cf-talk Subject: Re: Trouble with ArrayAppend Hi David, Yes, the tmpAddress variable is var scoped at the top of the method. I tried your suggestion of re-initializing the struct with each iteration, but it did

RE: onRequestStart onRequest variable assignments

2014-12-29 Thread David Phelan
Don, You state that certain variables are being reset so then I assume that others are maintaining their values? Is there any difference in scope between those that are maintaining their values and those that are not? Is there a conditional redirect happening in OnRequestStart? Dave

RE: Trouble with ArrayAppend

2014-12-22 Thread David Phelan
Dean, First, is tmpAddress var scoped at the top of your function? I would try initializing tmpAddress on each iteration. for (var Address in Deal.getAddresses()){ tmpAddress = StructNew(); } Dave -Original Message- From: Dean Lawrence [mailto:dean...@gmail.com]

RE: Non-profit donation providers

2014-10-28 Thread David Phelan
Our hospital uses BlackBaud, used to be called Convio. http://www.convio.com/ Dave -Original Message- From: John M Bliss [mailto:bliss.j...@gmail.com] Sent: Tuesday, October 28, 2014 2:29 PM To: cf-talk Subject: Re: Non-profit donation providers ...?

RE: cfmail and special characters

2014-09-12 Thread David Phelan
Have you tried using HTMLEditFormat? David Phelan Web Developer IT Security Web Technologies Emerging Health Montefiore Information Technology 3 Odell Plaza, Yonkers, NY 10701 914-457-6465 Office dphe...@emerginghealthit.com www.emerginghealthit.com www.montefiore.org

RE: How can I force clients to refresh JavaScript files?

2014-09-12 Thread David Phelan
The easiest way is to simply expire the page using cfheader. Take a look at http://www.bennadel.com/blog/1619-caching-coldfusion-pages-with-expires-header-value.htm. David Phelan Web Developer IT Security Web Technologies Emerging Health Montefiore Information Technology 3 Odell Plaza

RE: cfchart in cfdocument

2014-09-08 Thread David Phelan
a gauge chart Thanks Sent from my iPhone On 5 Sep 2014, at 20:30, David Phelan dphe...@emerginghealthit.com wrote: Never mind, I figured it out. I stored the images in an array and used cfimage to render them to the browser. -Original Message- From: David Phelan [mailto:dphe

cfchart in cfdocument

2014-09-05 Thread David Phelan
of the graph. Is it possible that I am simply trying to create too many graphs at a time and the memory can't hold them all? Do I need to write all these images out to the file system and reference them as URLs? David Phelan Web Developer IT Security Web Technologies Montefiore IT 3 Odell Plaza

RE: cfchart in cfdocument

2014-09-05 Thread David Phelan
Never mind, I figured it out. I stored the images in an array and used cfimage to render them to the browser. -Original Message- From: David Phelan [mailto:dphe...@emerginghealthit.com] Sent: Friday, September 05, 2014 3:15 PM To: cf-talk Subject: cfchart in cfdocument I am trying

RE: Excel Problem...

2014-08-28 Thread David Phelan
Have you tried Ben Nadel's CreateXlsFromQuery? It creates a true Excel file which should be able to be opened in 2013. We are still on 2010 so I have not been able to test it but it's worth a try. The original code can be found at:

RE: AJAX request returning 304

2014-08-27 Thread David Phelan
Donnie, I don't see a reason why a cfheader tag wouldn't work, and if it fails it's easy enough to add in the missing tags. Personally, I would convert it to a function in a cfc. David Phelan Web Developer IT Security Web Technologies Emerging Health Montefiore Information Technology 3

RE: Querying a comma separated list

2014-08-27 Thread David Phelan
What I have seen done in these situations is to search where = the value or one of several like statements. where field = 'value' or field like 'value,%' or field like '%,value,%' or field like '%,value' David Phelan Web Developer IT Security Web Technologies Emerging Health Montefiore

RE: Need someone to help with site

2014-07-08 Thread David Phelan
Looks like there is a missing closing tag. If you're still having the issue I'd be glad to take a look. David Phelan Web Developer IT Security Web Technologies Emerging Health Montefiore Information Technology 3 Odell Plaza, Yonkers, NY 10701 914-457-6465 Office dphe...@emerginghealthit.com

Odd CSV Results

2014-05-13 Thread David Phelan
on Win 2k8 R2 with Office 2010 on my workstation. David Phelan Web Developer IT Security Web Technologies Montefiore IT 3 Odell Plaza, Yonkers, NY 10701 914-457-6465 Office 862-234-9109 Cell dphe...@emerginghealthit.commailto:dphe...@emerginghealthit.com www.emerginghealthit.comhttp

RE: Odd CSV Results

2014-05-13 Thread David Phelan
11788 T 631.231.6600 X 119   F 631.434.7022 http://www.austin-williams.com Blog: http://www.austin-williams.com/blog Twitter: http://www.twitter.com/austin_williams -Original Message- From: David Phelan [mailto:dphe...@emerginghealthit.com] Sent: Tuesday, May 13, 2014 2:01 PM To: cf

RE: Can't figure out a simple undefined request varible

2014-05-05 Thread David Phelan
Matt, Where is this being defined? If it is not in OnRequestStart, that's why you are seeing the error. But is there a specific reason that you are casting this in the request scope? It looks to me to be something that should be stored in the application scope. Dave -Original

RE: (ot) barcodes and mobile sites

2014-04-23 Thread David Phelan
The barcode is an image that evaluates to a string when read so you could: 1) store the string in the database and generate the barcode image on the fly 2) generate the barcode image, store it on the file system and store the path in the database 3) generate the barcode image and store it in a

Does Not Contain Number

2014-04-20 Thread David Moore
How do I check to see if a string includes (or does not contain) an integer or number. I am trying to check the Address form field to see if it 'Does Not Contain' a number as in 316 Spring Creek Dr. I want to see if they left out the 316. Thanks in advance for any help.

Re: Does Not Contain Number

2014-04-20 Thread David Moore
Is there a way to check the whole string and not just the first part in case it is a P.O. Box 316? ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion

Re: Does Not Contain Number

2014-04-20 Thread David Moore
Well, you are doing a great job. I guess I am not communicating well. I was using the 316 as an example. I want to check an address field passed from a form where the value is unknown. I just want to be able to check using Does Not Contain or IsNumeric or other Cold Fusion test in a cfif

Re: Does Not Contain Number

2014-04-20 Thread David Moore
For education reasons, what does the '/d' reference? How does that tell the statement to look for a number? ~| Order the Adobe Coldfusion Anthology now!

Re: Does Not Contain Number

2014-04-20 Thread David Moore
Very Helpful. I had not seen this before. Great stuff. And thanks to everyone for there expertise. CF-Talk has always come through for me. Blessed Easter everyone! ~| Order the Adobe Coldfusion Anthology now!

RE: Printing barcode labels from CF

2014-03-25 Thread David Phelan
was not an issue for them. I do not know how if you are intending for the client to print barcodes or not, but if this will be an administrative function it might be something to consider. David Phelan Web Developer IT Security Web Technologies Emerging Health Montefiore Information Technology 3 Odell

RE: database design conundrum

2014-03-21 Thread David Phelan
That would have been my suggested approach as well. I would suggest adding a sharewithall flag to tbl_shared_things so that the user has the option. I can be tedious to individually share information that you would gladly provide to anyone who asked for it, like office email, phone and fax.

CFHTTP SSL call returns Peer Not Authenticated

2014-02-24 Thread David Phelan
can get the WSDL from the host server through the browser on the client server, but the call through CF fail. Any help would be appreciated. We are using CF8 on a win2k8 R2 server. David Phelan Web Developer IT Security Web Technologies Montefiore IT 3 Odell Plaza, Yonkers, NY 10701 914-457

RE: cfquery multiple column search

2014-02-10 Thread David Phelan
) OR lower(col5) like lower(cfqueryparam cfsqltype=cf_sql_integer value=%#val(Arguments.search)#%) /cfif ) /cfquery David Phelan  Web Developer   IT Security Web Technologies   Emerging Health Montefiore Information Technology 3 Odell Plaza, Yonkers, NY

RE: per application settings

2013-12-03 Thread David Phelan
to accept the fact that CF WILL NOT interpret anything that is not a CF tag, script or variable and accept that there is something else that is causing what you are seeing. David Phelan  Web Developer   IT Security Web Technologies   Emerging Health Montefiore

RE: Problem with data formatting in CFINSERT

2013-11-04 Thread David Phelan
inserts simpler, it removes the programmers ability to define the field data type expected and perform data type validation using the cfqueryparam as well as allowing me to apply any formatting I desire to the value that is ultimately submitted to the query for insertion. David Phelan

RE: Saving updated sort order in mysql jquery list to update database

2013-09-26 Thread David Phelan
If you want to build the array in jQuery then you can do something like the following: arIDs = new Array(); $(input[name='ID']).each(function(){ arIDs.push($(this).val()); }) David Phelan  Web Developer   IT Security Web Technologies   Emerging

RE: Element undefined in SESSION scope

2013-08-07 Thread David Phelan
What is your session timeout? Are you setting it in your cfapplication tag or relying on the server settings? Is it possible that the timeout is too small and destroying the session before the form can be submitted? David Phelan  Web Developer   IT Security Web

RE: cfthread execution slowdown

2013-07-26 Thread David Phelan
the longer running threads at the end. My suggestion would be to do some time monitoring on the loops. I think you'll find that the average completion time for each thread increases as the number of completed requests decreases. David Phelan  Web Developer   IT Security Web

RE: Client wants CMS that functions similar to Joomla, for example

2013-07-24 Thread David Phelan
than making the endless, often minor, content changes that the client wants. David Phelan  Web Developer   IT Security Web Technologies   Emerging Health Montefiore Information Technology 3 Odell Plaza, Yonkers, NY 10701 914-457-6465 Office 862-234-9109 Cell dphe

RE: Client wants CMS that functions similar to Joomla, for example

2013-07-24 Thread David Phelan
client to the point that they move on to another option. David Phelan  Web Developer   IT Security Web Technologies   Emerging Health Montefiore Information Technology 3 Odell Plaza, Yonkers, NY 10701 914-457-6465 Office 862-234-9109 Cell dphe

CF9 License Resale Value

2013-07-21 Thread Michael David
Hello... I have a handful on CF9 licenses to get rid of. I also have one CF9 upgrade serial along with the original serial from the previous version. These are NOT academic licenses, and I am the original purchaser on all. What are these things worth? -- Cheers! Michael David

RE: Question about session management

2013-07-19 Thread David Phelan
However, there is no reason to have an application.cfm file in your login directory as CF will move up the directory tree until it finds an application.cfm file and use it. David Phelan  Web Developer   IT Security Web Technologies   Emerging Health

index.cfm being copied from site root to cf web root

2013-07-18 Thread David Phelan
of the references are broken. Has anyone ever seen this? Any idea how to correct it? CF MX 7 IIS 6 Windows 2003 R2 SP2 David Phelan Web Developer IT Security Web Technologies Emerging Health Montefiore Information Technology 3 Odell Plaza, Yonkers, NY 10701 914-457-6465 Office 862-234-9109 Cell dphe

Solr CF customX fields indexed despite schema.xml

2012-11-16 Thread David Sifford
this? Thanks for any help. -- David ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid

Re: CF DDos update released

2012-09-14 Thread David Boyer
not updating their installations. I'm still trying to discuss some things with Adobe in relation to this, so you may get some more information at some point. Dave --- David Boyer Blog http://misterdai.yougeezer.co.uk Twitter - http://twitter.com/misterdai CFML Engine

Restricting access to Railo 4 Administrator in IIS7.5

2012-08-26 Thread Michael David
Hey, I posted this to the Railo group, but my membership there is waiting for approval, so thought one of the Railo users here might have a suggestion. Rather than restricting access to the Railo admin pages using the IP filtering within IIS (which works fine), I am trying to do it within

Securing Railo

2012-08-23 Thread Michael David
the railo-context directory? What About the WEB-INF directory? -- Cheers! Michael David ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http

Re[2]: Installing Railo on IIS7.5

2012-08-22 Thread Michael David
I have some time tomorrow to load this up and give it a shot. Might anyone have any thoughts on how stable (or not) Beta 4.0 is? -- Cheers! Michael David -- Original Message -- From: Matt Quackenbush quackfu...@gmail.com To: cf-talk cf-talk@houseoffusion.com Sent: 8/20/2012 11:18

CF 10 Licensing surprise?

2012-08-20 Thread Michael David
! Michael David ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:352200

CF10 vs Railo

2012-08-20 Thread Michael David
is a problem, but I see that there is an extension out there. I often have the need to output data into multiple sheets within one file... -- Cheers! Michael David ~| Order the Adobe Coldfusion Anthology now! http

Re[2]: CF10 vs Railo

2012-08-20 Thread Michael David
about with Railo? -- Cheers! Michael David -- Original Message -- From: Cameron Childress camer...@gmail.com To: cf-talk cf-talk@houseoffusion.com Sent: 8/20/2012 9:15:46 AM Subject: Re: CF10 vs Railo On Mon, Aug 20, 2012 at 9:04 AM, Michael David li...@michaeldavid.com wrote: Anyone

Re[2]: CF10 vs Railo

2012-08-20 Thread Michael David
Yeah -- all MS servers (IIS 7.5). Is that a problem? -- Cheers! Michael David -- Original Message -- From: Matt Quackenbush quackfu...@gmail.com To: cf-talk cf-talk@houseoffusion.com Sent: 8/20/2012 9:23:36 AM Subject: Re: CF10 vs Railo On Mon, Aug 20, 2012 at 8:04 AM, Michael

Installing Railo on IIS7.5

2012-08-20 Thread Michael David
, something similar to Adobe's server lock-down guide? -- Cheers! Michael David ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http

Re[2]: Installing Railo on IIS7.5

2012-08-20 Thread Michael David
Russ, what do you mean by a lot of sites? 50, 100, 500? The Helicon Zoo module sounds interesting, if only because if it's cool name. :) I'll look for instructions on how to install that with Railo. -- Original Message -- From: Russ Michaels r...@michaels.me.uk To: cf-talk

X-Sendfile for IIS6

2012-08-06 Thread David Sifford
have any pointers to something that does this? Thanks for any info! -- David ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http

Coldfusion Session lost on iPad... sometimes.

2012-07-03 Thread David Wilson
We are experiencing an unusual error after launching our site. We have two options of payment for our app, Credit Card (using Paypal to process the payment) and Paypal Express Checkout (which for anyone who doesn't know, involves redirecting the user to Paypal and then back to your site to

Re: Coldfusion Session lost on iPad... sometimes.

2012-07-03 Thread David Wilson
the balancer to send a request to a different server causing cf to loose the session Paul On 04/07/2012, at 9:00 PM, David Wilson dbutto...@hotmail.com wrote: We are experiencing an unusual error after launching our site. We have two options of payment for our app, Credit

Re: 500 - Internal server error

2012-07-01 Thread Michael David
You checked on the settings page, to make sure use HTTP status codes was unchecked, yes? -- Cheers! Michael David -- Original Message -- From: Gonzo Rock gonzor...@gmail.com To: cf-talk cf-talk@houseoffusion.com Sent: 6/30/2012 8:28:45 PM Subject: 500 - Internal server error We

SMTP Service for CF Generated Emails

2012-06-30 Thread Michael David
Hey -- might any of you know a good, reliable SMTP provider that offers a dedicated IP Address? I am sure I can find one, but I would prefer to go with a provider that other CF-folks have used successfully. -- Cheers! Michael David

Re[6]: cfscript zip example?

2012-06-26 Thread Michael David
Ah. My apologies to the list for my inadvertent faux pas. (And thanks to the two kind souls who sent me messages off-list...) -- Cheers! Michael David -- Original Message -- From: Nathan Strutz str...@gmail.com To: cf-talk cf-talk@houseoffusion.com Sent: 6/25/2012 10:18:28 PM

Re[2]: cfscript zip example?

2012-06-25 Thread Michael David
Seriously! I sure wish that Adobe would provide a cfscript solution for every cftag, for those of us who prefer the former. -- Cheers! Michael David -- Original Message -- From: Andrew Scott andr...@andyscott.id.au To: cf-talk cf-talk@houseoffusion.com Sent: 6/25/2012 11:05:08

Re[4]: cfscript zip example?

2012-06-25 Thread Michael David
Ok, I'll bite. :) How is Railo compared, say, to CF9? Is it solid enough on IIS7 for high-volume production use? Seriously, not trying to touch off some debate here. I'm just curious... -- Cheers! Michael David -- Original Message -- From: Matt Quackenbush quackfu...@gmail.com

Re[2]: Best practices

2012-06-21 Thread Michael David
I assume the GNOME scope is only used for really short variables, yes? (sorry, I just couldn't resist) :) -- Cheers! Michael David -- Original Message -- From: Stephens, Larry V steph...@iu.edu To: cf-talk cf-talk@houseoffusion.com Sent: 6/21/2012 9:26:48 AM Subject: RE: Best

Re[2]: 504 Gateway Time-out

2012-06-18 Thread Michael David
Is it possible that the 504 error you are getting is actually not coming for your server, but rather an ATT gateway or proxy that thinks it did not get a timely response? (perhaps due to it's own traffic load) -- Cheers! Michael David -- Original Message -- From: John M Bliss

Re[4]: 504 Gateway Time-out

2012-06-18 Thread Michael David
There could be a box in the middle even though the URL is not an ATT URL (and its likely the case). How about you change the 504 message on your box to something else and see if you got your custom error message? -- Cheers! Michael David -- Original Message -- From: John M Bliss

Re[2]: CF10 vs CF9 performance

2012-06-18 Thread Michael David
Thanks Byron -- I am going to roll out CF10 on a couple of sites and see how it goes. I can always roll back if I have to. -- Cheers! Michael David -- Original Message -- From: Byron Mann byronos...@gmail.com To: cf-talk cf-talk@houseoffusion.com Sent: 6/13/2012 1:51:21 AM

CfBuilder 2 Syncronization

2012-06-11 Thread Michael David
Any CF Builder 2 users out there? How do you synchronize to local servers? So, for example, I want to sync to: \\production\d$\webroot\ How the heck do I do that? CFB2 is certainly interesting, but often seems unnecessarily obtuse. :( -- Cheers! Michael David

CF10 vs CF9 performance

2012-06-11 Thread Michael David
Has anyone seen any performance stats on CF10 vs CF9? Also, has anyone here put CF10 into production yet? I usually wait for a few months to see if any issues arise, but am pondering putting CF10 into production on a project that will be launching soon. -- Cheers! Michael David

Coupla CF Builder Questions

2012-06-09 Thread Michael David
which is getting in the way of the coding. I guess time will tell -- Cheers! Michael David ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion

Re[2]: Trouble setting up CF Builder

2012-06-08 Thread Michael David
So you are editing directly on the files that are in the dev server webroot? That will take some getting used to. I am used to editing locally and them pushing the files to the dev server for testing. -- Original Message -- From: Dave Watts dwa...@figleaf.com To: cf-talk

Re[4]: Trouble setting up CF Builder

2012-06-08 Thread Michael David
:13 AM, Michael David li...@michaeldavid.com wrote: So you are editing directly on the files that are in the dev server webroot? That will take some getting used to. I am used to editing locally and them pushing the files to the dev server for testing. -- Original Message

Re: cflayout and CKEditor don't play well together...sometimes.

2012-05-31 Thread David Moore
It still sounds like an excuse. If they are going to allow this mixing, they should either not provide the feature or make it work. Both are provided features within ColdFusion. They are both cf tags, cflayout and cftextarea rich? If Adobe is going to include them within ColdFusion they should

cflayout and CKEditor don't play well together...sometimes.

2012-05-30 Thread David Moore
cflayout issue from all the experts in this group! David ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf

cfmail to Exchange using TLS

2012-05-23 Thread David Phelan
on this completely? I have no experience sending secured email from CF so any help or advice would be appreciated. TIA -- David Phelan ColdFusion/Flex Application Developer phelan.dav...@gmail.com ~| Order the Adobe Coldfusion Anthology now

cfpdf and cfzip without writing to disk

2012-02-29 Thread David Mineer Jr
and the customer downloads the zip file. Do I have to write the modified pdf (the one with the watermark) to disk to be able to add it the zip? I can't seem to get cfzip to take the pdf variable. I can only get cfzip to read from disk. TIA --- David Mineer Jr - The critical

Re: cfpdf and cfzip without writing to disk

2012-02-29 Thread David Mineer Jr
Ray's right, cfpdf doesn't work with VFS. I did see that in the docs. --- David Mineer Jr - The critical ingredient is getting off your butt and doing something. It's as simple as that. A lot of people have ideas, but there are few who decide to do something about them now

Re: Returning errors from MySQL to AjaxCFC

2012-02-01 Thread David Torres
I sure thought about that Russ. The only thing is where and how to set the struct with the cfcatch errors in order to return the struct. If you have an idea let me now. I will look into that in the meantime. ~| Order the

Re: Returning errors from MySQL to AjaxCFC

2012-02-01 Thread David Torres
This sure worked Russ, but I noticed that I made a mistake earlier in my function. I placed the cftry tags in the wrong place. Anyway, here is what I did returning a struct and a string. USING A STRING: cffunction name=NAME returntype=any cfset var result = / cftry

Returning errors from MySQL to AjaxCFC

2012-01-31 Thread David Torres
Hello all, I have this situation. I am trying to send an error message from a cfquery doing an update in a cffunction. The update is supposed to throw a duplicate record error message, but even when a try a cftry and cfcatch, ajaxCFC just return the Invalid Reply from Server message. Does

Re: cfimage issue with dpi

2011-11-10 Thread David Moore
Is it a page execution timeout or some database query execution timeout? Sorry I haven't gotten back, been out sick. All I know is that the code works fine if the image being uploaded is 72dpi. If the dpi is larger, I get an error message that the cfquery which follows the upload times out?

cfimage issue with dpi

2011-11-04 Thread David Moore
I have an app that uploads and converts images to the appropriate sizes for website display. If the image being uploaded is 72dpi, it works fine. If the image is 97 dpi or up, the image is processed appropriately and saved as 72 dpi. Yet, whole the process works, it throws an error. The error

Error loading: C:/ColdFusion9/runtime/jre\bin\server\jvm.dll

2011-09-29 Thread David Mineer Jr
really have researched this and hopefully I am just missing something simple. --- David Mineer Jr - The critical ingredient is getting off your butt and doing something. It's as simple as that. A lot of people have ideas, but there are few who decide to do something about them now

Re: Error loading: C:/ColdFusion9/runtime/jre\bin\server\jvm.dll

2011-09-29 Thread David Mineer Jr
/runtime/jre\bin\server\jvm.dll. That is also what shows up in the coldfusion-out.log --- David Mineer Jr - The critical ingredient is getting off your butt and doing something. It's as simple as that. A lot of people have ideas, but there are few who decide to do something about

Re: multiple email addresses in cfmail FROM attribute

2011-09-29 Thread David Mineer Jr
You would just loop over the list of emails and use cfmail inside the loop to send, right? I could be misunderstanding exactly what you are asking. --- David Mineer Jr - The critical ingredient is getting off your butt and doing something. It's as simple as that. A lot

Re: Error loading: C:/ColdFusion9/runtime/jre\bin\server\jvm.dll

2011-09-29 Thread David Mineer Jr
Where can I get that from? --- David Mineer Jr - The critical ingredient is getting off your butt and doing something. It's as simple as that. A lot of people have ideas, but there are few who decide to do something about them now. Not tomorrow. Not next week. But today

Re: Error loading: C:/ColdFusion9/runtime/jre\bin\server\jvm.dll

2011-09-29 Thread David Mineer Jr
coldfusion services are running, but the main application service won't start up. And the web configuration tool won't either crap! Anyone else have any ideas? --- David Mineer Jr - The critical ingredient is getting off your butt and doing something. It's as simple as that. A lot

Re: Error loading: C:/ColdFusion9/runtime/jre\bin\server\jvm.dll

2011-09-29 Thread David Mineer Jr
help. --- David Mineer Jr ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid

Re: ColdFusion Peformance Blog Down

2011-09-28 Thread David McGuigan
Down again. http://www.cfwhisperer.com/post.cfm/good-practices-for-scaling-coldfusion-applications On Fri, Aug 26, 2011 at 1:42 PM, David McGuigan davidmcgui...@gmail.comwrote: This has been down for the last few days: http://www.cfwhisperer.com/ Anyone have a quick way of getting ahold

Re: CF Standard License

2011-09-23 Thread David McGuigan
You sure you don't want a CF8 Enterprise license? You can buy mine at a hell of a discount! On Fri, Sep 23, 2011 at 11:45 AM, Richard White rich...@j7is.co.uk wrote: Hi, Am i right in understanding that the only places to get CF9 Standard licenses are from Adobe or hosting companies?

Re: 20USD/Hour Seriously?

2011-09-23 Thread David McGuigan
Morality. On Fri, Sep 23, 2011 at 7:59 AM, Al Musella, DPM muse...@virtualtrials.comwrote: This may be a stupid question - I never worked by the hour, but I do sometimes hire people by the hour to do programming - but prefer paying by by the job.. There is no way to know how much time

Re: 20USD/Hour Seriously?

2011-09-23 Thread David McGuigan
Do I? On Fri, Sep 23, 2011 at 2:49 PM, Larry Lyons larrycly...@gmail.com wrote: Morality. Ethics you mean. ~| Order the Adobe Coldfusion Anthology now!

Re: 20USD/Hour Seriously?

2011-09-22 Thread David McGuigan
Is it just me or does this post smell of trollage? On Thu, Sep 22, 2011 at 9:03 AM, Phillip Vector vec...@mostdeadlygame.comwrote: IMHO, you get what you pay for. I've talked with several clients who hired at $20/hr or even less. I'm usually called in to clean up the mess at my standard

Re: 20USD/Hour Seriously?

2011-09-22 Thread David McGuigan
forth! On Thu, Sep 22, 2011 at 9:55 AM, Phillip Vector vec...@mostdeadlygame.comwrote: No trollage was intended. Seriously. On Thu, Sep 22, 2011 at 8:50 AM, David McGuigan davidmcgui...@gmail.com wrote: Is it just me or does this post smell of trollage? On Thu, Sep 22, 2011 at 9:03

Re: 20USD/Hour Seriously?

2011-09-22 Thread David McGuigan
, David McGuigan davidmcgui...@gmail.com wrote: Ok just wondering, because this is how I read that post: Hey guys I found a CF job for $20 an hour :( :( :( I can't effing believe that every CF job on Earth doesn't pay AT LEAST 1 Million Dollars per hour. This is stupid right

oAuth and MySQL

2011-09-14 Thread David McGuigan
Saw the oAuth library at RIAForge, and it appears to support errything BUT MySQL. Has anyone done it before? Should I just port all of the table generation and sql myself? Thanks! ~| Order the Adobe Coldfusion Anthology now!

Re: SOT: Workstation recommendations

2011-09-07 Thread David McGuigan
Dell and HP here, have had not a single issue with more than 5 systems of each over the last decade except a single broken key on a Dell laptop which they overnighted a replacement for for free with no extra service plan or warrantee service. Dell's refurbished outlet gives you some great deals

Re: How do you compose your dev teams?

2011-09-02 Thread David McGuigan
Two words. Walkie talkies. On Fri, Sep 2, 2011 at 1:12 PM, Nathan Strutz str...@gmail.com wrote: Hi everybody. I have a little management-type dilemma that I can't solve. I'm no manager, so I'm trying to collect info about how other people do it. I work in a small group of CF developers

Bulk image upload and in-browser cropping?!?

2011-08-30 Thread David McGuigan
Anyone built anything that lets you select multiple image files from a web browser for upload ( as well as folders ) like Facebook has? How about anything that lets you do in-browser image cropping? I can probably fire up Flash and develop the 2nd part myself, but I'm hoping there's something

ColdFusion Peformance Blog Down

2011-08-26 Thread David McGuigan
This has been down for the last few days: http://www.cfwhisperer.com/ Anyone have a quick way of getting ahold of Mike? ~| Order the Adobe Coldfusion Anthology now!

Re: ColdFusion Peformance Blog Down

2011-08-26 Thread David McGuigan
Thanks. Trying to get to one of his posts! On Fri, Aug 26, 2011 at 2:08 PM, Raymond Camden raymondcam...@gmail.comwrote: I pinged him. On Fri, Aug 26, 2011 at 2:42 PM, David McGuigan davidmcgui...@gmail.com wrote: This has been down for the last few days: http://www.cfwhisperer.com

Re: What the heck

2011-08-22 Thread David McGuigan
IsDefined takes a string. But you'll want to do structKeyExists instead anyway. On Mon, Aug 22, 2011 at 11:50 AM, Robert Harrison rob...@austin-williams.com wrote: What am I missing here Element USERID is undefined in SESSION. The error occurred in

Re: cf enterprise quad cpu box

2011-08-15 Thread David McGuigan
Are you saying that one of your cores has high utilization and the others none? Your server should use all cores *as necessary* *if ever necessary* *automatically* *without the intervention or management of your application*. That said you can break certain parts of code off into separate

Re: ColdFusion 10 and beyond

2011-08-11 Thread David McGuigan
What's the login? On Thu, Aug 11, 2011 at 3:58 AM, mac jordan mac.jor...@gmail.com wrote: On Thu, Aug 11, 2011 at 3:16 AM, David McGuigan davidmcgui...@gmail.com wrote: Don't get me wrong, WordPress is great. But it's not anything astounding. And it is slow. I run WordPress

  1   2   3   4   5   6   7   8   9   10   >