cffileupload Error 2038

2011-06-01 Thread steelers4582
I am trying to implement cffileupload and keep getting an Error 2038 error when I try to upload files larger than 1mb. I have all of my settings to allow file uploads of 700mb. Any ideas? -- View this message in context: http://old.nabble.com/cffileupload-Error-2038-tp31748485p31748485.html

Re: cffileupload Error 2038

2011-06-01 Thread John M Bliss
Does that error come with any more text...? On Wed, Jun 1, 2011 at 5:57 AM, steelers4582 cbal...@gmail.com wrote: I am trying to implement cffileupload and keep getting an Error 2038 error when I try to upload files larger than 1mb. I have all of my settings to allow file uploads of 700mb.

Re: cffileupload Error 2038

2011-06-01 Thread steelers4582
No, I am alerting the FILE.error attribute and that's all it says -- View this message in context: http://old.nabble.com/cffileupload-Error-2038-tp31748485p31748549.html Sent from the Cold Fusion - Technical mailing list archive at Nabble.com.

Re: cffileupload Error 2038

2011-06-01 Thread Russ Michaels
how long does it take until you get that error, is it a timeout issues perhaps ? On Wed, Jun 1, 2011 at 12:07 PM, steelers4582 cbal...@gmail.com wrote: No, I am alerting the FILE.error attribute and that's all it says -- View this message in context:

Re: Best way to use cfschedule for large number of tasks

2011-06-01 Thread Dan G. Switzer, II
Mosh, Thanks for the reply. In the past, I've always done things via the route you suggested (a single task working off of a queue). My concern here, and it looks like I left this out of the original post, is that the tasks will be time-sensitive (but not time-critical). That is, if the

RE: cffileupload Error 2038

2011-06-01 Thread Will Swain
Is this error in all browsers? Googling that error code suggests browser specific issues, and problems with the Flash file uploader, but I couldn't see any solutions. -Original Message- From: Russ Michaels [mailto:r...@michaels.me.uk] Sent: 01 June 2011 12:50 To: cf-talk Subject: Re:

cfinput type=datefield won't follow my CSS rules

2011-06-01 Thread Ken Hammond
I'm having a problem where my cfinputs that have type datefield are completely ignoring my CSS. Attached is a screenshot of what is happening; you'll see that my normal cfinputs (name, email, etc...) all follow my CSS just fine, but the cfinputs that use type datefield just ignore it

Re: cfinput type=datefield won't follow my CSS rules

2011-06-01 Thread Ken Hammond
Sorry, forgot can't do attachments, here is a link to the image: http://postimage.org/image/1hk51i4mc/ -Original Message- From: Ken Hammond khamm...@saleminc.com To: cf-talk cf-talk@houseoffusion.com Date: Wed, 01 Jun 2011 11:55:04 -0500 Subject: cfinput type=datefield won't follow my

RE: VPS Hosting

2011-06-01 Thread Terry Troxel
I give a Big Thumbs Up for AHPHOSTING.net. I have had very little down time in the 3 + years I have had a VPS with him and never any issues getting technical questions answered correctly. I think sometimes smaller is way better.

RE: VPS Hosting

2011-06-01 Thread Rick Faircloth
I hope they're better than when I used them about 3 years ago. I had nothing but problems and virtually no response from the owner when my server went offline. Hopefully, their service has improved and everyone that's using them is getting better service and support, but my experience was

RE: VPS Hosting

2011-06-01 Thread Eric Roberts
We have just recently had a lot of issues contacting them for support on getting a db running. My client is so frustrated right now with them because we cannot move forward. So we are also looking for a new home. -Original Message- From: Rick Faircloth [mailto:r...@whitestonemedia.com]

Re: cfinput type=datefield won't follow my CSS rules

2011-06-01 Thread morgan l
The datefield type is applying floats to the elements it creates, 'removing' them from their containers. I don't have an example of a fix, but that bit of info will hopefully point you at a solution. ~| Order the Adobe

Something CFBuilder should have that CFEclipse has...

2011-06-01 Thread Rick Faircloth
...the ability to mouse-over an image file and have the image, along with height and width, displayed. Most helpful...and missed in CFBuilder 2. Rick ~| Order the Adobe Coldfusion Anthology now!

Re: Something CFBuilder should have that CFEclipse has...

2011-06-01 Thread Wil Genovese
There is the Bugbase for Adobe https://bugbase.adobe.com/ that will let you enter feature requests. Adobe responds to entries there. Wil Genovese Sr. Web Application Developer/ Systems Administrator CF Webtools www.cfwebtools.com wilg...@trunkful.com www.trunkful.com On Jun 1, 2011, at

RE: Something CFBuilder should have that CFEclipse has...

2011-06-01 Thread Rick Faircloth
Thanks for the reminder, Wil... I forgot that I had already put in two feature requests. Now there's a third. Rick -Original Message- From: Wil Genovese [mailto:jugg...@trunkful.com] Sent: Wednesday, June 01, 2011 3:19 PM To: cf-talk Subject: Re: Something CFBuilder should have that

RE: Best way to use cfschedule for large number of tasks

2011-06-01 Thread Mosh Teitelbaum
Al: Thanks. I like the idea of associating a priority with each task. Good idea! -- Mosh Teitelbaum evoch, LLC Tel: (301) 942-5378 Fax: (301) 933-3651 Email: mosh.teitelb...@evoch.com WWW: http://www.evoch.com/ -Original Message- From: Al Musella, DPM

Re: cfinput type=datefield won't follow my CSS rules

2011-06-01 Thread Ken Hammond
I've made it a little further by adding a div around each cfinput datefield and putting the style clear:both; New image: http://postimage.org/image/2umskf4hw/ At least now the labels are in the boxes. -Original Message- From: morgan l greyk...@gmail.com To: cf-talk

Using LIKE in CF8

2011-06-01 Thread Terry Troxel
I have been doing this forever with no problems until today. Can anyone spot my error(s)?: cfquery name=searcher datasource=rnc select * from leads where 0 = 0 cfif lname NEQ and lastname LIKE '#lname#%' /cfif /cfquery which give me this error: Error Executing Database Query.

Re: Using LIKE in CF8

2011-06-01 Thread Russ Michaels
have you got a cfoutput around that ? On Wed, Jun 1, 2011 at 11:02 PM, Terry Troxel terry.tro...@gmail.comwrote: I have been doing this forever with no problems until today. Can anyone spot my error(s)?: cfquery name=searcher datasource=rnc select * from leads where 0 = 0 cfif lname

Re: Using LIKE in CF8

2011-06-01 Thread Rex
I think MSAccess only uses *, not % On 6/1/2011 3:02 PM, Terry Troxel wrote: I have been doing this forever with no problems until today. Can anyone spot my error(s)?: cfquery name=searcher datasource=rnc select * from leads where 0 = 0 cfif lname NEQ and lastname LIKE '#lname#%'

Re: Using LIKE in CF8

2011-06-01 Thread Claude Schnéegans
I think MSAccess only uses *, not % In pure Access SQL yes, but % is correctly translated by the ODBC driver. ~| Order the Adobe Coldfusion Anthology now!

Re: Using LIKE in CF8

2011-06-01 Thread Claude Schnéegans
have you got a cfoutput around that ? No CFOUTPUT is need inside CFQUERY and CFMAIL tags. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Re: Using LIKE in CF8

2011-06-01 Thread Claude Schnéegans
Too few parameters. Expected 1. This error means than 1 column name is unknown in the table. Here it must be lastname ~| Order the Adobe Coldfusion Anthology now!

RE: Using LIKE in CF8

2011-06-01 Thread Mark A. Kruger
That's a misleading error... I think it's straight syntax... are you sure it's lastname ? Mark A. Kruger, MCSE, CFG (402) 408-3733 ext 105 www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original Message- From: Terry Troxel [mailto:terry.tro...@gmail.com] Sent: Wednesday,

Re: Using LIKE in CF8

2011-06-01 Thread Terry Troxel
Thank you...Gee I feel like a newbie.A simple typo. On Wed, Jun 1, 2011 at 3:29 PM, wrote: Too few parameters. Expected 1. This error means than 1 column name is unknown in the table. Here it must be lastname

RE: Image quality: CFX_imageCR vs CFIMAGE?

2011-06-01 Thread UXB
is CFIMAGE as good at the job as CFX_imageCR3 in terms of image quality? Please post what you find out because most of my applications are dependent on the CFX_ImageCR3 and the error codes and detailed functions which I am sure are not the same as CFIMAGE. Dennis Powers UXB Internet - A

Re: cfinput type=datefield won't follow my CSS rules

2011-06-01 Thread Ken Hammond
Ok, I got it to work but not the way I really want to do it... Under my LI, I used a table with cell, spacing and borders set to 0, put the label in the first td and the div containing the cfinput type datafield inside the second td then closed it all. Turns out just like I wanted, all be it

Re: Image quality: CFX_imageCR vs CFIMAGE?

2011-06-01 Thread Claude Schnéegans
Please post what you find out because most of my applications are dependent on the CFX_ImageCR3 I finally decided to install the CF 32 bit version on my W 7 development PC. I could get around many of the uncompatibilities, but since my production server is 32-bit I found not reasonable to have