Re: Help with creating a filename field

2009-08-24 Thread Dave l
I'm in the middle of remaking a decent jquery uploader for my admin sites and here is what i do ( for the whole upload): 1. photo uploaded via jquery flash and sent to a cfc, I send a long with the file variables for file size, mime whether or not I want to run the virus scanner. I do not

Re: How to Make Layers Visible with OnMouseOver

2009-08-24 Thread Dave l
holy cr*p Frontpage 2! damn that rocks!! haha ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

RE: How to Make Layers Visible with OnMouseOver

2009-08-24 Thread Adrian Lynch
-Original Message- From: Peter Boughton [mailto:bought...@gmail.com] And just a quick simplification of Adrian's jQuery... Instead of: $(#show).mouseover(func1).mouseout(func2) You can do: $(#show).hover(func1,func2) Holy bejeasus, how long has hover() been there?!

Re: Help with creating a filename field

2009-08-24 Thread Kevan Stannard
Would be a good idea to also check the file extension of the uploaded file, otherwise you may get a .cfm file uploaded with a spoofed mime type of image/jpg for example. 2009/8/24 Dave l cfl...@jamwerx.com I'm in the middle of remaking a decent jquery uploader for my admin sites and here is

CFFM 1.3 RC

2009-08-24 Thread Rick Root
Hi all, I've been working on making CFFM cooler, with jquery and a few plugins (imgPreview, uploadify)... It all still runs on older versions of CF (tested on CFMX7, 8, and 9) It's fully ajaxified... the main document is never reloaded. http://www.opensourcecf.com/cffm/demo/cffm.cfm I

Re: Help with creating a filename field

2009-08-24 Thread Dave l
it does check.. well it runs a java check then compares that with list of acceptable ones and then with the file. Unfortunately both can be spoofed and haven't seen a real good solid solution yet. It's hard to believe there isn't a real good solid way yet. And if it did get by and it was set

Re: How to Make Layers Visible with OnMouseOver

2009-08-24 Thread Larry Lyons
Scott, Here's how I do it. First of all I'm assuming that your divisions are initially visible, if not in your CSS set the display for the div to none. Add the following into your head area of your page: script language=javascript type=text/javascript function toggle(item) {

Client Variables database problem

2009-08-24 Thread Laura Norris
i know i've gotten this error before and found a fix for it before, but for the life of me i can not find how to fix it. I'm getting the following error at the bottom of my pages: 500 Operation failed on the data source named ClientVariables. Operation failed on the data source named

cfhttp time limit

2009-08-24 Thread Chad Gray
I got this error back from an application. The request has exceeded the allowable time limit Tag: cfhttp Where do you set the time limit for CFHTTP? ~| Want to reach the ColdFusion community with something they want? Let them

Re: cfhttp time limit

2009-08-24 Thread Cameron Childress
On Mon, Aug 24, 2009 at 4:18 PM, Chad Graycg...@careyweb.com wrote: I got this error back from an application. The request has exceeded the allowable time limit Tag: cfhttp Where do you set the time limit for CFHTTP? Take a look at the attribute timeout.

Automatically save email attachment

2009-08-24 Thread Jen Perkins McVicker
We're running a mail server on Linux with Courier POP3 Server. I'm trying to find a way to check emails when they come in to a particular mailbox, and if they contain an attachment, I want to save that attachment to another directory. I've been searching for a solution but my Google-fu must be

Re: How to Make Layers Visible with OnMouseOver

2009-08-24 Thread Peter Boughton
script language=javascript type=text/javascript That language attribute does nothing - you don't need it. script type=text/javascript is more than enough. ~| Want to reach the ColdFusion community with something they want?

RE: Automatically save email attachment

2009-08-24 Thread brad
Just a guess here, but have you looked into the cfpop and cffile tags and a scheduled task? http://www.cfquickdocs.com/cf8/#cfpop ~Brad Original Message Subject: Automatically save email attachment From: Jen Perkins McVicker snarkmeis...@gmail.com Date: Mon, August 24,

Throttling CFMail

2009-08-24 Thread Pete Ruckelshaus
I got dinged by my ISP for sending 2,000 email newsletters at once. Any ideas on how to throttle these emails so that they are sent in small batches, i.e. 100 per minute? Is there a simple way to accomplish this, or do I just need to write my own code that loops through and sends emails

RE: Throttling CFMail

2009-08-24 Thread brad
I believe you will need to account for that throttling in your code. Once your CFMAIL tag as run, the CF server will sent your messages as soon as the mail spooler runs next. I suggest a queue table of your own that you dump ALL the E-mails into and a job that polls that table and sends out x

Re: Throttling CFMail

2009-08-24 Thread Agha Mehdi
Pete, An old discussion on CFTalk that may still be valid http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:47090 http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:47090 On Mon, Aug 24, 2009 at 2:07 PM, b...@bradwood.com wrote: I believe you will need to account

RE: Automatically save email attachment

2009-08-24 Thread Jen Perkins McVicker
Thanks Brad, I don't know how I missed that attachmentPath attribute! I'll try the CFPOP tag. Jen Perkins McVicker Adobe Certified ColdFusion Developer jen.mcvic...@gmail.com -Original Message- From: b...@bradwood.com [mailto:b...@bradwood.com] Sent: Monday, August 24, 2009 1:58 PM To:

Is this cfftp code correct?

2009-08-24 Thread Rick Faircloth
cfftp action = listDir stopOnError = yes name= photoFilesList directory = #cfftp.returnValue# connection = hmls cfoutput photoFilesList: #photoFilesList#/cfoutput

RE: Throttling CFMail

2009-08-24 Thread David Long
Good luck on the throttling. I never could get it to work but was able to come to an understanding with my Web Host's Sysadmin. Don't know what he did but I now send out 3,000+ with a single click using: CFLOOP list=#Form.SelectedRecipients# index=Recipient CFMAIL

Re: Throttling CFMail

2009-08-24 Thread Pete Ruckelshaus
The emails are completely opt-in, and there are links in the footer of each email to both immediately remove from the email list and also change their email preferences. I might just create a generic sent emails table with an accompanying scheduled task that runs every 5 minutes, grabs the top

Re: cfeed and CDATA problems.

2009-08-24 Thread Jose Galdamez
I'm having the same problem with the cffeed tag. Too bad no one has replied to this thread yet. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

RE: Is this cfftp code correct?

2009-08-24 Thread Rick Faircloth
Nevermind... I needed to set passive = yes for the listDir action. I'm surprised I needed to, because the connection was already opened using passive = 'yes'... -Original Message- From: Rick Faircloth [mailto:r...@whitestonemedia.com] Sent: Monday, August 24, 2009 5:30 PM To: cf-talk

Re: Automatically save email attachment

2009-08-24 Thread Rick Root
On Mon, Aug 24, 2009 at 5:19 PM, Jen Perkins McVickersnarkmeis...@gmail.com wrote: Thanks Brad, I don't know how I missed that attachmentPath attribute! I'll try the CFPOP tag. I built a ticketing system in CF that uses this to save attachments, works great! -- Rick Root CFFM - Open Source

RE: Throttling CFMail

2009-08-24 Thread Robert Harrison
Below, I cut out a routine from a much larger program that builds and throttles mail. You should be able to follow the logic. You'll need to adjust for your use, but the bottom line is: 1. put mail addresses in a queue 2. loop and get X records from queue, send them 3. set a time condition

Re: Throttling CFMail

2009-08-24 Thread Rick Root
One thing you could do instead of calling cfmail insert the details into a DB table (to,from, cc, subject, type, content, etc)... then have a scheduled task that runs every minute send out 100 emails from the table and flag them as sent. Then, it takes a minimum of 20 minutes to send out

Re: Throttling CFMail

2009-08-24 Thread Robert Harrison
That's exactly what the routine I sent out a few minutes ago does. Robert _ From: Rick Root [mailto:rick.r...@webworksllc.com] To: cf-talk [mailto:cf-t...@houseoffusion.com] Sent: Mon, 24 Aug 2009 20:41:35 -0400 Subject: Re: Throttling CFMail One thing you could do instead of

Re: Throttling CFMail

2009-08-24 Thread Rick Root
Heh, sorry. That's essentially what we do when we sent bulk mail where I work... except instead of a scheduled task I have an event gateway that fires off every minute (I wrote a very simple interval gateway for this purpose, just google simple interval gateway) Rick On Mon, Aug 24, 2009 at

Re: CFFM 1.3 RC

2009-08-24 Thread Mike Kear
Rick, nice work. Well done. I have integrated your earlier version in my CMS, and one of the issues I had was making the look and feel work with the look and feel of my own CMS. I thought it would have been a lot easier to integrate if all the colours and font definitions were in a style

ColdFusion Builder - free or commercial product?

2009-08-24 Thread Pete Ruckelshaus
I've been using ColdFusion Builder and am more or less happy with it (any unhappiness stems from Eclipse quirks and limitations), but I have a question: Once it's out of beta, will CF Builder be a commercial product that will need to be purchased, or will it be available for free? Thanks Pete

Re: ColdFusion Builder - free or commercial product?

2009-08-24 Thread Barney Boisvert
To this point, Adobe and it's ancestors have charged for all their development products: HomeSite, CF Studio, Dreamweaver, UltraDev, FlexBuilder, perhaps others? They also obviously charge for their design products (the Creative Suite's members). It stands to reason that FlashBuilder and CF