array help how do I do this?

2010-06-30 Thread Glyn Jackson
can anyone tell me what I am doing wrong here as as the hotspots does not seem to like this array i.e. the web service responses back Required field 'title' etc for all fields cfscript var response = StructNew();

Re: array help how do I do this?

2010-06-30 Thread Glyn Jackson
not an array issues must be to do with the upper-case conversion again, how do i get around that with... response['hotspots'] = [ { distance =100,

RE: JSON response need a little help

2010-06-30 Thread Andy Matthews
[mailto:glyn.jack...@newebia.co.uk] Sent: Wednesday, June 30, 2010 10:39 AM To: cf-talk Subject: Re: JSON response need a little help cool so something like this would work?... response['hotspots'] = [{ distance ='100', attribution

RE: In a pickle, need some help...

2010-06-26 Thread Che Vilnonis
Alan, you got an IP address I can add? Email me at chevy AT asitv DOT com. Thanks! -Original Message- From: Alan Rother [mailto:alan.rot...@gmail.com] Sent: Friday, June 25, 2010 3:20 PM To: cf-talk Subject: Re: In a pickle, need some help... Can you share a link so we can look

Re: In a pickle, need some help...

2010-06-26 Thread Sean Corfield
Using SES URLs or some other approach that might cause css/images with relative paths to appear to have the wrong paths in IE? On Fri, Jun 25, 2010 at 10:56 AM, Che Vilnonis ch...@asitv.com wrote: I am in the process of moving two sites that I have hosted for over 10 years, from my server to

In a pickle, need some help...

2010-06-25 Thread Che Vilnonis
I am in the process of moving two sites that I have hosted for over 10 years, from my server to my clients server. At the moment, only I can see how the sites that are hosted on my client's server render in my browser. So, here's what is weird. CSS and images (.jpg/.gif) render fine in Firefox

RE: In a pickle, need some help...

2010-06-25 Thread Che Vilnonis
One more thing... This is an old fusebox-sh site that uses the formurl2attributes.cfm custom tag. That might help... -Original Message- From: Che Vilnonis [mailto:ch...@asitv.com] Sent: Friday, June 25, 2010 1:57 PM To: cf-talk Subject: In a pickle, need some help... I am

Re: In a pickle, need some help...

2010-06-25 Thread Alan Rother
Can you share a link so we can look at it as well? =] On Fri, Jun 25, 2010 at 10:56 AM, Che Vilnonis ch...@asitv.com wrote: I am in the process of moving two sites that I have hosted for over 10 years, from my server to my clients server. At the moment, only I can see how the sites that

CFlickr help upload to a group

2010-06-22 Thread Rick Mason
I am building a web form that uploads pictures to our account on Flickr. Using the CFlickr library examples I was able to get the form posting to Flickr. But I need it to post to a specific group within our account. In Flickr parlance groups are sort of like folders and depending on the posters

Re: Want Help with cffileupload .swf Not Loading w/Non-URL Accessible CFIDE

2010-06-14 Thread Matthew Lesko
Bugged and marked fox resolution in 9.0.1 http://cfbugs.adobe.com/cfbugreport/flexbugui/cfbugtracker/main.html#bugId=83328 ~| Order the Adobe Coldfusion Anthology now!

Re: Want Help with cffileupload .swf Not Loading w/Non-URL Accessible CFIDE

2010-06-10 Thread Matthew Lesko
Just an FYI, this is also an issue with cfmediaplayer and the only solution I can find is editing the cfmediaplayer.js file. ~| Order the Adobe Coldfusion Anthology now!

Want Help with cffileupload .swf Not Loading w/Non-URL Accessible CFIDE

2010-06-09 Thread Matthew Lesko
Anyone figure out how to make this work just using CFML and/or changing Administrator configuration? I've Tried: 1. cjajaximport scriptsrc=/cfscripts// where cfscripts is a copy everything in CFIDE/scripts. 2. CF Adminstrator Server Settings Settings Default ScriptSrc Directory What

RE: RegEx help

2010-06-08 Thread Debbie Morris
Thanks for the help, Jason and Andy. Turns out the character apparently isn't a tab though. Viewing it in WireShark, it looks like there is a carriage return (0d), a line feed (0a) and a space (20) between the age and gender strings. Sorry to be so dumb, but I've managed to avoid regular

RE: RegEx help

2010-06-08 Thread Bobby Hartsfield
- From: Debbie Morris [mailto:dmor...@sussexcountyde.gov] Sent: Tuesday, June 08, 2010 10:23 AM To: cf-talk Subject: RE: RegEx help Thanks for the help, Jason and Andy. Turns out the character apparently isn't a tab though. Viewing it in WireShark, it looks like there is a carriage return (0d

Re: RegEx help

2010-06-08 Thread Michael Grant
://acoderslife.com -Original Message- From: Debbie Morris [mailto:dmor...@sussexcountyde.gov] Sent: Tuesday, June 08, 2010 10:23 AM To: cf-talk Subject: RE: RegEx help Thanks for the help, Jason and Andy. Turns out the character apparently isn't a tab though. Viewing it in WireShark

RE: RegEx help

2010-06-08 Thread Bobby Hartsfield
Oh. I never saw mention of that... and I think it's a she ;-) .:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Michael Grant [mailto:mgr...@modus.bz] Sent: Tuesday, June 08, 2010 11:06 AM To: cf-talk Subject: Re: RegEx help I think he

Re: RegEx help

2010-06-08 Thread Michael Grant
;-) .:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Michael Grant [mailto:mgr...@modus.bz] Sent: Tuesday, June 08, 2010 11:06 AM To: cf-talk Subject: Re: RegEx help I think he wants to make it part of the t-sql code. Do you really need

Re: RegEx help

2010-06-08 Thread Kris Jones
How about something like this: cfset arFound = refindnocase(Age:([^\r\n|\r|\n]*)[\r\n|\r|\n],thestring,1,true) / cfoutput#mid(thestring,arFound[pos][1],arFound[len][1])#/cfoutput Cheers, Kris ~| Order the Adobe Coldfusion

Re: RegEx help

2010-06-08 Thread Kris Jones
Rather, that would be, if you don't want the label of the field: cfoutput#mid(thestring,arFound[pos][2],arFound[len][2])#/cfoutput Cheers, Kris On Tue, Jun 8, 2010 at 11:43 AM, Kris Jones kris.jon...@verizon.net wrote: How about something like this: cfset arFound =

RE: RegEx help

2010-06-08 Thread Jason Fisher
08, 2010 10:24 AM To: cf-talk cf-talk@houseoffusion.com Subject: RE: RegEx help Thanks for the help, Jason and Andy. Turns out the character apparently isn't a tab though. Viewing it in WireShark, it looks like there is a carriage return (0d), a line feed (0a) and a space (20) between the age

RE: RegEx help

2010-06-08 Thread Debbie Morris
Fisher [mailto:ja...@wanax.com] Sent: Tuesday, June 08, 2010 11:40 AM To: cf-talk Subject: RE: RegEx help Debbie, Where 'testString' is your content, try this: cfset test = reFind(Age:([0-9a-zA-Z ]+)\s*\n, testString, 1, true) / cfoutput#mid(testString, test.pos[2], test.len[2])#/cfoutput

RE: RegEx help

2010-06-08 Thread Bobby Hartsfield
help Thank you (and everyone else)!! This one did the trick! Now I just need to finish the logic around it so that it doesn't break when there aren't any comments that match, and I can get this off my plate before I leave for vacation! Thanks again! Deb -Original Message- From: Jason

RegEx help

2010-06-07 Thread Debbie Morris
I need to extract a particular piece of data from one of my query fields and I'm not sure how to go about it. We have incidents in one table that can have comments in another table associated with them. Here's an example of one of the comments in my query results that I need to grab data

RE: RegEx help

2010-06-07 Thread Andy Matthews
: Debbie Morris [mailto:ddicker...@macromedia.com] Sent: Monday, June 07, 2010 1:51 PM To: cf-talk Subject: RegEx help I need to extract a particular piece of data from one of my query fields and I'm not sure how to go about it. We have incidents in one table that can have comments in another table

RE: RegEx help

2010-06-07 Thread Jason Fisher
-Z ]+)\t, testString, 1, true) / cfoutput#mid(testString, test.pos[2], test.len[2])#/cfoutput From: Andy Matthews li...@commadelimited.com Sent: Monday, June 07, 2010 3:32 PM To: cf-talk cf-talk@houseoffusion.com Subject: RE: RegEx help If you can always

Help CF 8 - Enterprise, Collections are Disappearing

2010-06-04 Thread Richard Steele
Help! Our verity collections are starting to disappear! The files are there, but some (not all) are no longer listed in the admin verity collections list. We try to recreate them and it says that they can't be recreated because they already exist. Sometimes we can delete those folders

Re: CFGRID - Empty Response help

2010-05-25 Thread Emily McGill
Thanks for the help. I went in yesterday to try this change and noticed at that point (after hours of staring at it last week), it was a darn typo actually. Fixed it right up. This line - cfcase value=invoiceAactive has the double a in the invoiceActive line. No wonder my response was empty

Re: CFGRID - Empty Response help

2010-05-25 Thread Scott Stewart
Emily.. no problem at all.. sometimes the worst bugs, just need a fresh set of eyes ...no time wasted, glad I could help On Tue, May 25, 2010 at 11:19 AM, Emily McGill cassadinec...@gmail.com wrote: Thanks for the help. I went in yesterday to try this change and noticed at that point (after

Need CF help- is anyone available

2010-05-25 Thread cfcom
Having serious problem with a piece of code Is there anyone who could take a look Been racking my head on this all day Please contact off list And thank you in advane ~| Order the Adobe Coldfusion Anthology now!

Re: Need CF help- is anyone available

2010-05-25 Thread Phillip Vector
The best solution is to ask directly here. It allows for allot of people to help. So what's the issue? On Tue, May 25, 2010 at 1:47 PM, cfcom cf...@aceligent.com wrote: Having serious problem with a piece of code Is there anyone who could take a look Been racking my head on this all day

Re: Need CF help- is anyone available

2010-05-25 Thread Charlie Griefer
You'd have a greater likelihood of having more sets of eyes on it (and thus a greater likelihood of getting a solution) if you were to just post the question/code to the list. IMO, of course :) On Tue, May 25, 2010 at 1:47 PM, cfcom cf...@aceligent.com wrote: Having serious problem with a

RE: Need CF help- is anyone available

2010-05-25 Thread cfcom
functioning and now they are not. - any help would be greatly appreciated. -Original Message- From: Phillip Vector [mailto:vec...@mostdeadlygame.com] Sent: 2010-05-25 16:50 To: cf-talk Subject: Re: Need CF help- is anyone available The best solution is to ask directly here. It allows

RE: Need CF help- is anyone available

2010-05-25 Thread William Seiter
site has access to files there. Hope this helps, William -Original Message- From: cfcom [mailto:cf...@aceligent.com] Sent: Tuesday, May 25, 2010 2:28 PM To: cf-talk Subject: RE: Need CF help- is anyone available We have a legacy site that was originally written without error handling

RE: Need CF help- is anyone available

2010-05-25 Thread cfcom
[mailto:charlie.st...@gmail.com] Sent: 2010-05-25 18:39 To: cf...@aceligent.com Subject: Re: Need CF help- is anyone available As long as the image names follow your pattern, you should be able to use a http redirect to a cfm, and in the cfm have something like ...logic to determine X

RE: Need CF help- is anyone available

2010-05-25 Thread cfcom
To: cf...@aceligent.com Subject: Re: Need CF help- is anyone available As long as the image names follow your pattern, you should be able to use a http redirect to a cfm, and in the cfm have something like ...logic to determine X - the complete current file path. cfcontent file=#X# type

RE: CFGRID - Empty Response help

2010-05-24 Thread Scott Stewart
Emily, This line needs a set cf link = a href=AppExt.cfm?apprid= -Original Message- From: Emily McGill [mailto:cassadinec...@gmail.com] Sent: Friday, May 21, 2010 1:38 PM To: cf-talk Subject: CFGRID - Empty Response help Ok, I have read and read and read and I can't figure out

Re: Little Help with a Site Search Query

2010-05-23 Thread denstar
On Sat, May 22, 2010 at 11:46 PM, Les Mizzell wrote: ... lst.srchTHS won't ever be more then three to five words or so, but I wish I could figure a way to use cfqueryparam list=yes instead of a loop... I think you might be able to concat the fields and then use a regex search, if the DB

Little Help with a Site Search Query

2010-05-22 Thread Les Mizzell
Working on setting up a site search - (SQL Server). Query below won't work as feature_text is a TEXT field mylst will ALWAYS be a comma delimited list (cleaned of all unwanted crap and common words) cfquery name=features SELECT id_feature, feature_headline, feature_date,

Re: Little Help with a Site Search Query

2010-05-22 Thread Les Mizzell
Hmmm - this will return NO results, though I know the terms I'm looking for exists: WHERE CAST(feature_text as VARCHAR) like cfqueryparam value=%#form.searchTERM#% cfsqltype=CF_SQL_VARCHAR / cfquery name=features SELECT id_feature, feature_headline, feature_date,

Re: Little Help with a Site Search Query

2010-05-22 Thread Les Mizzell
This ended up doing it: XOXO is always the last list item... cfquery name=features datasource=#req.data# username=#req.user# password=#req.pass# SELECT id_feature, feature_headline, feature_date, year(feature_date) as theYEAR, feature_text

CFGRID - Empty Response help

2010-05-21 Thread Emily McGill
Please, please help. I apologize if I have missed a solution out there somewhere, I have hunted and hunted, but everything seems to be either a problem with the application.cfc or something more advanced than I am using. This is the first time I ever posted a question anywhere in 13 years of IT work, so

Re: Help With CF8 Regular Expressions

2010-05-06 Thread denstar
On Wed, May 5, 2010 at 11:38 PM, Charlie Griefer wrote: On Wed, May 5, 2010 at 9:34 PM, denstar wrote: On Mon, May 3, 2010 at 11:46 PM, James Holmes wrote: I hope you have your flameproof suit handy :-P Ah, the cleansing fire of a good library battle.  :) It's hot in here.  Normally

Re: Help With CF8 Regular Expressions

2010-05-06 Thread John Morgan
It's all good, I've got a towel to sit on! :Den Well I guess that makes you a hoopy frood then! ~| Order the Adobe Coldfusion Anthology now!

RE: Help With CF8 Regular Expressions

2010-05-06 Thread Bobby Hartsfield
You're a towel!! -Original Message- From: denstar [mailto:valliants...@gmail.com] Sent: Thursday, May 06, 2010 2:11 AM To: cf-talk Subject: Re: Help With CF8 Regular Expressions On Wed, May 5, 2010 at 11:38 PM, Charlie Griefer wrote: On Wed, May 5, 2010 at 9:34 PM, denstar wrote

Re: Help With CF8 Regular Expressions

2010-05-06 Thread denstar
living and your belief will help create the fact. William James ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion Archive: http

Re: Help With CF8 Regular Expressions

2010-05-06 Thread denstar
On Thu, May 6, 2010 at 5:10 PM, Bobby Hartsfield wrote: You're a towel!! Better than a bowl of petunias or being nekkid. Um... wanna go get high? :Den -- This life is worth living, we can say, since it is what we make it. William James

Re: Help With CF8 Regular Expressions

2010-05-05 Thread denstar
On Mon, May 3, 2010 at 11:46 PM, James Holmes wrote: I hope you have your flameproof suit handy :-P Ah, the cleansing fire of a good library battle. :) It's hot in here. Normally I sleep in this thing, but if nobody's interested, the suit is going on the hook. :Den -- The history of

Re: Help With CF8 Regular Expressions

2010-05-05 Thread Charlie Griefer
On Wed, May 5, 2010 at 9:34 PM, denstar valliants...@gmail.com wrote: On Mon, May 3, 2010 at 11:46 PM, James Holmes wrote: I hope you have your flameproof suit handy :-P Ah, the cleansing fire of a good library battle. :) It's hot in here. Normally I sleep in this thing, but if

Help With CF8 Regular Expressions

2010-05-03 Thread Robert Nurse
Hi All, I'm trying to come up with a regular expression for CF8 that finds links in text and inserts a call to a pop up window in the on click event. I came up with the following that works in Javascript: myStr.replace(/\s*a\s+([hH][rR][eE][fF])\s*=/g, 'a onclick=popwin(this.href); return

re: Help With CF8 Regular Expressions

2010-05-03 Thread Jason Fisher
how about simplifying? replaceNoCase(myStr, 'a ', 'a onclick=popwin(this.ref); return false; ', 'all'); [note the training space in the test and the replacement] ~| Want to reach the ColdFusion community with something they

Re: Help With CF8 Regular Expressions

2010-05-03 Thread Robert Nurse
how about simplifying? replaceNoCase(myStr, 'a ', 'a onclick=popwin(this.ref); return false; ', 'all'); [note the training space in the test and the replacement] ~| Want to reach the ColdFusion community with something they

Re: Help With CF8 Regular Expressions

2010-05-03 Thread Robert Nurse
how about simplifying? replaceNoCase(myStr, 'a ', 'a onclick=popwin(this.ref); return false; ', 'all'); [note the training space in the test and the replacement] This doesn't work for: a href=somelocation.cfm Some Place/a My original regex took care of all white space before the a, and

Re: Help With CF8 Regular Expressions

2010-05-03 Thread Jason Fisher
OK, that's some pretty sloppy HTML, but let's see. Same principal should work: myVar = reReplaceNoCase(myVar, '\s*a ', 'a onclick=popwin(this.ref); return false; ', 'all'); On 5/3/2010 1:13 PM, Robert Nurse wrote: how about simplifying? replaceNoCase(myStr, 'a ', 'a

Re: Help With CF8 Regular Expressions

2010-05-03 Thread denstar
Another option is using Javascript to bind the a element onclick events. It's super simple with both Dojo (the best javascript library on the face of the planet) and something a little more pedestrian, like jQuery. :D Generally the JS route doesn't require you to change as much stuff (and you

Re: Help With CF8 Regular Expressions

2010-05-03 Thread James Holmes
I hope you have your flameproof suit handy :-P mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ On 4 May 2010 08:19, denstar valliants...@gmail.com wrote: It's super simple with both Dojo (the best javascript library on the face of the planet) and something

jquery $.ajax - need help with json syntax

2010-04-29 Thread Tony Bentley
I need to pass 4 arguments and for this purpose, lets use a,b,c,d var data = {argumentCollection:{?}}; $.ajax({ url: cfc/mycfc.cfc?method=dbupdate, dataType: 'json', data: data, type: 'post', success:

RE: jquery $.ajax - need help with json syntax

2010-04-29 Thread Andy Matthews
-talk Subject: jquery $.ajax - need help with json syntax I need to pass 4 arguments and for this purpose, lets use a,b,c,d var data = {argumentCollection:{?}}; $.ajax({ url: cfc/mycfc.cfc?method=dbupdate, dataType: 'json', data: data

Re: jquery $.ajax - need help with json syntax

2010-04-29 Thread Scott Stewart
Tony, I think what your looking for is serialize. data:$(data).serialize(), On Thu, Apr 29, 2010 at 12:15 PM, Tony Bentley cascadefreehee...@gmail.com wrote: I need to pass 4 arguments and for this purpose, lets use a,b,c,d var data = {argumentCollection:{?}};        $.ajax({      

Re: jquery $.ajax - need help with json syntax

2010-04-29 Thread Tony Bentley
If I use serialize I get nothing passed as a post argument. I am requiring all args and I get the error as normal, ...required but not passed in. var dat = { 'OBJ': obj, 'VAL': val, 'ATTR': attr,

Re: jquery $.ajax - need help with json syntax

2010-04-29 Thread Tony Bentley
So then how would I reference an object with members? a.member, a.friend, etc. I tried a:a and 'a':a but neither works. I find that it's easier, and more self-documenting, to enumerate the variables in data directly: $.ajax({ url: cfc/mycfc.cfc?method=dbupdate,

Re: jquery $.ajax - need help with json syntax

2010-04-29 Thread Scott Stewart
one more shot, after a quick cursory look http://api.jquery.com/jQuery.post/ Check the bottom of the page, I *think* your answer is there.. gotta get back to the grind.. On Thu, Apr 29, 2010 at 12:54 PM, Tony Bentley cascadefreehee...@gmail.com wrote: So then how would I reference an object

Re: jquery $.ajax - need help with json syntax

2010-04-29 Thread Joel Watson
If dat is already an object literal (as below), why do you need to serialize it? Doesn't the the ajax() data take care of that for you if passing an object? If I use serialize I get nothing passed as a post argument. I am requiring all args and I get the error as normal, ...required but

Re: jquery $.ajax - need help with json syntax

2010-04-29 Thread Sean Coyne
So then how would I reference an object with members? a.member, a.friend, etc. I tried a:a and 'a':a but neither works. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of

Re: jquery $.ajax - need help with json syntax

2010-04-29 Thread Sean Coyne
So then how would I reference an object with members? a.member, a.friend, etc. I tried a:a and 'a':a but neither works. data: { a: { member: value, friend: value }, b: value, c: 2, d: true } ~| Want to reach the ColdFusion

RE: jquery $.ajax - need help with json syntax

2010-04-29 Thread Josh Nathanson
$.ajax - need help with json syntax If I use serialize I get nothing passed as a post argument. I am requiring all args and I get the error as normal, ...required but not passed in. var dat = { 'OBJ': obj, 'VAL': val

Re: jquery $.ajax - need help with json syntax

2010-04-29 Thread Tony Bentley
Okay I figured it out: var data = { 'a': {a:a.cat,b:a.dog,c:a.etc}, 'b': b, 'c': c, 'd': d }; Thanks everyone for the help. It helped me out quite a bit

Re: jquery $.ajax - need help with json syntax

2010-04-29 Thread Scott Stewart
for the help. It helped me out quite a bit. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm

RE: jquery $.ajax - need help with json syntax

2010-04-29 Thread Rick Faircloth
Ok...you lost me. Now, what exactly does the 'a': {a:a.cat,b:a.dog,c} do? An array for a ??? Rick -Original Message- From: Tony Bentley [mailto:cascadefreehee...@gmail.com] Sent: Thursday, April 29, 2010 1:27 PM To: cf-talk Subject: Re: jquery $.ajax - need help with json syntax

RE: jquery $.ajax - need help with json syntax

2010-04-29 Thread Andy Matthews
, April 29, 2010 2:43 PM To: cf-talk Subject: RE: jquery $.ajax - need help with json syntax Ok...you lost me. Now, what exactly does the 'a': {a:a.cat,b:a.dog,c} do? An array for a ??? Rick -Original Message- From: Tony Bentley [mailto:cascadefreehee...@gmail.com] Sent: Thursday, April 29

Re: jquery $.ajax - need help with json syntax

2010-04-29 Thread Matt Quackenbush
On Thu, Apr 29, 2010 at 2:43 PM, Rick Faircloth wrote: Now, what exactly does the 'a': {a:a.cat,b:a.dog,c} do? An array for a ??? No, that would be the equivalent to a ColdFusion struct. cfscript a = { a = a.cat, b = a.dog, c = }; /cfscript

Re: jquery $.ajax - need help with json syntax

2010-04-29 Thread Tony Bentley
Or better put, a json structure inside of a json structure :-) arguments.a = DeserializeJSON(arguments.a); This is then referenced as a ColdFusion structure with members ~| Want to reach the ColdFusion community with

RE: jquery $.ajax - need help with json syntax

2010-04-29 Thread Rick Faircloth
yeah, true...thanks, Matt! -Original Message- From: Matt Quackenbush [mailto:quackfu...@gmail.com] Sent: Thursday, April 29, 2010 4:32 PM To: cf-talk Subject: Re: jquery $.ajax - need help with json syntax On Thu, Apr 29, 2010 at 2:43 PM, Rick Faircloth wrote: Now, what exactly

cfschedule help

2010-03-26 Thread daniel kessler
#cfcatch.Message# br (#cfcatch.type#) /cfoutput cfabort /cfcatch /cftry I've tried the daily_notification.cfm page and it sends an email if I just run that, but I can't get it to run as a scheduled task. help?! thanks

Re: cfschedule help

2010-03-26 Thread Mike Chabot
the daily_notification.cfm page and it sends an email if I just run that, but I can't get it to run as a scheduled task. help?! thanks. daniel ~| Want to reach the ColdFusion community with something they want? Let them

Re: cfschedule help

2010-03-26 Thread Casey Dougall
On Fri, Mar 26, 2010 at 11:53 AM, daniel kessler dani...@umd.edu wrote: I'm trying to get cfschedule to send out an email. I've checked out a few tutorials and I don't see the problem I'm having. I have a page to set the cfschedule and it contains: cfschedule action=update

Re: cfschedule help

2010-03-26 Thread daniel kessler
Are you aware that you can schedule tasks using a nice GUI from inside of ColdFusion Administrator? It's a centralized server so I don't have access to the Administrator. The problem might be related to setting the start time to now(), since the CF scheduler is checked for new jobs to process

Re: cfschedule help

2010-03-26 Thread daniel kessler
Try 61 seconds... You can't set a schedule to run every 60 seconds. good to know, thanks. I set it to 120 with no effect. See my reply above, please, for the full code. ~| Want to reach the ColdFusion community with

Re: cfschedule help

2010-03-26 Thread daniel kessler
Maybe the problem is the way that I'm designating start-date and start time. This code: cfset start_date = createDate(year(now()),month(now()),day(now())) cfset start_time = createTime(hour(now()),minute(now())+10,second(now())) produces: {ts '2010-03-26 00:00:00'} {ts '1899-12-30 14:28:29'}

Re: cfschedule help

2010-03-26 Thread Mike Chabot
If there was an error being thrown by your scheduled task, would you have any way of finding out? Do you get E-mailed with the error details? Not having access to the log files makes troubleshooting scheduled tasks more challenging. Often the error jumps right out at you by viewing the error log.

Re: Coldfusion 8 Webservice Help!

2010-03-26 Thread Ken Willis
with no luck. i have installed soxml and msxml6 and have not been able to get it to work. if i could get my hands on a good example i could probably figure it out (maybe) :) any help would be appreciated. ~| Want to reach

Re: Coldfusion 8 Webservice Help!

2010-03-26 Thread Dave Watts
mainly cuz i did not know what i was doing and i read some old cf6 advice.  I was able to get it to work fine with creating cfc and invoking from another page.   What is not working is if i use cfhttp with httpparam type=xml.  it returns a must end a meta tag error.  when i dump the raw

Re: Coldfusion 8 Webservice Help!

2010-03-26 Thread Ken Willis
yeah, i am seeing that. I am creating my first consumable webservice for my clients. i use webservices with several of my vendors and i use cfhttp, so i was trying to get it to work that way to make sure that my clients can use my webservice. Having a bit of trouble with the cfhttp, but the

Re: Coldfusion 8 Webservice Help!

2010-03-26 Thread Dave Watts
yeah, i am seeing that.  I am creating my first consumable webservice for my clients.  i use webservices with several of my vendors and i use cfhttp, so i was trying to get it to work that way to make sure that my clients can use my webservice.  Having a bit of trouble with the cfhttp,

Re: Coldfusion 8 Webservice Help!

2010-03-26 Thread Ken Willis
thanks, now i can get to the real meat of it. hopefully some day i can return the favor. thanks, again ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists

Re: Coldfusion 8 Webservice Help!

2010-03-22 Thread Mike Chabot
with specific examples with no luck.  i have installed soxml and msxml6 and have not been able to get it to work.  if i could get my hands on a good example i could probably figure it out (maybe) :)  any help would be appreciated

Coldfusion 8 Webservice Help!

2010-03-19 Thread Ken Willis
. if i could get my hands on a good example i could probably figure it out (maybe) :) any help would be appreciated. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing

Re: Coldfusion 8 Webservice Help!

2010-03-19 Thread James Holmes
on a good example i could probably figure it out (maybe) :) any help would be appreciated. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http

Help with apache web server v2.2.14

2010-03-07 Thread Mike Kear
I'm reinstalling my Apache web server, and every time i install Apache, i get to the part where it asks me for the server domain name and dont know what to put. I stumble around until i finally find something that works and i suppose that's all that's really needed, but i wondered what the rest

Re: Help with apache web server v2.2.14

2010-03-07 Thread James Holmes
I just enter localhost as the domain name. mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ On 7 March 2010 18:46, Mike Kear afpwebwo...@gmail.com wrote: I'm reinstalling my Apache web server, and every time i install Apache, i get to the part where it asks

Re: Help with apache web server v2.2.14

2010-03-07 Thread lists
Mike. I don't think it actually matter what you put for local dev. On Mar 7, 2010, at 4:46 AM, Mike Kear afpwebwo...@gmail.com wrote: ~| Want to reach the ColdFusion community with something they want? Let them know on the

Re: Help with apache web server v2.2.14

2010-03-07 Thread Dave Watts
I'm reinstalling my Apache web server, and every time i install Apache, i get to the part where it asks me for the server domain name and dont know what to put.  I stumble around until i finally find something that works  and i suppose that's all that's really needed, but i wondered what the

Re: Help with apache web server v2.2.14

2010-03-07 Thread Mike Kear
it the right way. Often we do things that work, but arent really the proper way to do things. In this case, it looks like i was doing it right anyway, even without a lot of background knowledge as to the whys and wherefores.. Thanks for your help. Cheers Mike Kear Windsor, NSW, Australia Adobe

Updater Problem - Please help

2010-02-22 Thread E Cohen
Hello, I updated ColdFusion 8.0 enterprise to 8.01 with the updater on the adobe website. Now, I get the following error for all of my coldfusion requests -- any ideas appreciated: 500 jrun servlet error ROOT CAUSE: java.lang.NoClassDefFoundError: coldfusion/runtime/QueryTableWrapper

Re: Updater Problem - Please help

2010-02-22 Thread Dave Watts
I updated ColdFusion 8.0 enterprise to 8.01 with the updater on the adobe website.  Now, I get the following error for all of my coldfusion requests -- any ideas appreciated: 500 jrun servlet error ROOT CAUSE: java.lang.NoClassDefFoundError: coldfusion/runtime/QueryTableWrapper Delete

RE: Updater Problem - Please help

2010-02-22 Thread Mark A. Kruger
[mailto:cft...@longmeadcrossing.com] Sent: Monday, February 22, 2010 5:11 PM To: cf-talk Subject: Updater Problem - Please help Hello, I updated ColdFusion 8.0 enterprise to 8.01 with the updater on the adobe website. Now, I get the following error for all of my coldfusion requests -- any ideas

RE: Updater Problem - Please help

2010-02-22 Thread Mark A. Kruger
-Original Message- From: E Cohen [mailto:cft...@longmeadcrossing.com] Sent: Monday, February 22, 2010 5:11 PM To: cf-talk Subject: Updater Problem - Please help Hello, I updated ColdFusion 8.0 enterprise to 8.01 with the updater on the adobe website. Now, I get the following error for all

RE: Updater Problem - Please help

2010-02-22 Thread Mark A. Kruger
Subject: Re: Updater Problem - Please help I updated ColdFusion 8.0 enterprise to 8.01 with the updater on the adobe website.  Now, I get the following error for all of my coldfusion requests -- any ideas appreciated: 500 jrun servlet error ROOT CAUSE: java.lang.NoClassDefFoundError

RE: PCI Compliance Help

2010-02-16 Thread Justin Scott
We just had a PCI Compliance scan done through SecurityMetrics and have one issue: Get in touch with your account rep and ask them to disable that specific test. It is mitigated by the fact that ColdFusion session IDs (which are sequential if you're using standard CF sessions) are only valid

RE: PCI Compliance Help

2010-02-16 Thread Justin Scott
The fact of the matter is how can the scanning company know what cookie values you are using to track sessions unless they can see your code. They can't unless they can successfully demonstrate a session highjacking with your server. That means they are guessing. That whole bit kind of

PCI Compliance Help

2010-02-15 Thread Deanna Schwint
server. If anyone has any advice or experience with this same situation, your help is greatly appreciated. Thanks in advance! Deanna Schwint ~| Want to reach the ColdFusion community with something they want? Let them know

<    1   2   3   4   5   6   7   8   9   10   >