Re: query data in cferror dump

2006-02-28 Thread Duncan
I am already doing that but it doesnt give me the stuff about the query. On 2/28/06, Michael Traher [EMAIL PROTECTED] wrote: try cfdump var=#cfcatch# On 2/28/06, Duncan [EMAIL PROTECTED] wrote: In the standard grey CF error dump on screen it contains a dump of the query that occurred

cfscript or cfinvoke

2006-02-28 Thread Mark Flewellen
What is the best method or easiest method for calling component methods. At present i use the cfinvoke way of doing things, but i see a lot of people use cfscript instead to do it, is there some reason for this? less code involved maybe? Mark

Re: OT:video files

2006-02-28 Thread Robert Everland III
The video was a couple of minutes. The video was 720x480. You would guess wrong that Divx could do the same compression. I have been doing a lot of video compression to get videos from my DVD's to my phone and have tried, Xvid, divx, and mp4 and none of them have ever gotten anywhere near the

Re: Query2xml/rss exist?

2006-02-28 Thread Raymond Camden
I've got a simple CFC for it: http://ray.camdenfamily.com/index.cfm/2005/5/10/RSScfc-Update and I believe Roger Bennefield(sp) has a much better one, although I don't have his URL handy. He _really_ knows his RSS. On 2/27/06, Eric J. Hoffman [EMAIL PROTECTED] wrote: Is there any sort of

Re: cfscript or cfinvoke

2006-02-28 Thread Robert Everland III
I use cfscript because it's much more similar in syntax and look to other languages, javascript, java, c, c# . This way I don't go crazy when I switch between languages. Back in CF 5 days it used to be faster to do it this way, but not now. Bob

RE: Renaming dynamic form fields

2006-02-28 Thread Bobby Hartsfield
Since they are named dynamically... use the same loop that you used to create them to also create cfparams for them. ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: j s [mailto:[EMAIL PROTECTED] Sent: Monday, February 27, 2006 4:28 PM

RE: Digital Signing a SOAP Request

2006-02-28 Thread RADEMAKERS Tanguy
-Original Message- Subject: Digital Signing a SOAP Request From: John Wilker [EMAIL PROTECTED] Date: Mon, 27 Feb 2006 15:48:07 -0700 snip I've printed out just about every PDF Paypal has on the topic. All I could figure out was that unless you have your own server you're SOL If you have

RE: Calling a CFC method from another, totally different CFC?

2006-02-28 Thread Dave Watts
The way I try to answer these sorts of questions for myself is to ask how things would work in real life. ok, I think this is where I'm gettin' screwed up a bit. I'm thinking how would it work in real life? You'd have your cart full of items, roll it up to the checkout counter (an

Re: Query2xml/rss exist?

2006-02-28 Thread Roger Benningfield
and I believe Roger Bennefield(sp) has a much better one, although I don't have his URL handy. He _really_ knows his RSS. Ray: Mine doesn't help turning a query into RSS... it just turns RSS/Atom into a struct. All of my RSS *creation* is done with templates, and being the lazy type, if I don't

graphing service not starting on solaris

2006-02-28 Thread jw
i am deploying a new j2ee instance of cfmx 7.0.1 on solaris. when i start the server i get the dreaded graphing service not starting error. i have tried the suggest solutions on the technote found here. http://www.macromedia.com/go/237f9958 or here http://www.macromedia.com/go/ceb0e519

Re: graphing service not starting on solaris

2006-02-28 Thread James Holmes
Is the machine headless? If so, use a virtual X11 server to create a graphics environment and leave the usual graphics options in the jvm config. On 2/28/06, jw [EMAIL PROTECTED] wrote: i am deploying a new j2ee instance of cfmx 7.0.1 on solaris. when i start the server i get the dreaded

Re: graphing service not starting on solaris

2006-02-28 Thread Vladmir Alkazirinski III
i've noticed a lot of installs on linux that mention libraries needing to be updated in my googlin... On 2/28/06, jw [EMAIL PROTECTED] wrote: i am deploying a new j2ee instance of cfmx 7.0.1 on solaris. when i start the server i get the dreaded graphing service not starting error. i have

Re: graphing service not starting on solaris

2006-02-28 Thread jw
yes this machine is headless and it has X11 installed. I can lauch apps over the network to my desktop. why would i install a virtual X11 server if it has one installed. jw On 28/02/06, James Holmes [EMAIL PROTECTED] wrote: Is the machine headless? If so, use a virtual X11 server to create a

Re: Renaming dynamic form fields

2006-02-28 Thread j s
This works great with checkboxes but I can't get it to work with radio buttons and checkboxes. This is the way I usually handle this kind of task. Look ma, no evaluate(). FORM form input type=checkbox name=cb_1... input type=checkbox name=cb_2... input type=checkbox name=cb_77... input

Re: Debit vs. Credit Card

2006-02-28 Thread Jim McAtee
- Original Message - From: Michael Traher [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Tuesday, February 28, 2006 3:07 AM Subject: Re: Debit vs. Credit Card The first 4 digits of the card determines the type of card it is and who issued it. Thanks, but by 'type' do

RE: Debit vs. Credit Card

2006-02-28 Thread Russ
All it determines is what type of card it is, 5 is mastercard 4 is visa 3 is amex 6 is discover Possibly a few others There is no way to tell whether it's a debit mastercard or a regular mastercard (ASFAIK). The next 3 digits probably tell you what bank issued the card, but that's probably

RecordCount of query group

2006-02-28 Thread j s
Is it possible to get the RecordCount of cf query group? cfoutput query=getReord group=Name #Name#, #RecordCount# cfoutput #SubName#, #RecordCount# /cfoutput /cfoutput what is returned it the total RecordCount of the query and not the count of SubNames in each group. Total RecordCount: 4

RE: RecordCount of query group

2006-02-28 Thread Ian Skinner
Is it possible to get the RecordCount of cf query group? cfoutput query=getReord group=Name #Name#, #RecordCount# cfoutput #SubName#, #RecordCount# /cfoutput /cfoutput Not automatically the way you are doing it. You can either do something in the query with group functions, or you can

RE: RecordCount of query group

2006-02-28 Thread Baz
You could create a counter: cfset OuterRecordcount=0 / cfoutput query=getReord group=Name cfset OuterRecordcount=OuterRecordcount+1 / #Name#, #RecordCount# cfoutput #SubName#, #RecordCount# /cfoutput /cfoutput Baz -Original Message- From: j s [mailto:[EMAIL PROTECTED] Sent:

Re: Digital Signing a SOAP Request

2006-02-28 Thread John Wilker
Ah cool. Jim sent me an early beta that I never got a chance to try out, Project died on the vine. I didn't mention it cuzz I was asked not to yet, wasn't aware it was out. Cool. It sounds like a good solution for hosted servers that can't use the API provided. On 2/28/06, RADEMAKERS Tanguy

CF Host recommendations

2006-02-28 Thread Steve Kahn
We need cf server 5, crytaltech does not offer it. Has anyone dealt with hosttone.com or have a cf 5 server recommendation. Thanks everyone Steve ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:233647 Archives:

RE: CF Host recommendations

2006-02-28 Thread Ian Skinner
My understanding is the hitsites is still serving up CF5. -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA - | 1 | | - Binary Soduko | | | - C code. C code run. Run code run. Please! - Cynthia Dunning Confidentiality

Re: CF Host recommendations

2006-02-28 Thread Michael Dinowitz
Shared or full box? We need cf server 5, crytaltech does not offer it. Has anyone dealt with hosttone.com or have a cf 5 server recommendation. Thanks everyone Steve ~| Message:

Re: cfscript or cfinvoke

2006-02-28 Thread Aaron Rouse
I use either a CFSCRIPT or CFSET, it just depends on where I am using it. Most of the time I do the CFSCRIPT and with bother I use the CreateObject() function. I do it more out of habbit, I think the CF5 days(which we still live on some servers here) got me stuck on using CFSCRIPT a lot. Plus I

Simple Calendar

2006-02-28 Thread Michael Clayton
I'm in need of a simple CF calendar system. It doesn't need appointments, schedules, anything like that. All it will be used for is something similar to Noah Grey's http://www.greyexpectations.com/archives.php?g=oct05 I just need something that, for each day, I can bounce it off my photo

RE: CF Host recommendations

2006-02-28 Thread Steve Kahn
Were looking for shared -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 28, 2006 12:22 PM To: CF-Talk Subject: Re: CF Host recommendations Shared or full box? We need cf server 5, crytaltech does not offer it. Has anyone dealt with

cfmodule and CFCs?

2006-02-28 Thread Chris Mueller
I'm trying to use cfmodule to do some HTML layout from within a CFC. Here's the code inside the CFC: --- cffunction name cfmodule template=/templates/template_main.cfm cfoutput Some generated output from the function. /cfoutput /cfmodule /cffunction This is some

RE: cfmodule and CFCs?

2006-02-28 Thread Dave Watts
/cfelse That should not have a closing slash. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicago, Baltimore, Northern Virginia, or on-site at your

Max number of calculated fields?

2006-02-28 Thread Tim Do
Is there a maximum of 25 calculated fields in report builder? I'm getting this error when I go over 25: The report template E:\Inetpub\wwwroot\InSite\reports\occupancy\WeeklyVPDetail_New.cfr appears to be malformed or contain errors. The error that was encountered was: Context validation error

Re: cfmodule and CFCs?

2006-02-28 Thread Chris Mueller
Wow, do I feel stupid. I thought I went over this code with a fine-tooth comb, but I guess not. Thanks for the help! Chris /cfelse That should not have a closing slash. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber

RE: Renaming dynamic form fields

2006-02-28 Thread Bobby Hartsfield
There's not really much difference between the two types. They should, by all rights, be done the same way ('cept one will have type=radio on it) ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: j s [mailto:[EMAIL PROTECTED] Sent:

Re: CF Host recommendations

2006-02-28 Thread Robert Everland III
Why would you need CF 5? What features are you using that you can't use on CF 6 or CF 7? Bob ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:233658 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4

RE: Simple Calendar

2006-02-28 Thread Bobby Hartsfield
http://acoderslife.com/tutorials/index.cfm?act=tcid=1tid=5 That should pretty easy to mold to your needs. The hard part is done. ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Michael Clayton [mailto:[EMAIL PROTECTED] Sent: Tuesday,

Re: CF trends

2006-02-28 Thread Jim Wright
another is skillmarket... http://mshiltonj.com/sm/categories/languages_a-o/ I sent the author a note a day or two ago pointing out that he was only searching on coldfusion as one word...he said he would make the change, so you should see a big jump in the next day or two...he searches dice.com for

RE: CF trends

2006-02-28 Thread Ian Skinner
When Ben Forta presented here last month, he talked shortly about that one website that is often used to bash CF, I just don't remember it. But the interesting note was that CF had jumped so much it had 7 up arrows, what ever that meant. -- Ian Skinner Web Programmer

Re: cfscript or cfinvoke

2006-02-28 Thread Nathan Strutz
Does anyone else find it somewhat ridiculous the number of ways you can call a CFC? cfscript obj = createobject(...);/cfscript cfset obj = createobject(...) cfinvoke ... cfobject ... using any of the above methods, you can call it like a web service call it directly from the url,

RE: cfscript or cfinvoke

2006-02-28 Thread Dave Watts
Does anyone else find it somewhat ridiculous the number of ways you can call a CFC? Not at all! cfscript obj = createobject(...);/cfscript cfset obj = createobject(...) cfinvoke ... cfobject ... using any of the above methods, you can call it like a web service call it directly from

RE: CF trends

2006-02-28 Thread Jim Davis
-Original Message- From: Jim Wright [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 28, 2006 1:37 PM To: CF-Talk Subject: Re: CF trends another is skillmarket... http://mshiltonj.com/sm/categories/languages_a-o/ I sent the author a note a day or two ago pointing out that he was

Re: cfscript or cfinvoke

2006-02-28 Thread Josh Nathanson
That's what is cool about CF, there are multiple ways to skin the cat. I like plain old cfinvoke as it seems the most intuitive to me. -- Josh - Original Message - From: Dave Watts [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Tuesday, February 28, 2006 11:19 AM

RE: Debit vs. Credit Card

2006-02-28 Thread Stacy Young
It's possible that debit cards are limited to a specific bin range but I don't know if that information would be publicly available. Or where to get that info for that matter...Your payment processor may be able to do some digging for you on that... Stace -Original Message- From: Russ

RE: Debit vs. Credit Card

2006-02-28 Thread Stacy Young
This may lead you in the right direction. Partial list of known BIN ranges http://en.wikipedia.org/wiki/Bank_Identification_Number -Stace -Original Message- From: Stacy Young Sent: Tuesday, February 28, 2006 2:37 PM To: CF-Talk Subject: RE: Debit vs. Credit Card It's possible that

OT JS onChange/onKeyUp Event Issue

2006-02-28 Thread Adrian Lynch
Can anyone shed some light on this? I have a text field, in this I only want the user to type numbers, so onkeyup runs a RegEx to remove a char if it's not a number. I also want to detect if the field has changed(I'm not bothered if it changes back to the original at the moment). So I have the

Re: OT JS onChange/onKeyUp Event Issue

2006-02-28 Thread Massimo Foti
I have a text field, in this I only want the user to type numbers, so onkeyup runs a RegEx to remove a char if it's not a number. You may want to take a lookat this: http://www.massimocorner.com/validator/samples/filters.htm It's part of a larger library:

RE: OT JS onChange/onKeyUp Event Issue

2006-02-28 Thread Adrian Lynch
Cheers Massimo. I will take a look. Just as an answer to my problem, it's probably down to changing the field with script which is causing the change not to be picked up. So to get around it, I only change the text if a char is not allowed. So from this: function keyUpped(obj) {

Why doesn't this regular expression work?

2006-02-28 Thread Johnny Le
I am trying to remove all HTML tags from the description. Why doesn't this work? It only replaces the last occurrence, just like when I specify one instead of all, but it replaces the last occurrence instead of the first occurrence. cfset attributes.description =

Re: Why doesn't this regular expression work?

2006-02-28 Thread Jerry Johnson
It is running what is called a greedy search. So the first .* grabs the very largest set it can grab, followed by the largest it can grab, followed by what is left. What you describe is exactly what is written. Since you don't really care about anything outside the , then just replace what is

Re: Why doesn't this regular expression work?

2006-02-28 Thread Michael Dinowitz
This will remove all HTML tags: [^]+ Basically, anything that starts with a open bracket and goes on till a closing bracket. The problem with your expression is that it matches EVERYTHING till it finds a tag. You can try to limit the everything match by using a limiter: (.*?).*?(.*?) Still not

MonthAsString

2006-02-28 Thread Wurst, Keith D.
hi everyone. what is the best way to go from using MonthAsString to display just the 3 letter abbreviation - rather than the full month name. thanks very much. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:233674

Re: MonthAsString

2006-02-28 Thread Ray Champagne
Left(MonthAsString(Now),3) Wurst, Keith D. wrote: hi everyone. what is the best way to go from using MonthAsString to display just the 3 letter abbreviation - rather than the full month name. thanks very much. ~| Message:

Re: Simple Calendar

2006-02-28 Thread Larry Lyons
I'm in need of a simple CF calendar system. It doesn't need appointments, schedules, anything like that. All it will be used for is something similar to Noah Grey's http://www.greyexpectations.com/archives.php?g=oct05 I just need something that, for each day, I can bounce it off my photo

RE: MonthAsString

2006-02-28 Thread Russ
Or DateFormat(Now(),mmm) -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 28, 2006 3:48 PM To: CF-Talk Subject: Re: MonthAsString Left(MonthAsString(Now),3) Wurst, Keith D. wrote: hi everyone. what is the best way to go from using

RE: OT JS onChange/onKeyUp Event Issue

2006-02-28 Thread Bobby Hartsfield
Change 'onchange' to 'onblur' what appears to be happening is that the value of the field is changed with the regex then when it hits the change() function... it really hasn’t changed... since it was last changed by the regex. Make sense? ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield

RE: MonthAsString

2006-02-28 Thread Bobby Hartsfield
dateformat(datestring, mmm) ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Wurst, Keith D. [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 28, 2006 3:46 PM To: CF-Talk Subject: MonthAsString hi everyone. what is the best way to go

RE: Why doesn't this regular expression work?

2006-02-28 Thread Russ
You can also fix you original expression by using ? to modify the greedy match. cfset attributes.description = REreplace(attributes.description,'(.*?).*?(.*?)','\1\2','all')/ but Jerry's expression is probably better in your case. Russ -Original Message- From: Jerry Johnson

RE: Why doesn't this regular expression work?

2006-02-28 Thread Bobby Hartsfield
.*? should work (in MX+) ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Johnny Le [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 28, 2006 2:17 PM To: CF-Talk Subject: Why doesn't this regular expression work? I am trying to remove all

RE: OT JS onChange/onKeyUp Event Issue

2006-02-28 Thread Adrian Lynch
Cheers Bobby, I figured it was to do with changing via script. Just as a change to the solution I said I was going to use, the check should have been: obj.value.search(/[^0-9]/g, ) != -1 Adrian -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: 28 February 2006

Upgraded to MX7, SQL Server datasources no longer work

2006-02-28 Thread Brian Yager
I upgraded my personal laptop from CF 5 to MX 7 (Got sick of some of the CF5 errors I was getting). After doing this, My SQL server datasources no longer work. I tried the NOrthwin Example and got Connection Refused I tried some of my other databases with correct login info and same thing. I

Re: CF Host recommendations

2006-02-28 Thread Brian Yager
Try Advances.com I have a few sites with them. NO problems Brian Yager We need cf server 5, crytaltech does not offer it. Has anyone dealt with hosttone.com or have a cf 5 server recommendation. Thanks everyone Steve

Re: Upgraded to MX7, SQL Server datasources no longer work

2006-02-28 Thread Bryan Stevenson
Brian you've mentioned My SQL and Enterprise Manager (which is for MS SQL Server), so which DB are you having trouble with? ;-) Cheers Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail:

RE: OT JS onChange/onKeyUp Event Issue

2006-02-28 Thread Bobby Hartsfield
Heh yeah, I completely looked over that one ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 28, 2006 4:07 PM To: CF-Talk Subject: RE: OT JS onChange/onKeyUp Event Issue

Re: Upgraded to MX7, SQL Server datasources no longer work

2006-02-28 Thread Brian Yager
I am using SQL Server 2000. Thanks for catching that. Brian you've mentioned My SQL and Enterprise Manager (which is for MS SQL Server), so which DB are you having trouble with? ;-) Cheers Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone:

Calling methods in application.cfc

2006-02-28 Thread Zaphod Beeblebrox
I've seen plenty of snippets that say you can manually call methods in application.cfc, but never any examples. Does the application.cfc live in memory, or do you need to use cfinvoke/createobject with a path to the application.cfc file? -- aeteti yeah, do you seeyea, ooohohohn neh I don wanta

Re: CF trends

2006-02-28 Thread Claude Schneegans
But the interesting note was that CF had jumped so much it had 7 up arrows, what ever that meant. The price? -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL

Re: Upgraded to MX7, SQL Server datasources no longer work

2006-02-28 Thread Joe Rinehart
Hey Brian, I've encountered this before, and got things working after installing the latest SQL server update (should be available at http://www.microsoft.com/technet/prodtechnol/sql/2000/downloads/default.mspx) - if that doesn't help, could you post the entire error message (minus any private

Free Aftershock Mail Spool Tool version

2006-02-28 Thread Stan Winchester
The Aftershock Mail Spool Tool version 0.001 is available for free download at: http://www.aftershockweb.net/forums/messages.cfm/ThreadId/67 The mail spool tool allows you to view the ColdFusion/BlueDragon mail undeliverable directory. It also allows you to move an undelivered email to the spool

RE: CF Host recommendations

2006-02-28 Thread Jennifer Gavin-Wear
Hi Steve, I just signed up with Vortech a month or so ago. Dedicated server for 104 bucks a month, you could run what you like. Specs: P4 2.66, 1GB, 40GB. Been very reliable so far, and support good too. Jenny -Original Message- From: Steve Kahn [mailto:[EMAIL PROTECTED] Sent: 28

RE: CF Host recommendations

2006-02-28 Thread Snake
Single disk systems are generally cheap everywhere as you have no redundancy, if the disk fails, you have lost everything. russ -Original Message- From: Jennifer Gavin-Wear [mailto:[EMAIL PROTECTED] Sent: 28 February 2006 23:53 To: CF-Talk Subject: RE: CF Host recommendations Hi

RE: CF Host recommendations

2006-02-28 Thread Snake
Perhaps he doesn't have time to fix all the code that doesn't work on MX. We (cfmxhosting.co.uk) still run CF5 servers, and do occasionally get people come along with CF5 apps and they do not want to fix them to run on MX, they also feel more stable on CF5 as it crashes a lot less, which I still

Re: Datasource with PostgreSQL

2006-02-28 Thread Jordan Michaels
Terry Sasaki wrote: I've heard our DBA changed the database name from db1_2 to db1, db2_2 to db2, and db3_2 to db3 while this applicastion was running in the past, which seems to have had an impacct. When the DBA updated the databases, did someone update the datasources to point to the new

Re: Datasource with PostgreSQL

2006-02-28 Thread Terry Sasaki
Thanks Jordan, Yes, they seem to have been updated by someone :) When I was about to update them, they were already as supposed to be. Terry On 01/03/06, Jordan Michaels [EMAIL PROTECTED] wrote: Terry Sasaki wrote: I've heard our DBA changed the database name from db1_2 to db1, db2_2 to

Re: Upgraded to MX7, SQL Server datasources no longer work

2006-02-28 Thread Brian Yager
Unfortunately, that did work. Here is the error I get back Connection verification failed for data source: calendar java.sql.SQLException: [Macromedia][SQLServer JDBC Driver]Error establishing socket. Connection refused: connect The root cause was that: java.sql.SQLException:

CFSELECT validation

2006-02-28 Thread Les Mizzell
H cfselect name=eventID required=yes message=You Must Select an Event multiple=no option value=Pick something/option cfoutput query=myQUERY option value=#myQUERY.id##myQUERY.eventNAME#/option /cfoutput /cfselect Submits whether I select

Re: CFSELECT validation

2006-02-28 Thread Les Mizzell
Les Mizzell wrote: H cfselect name=eventID required=yes message=You Must Select an Event multiple=no Make that: cfselect name=eventID required=yes validateat=onSubmit multiple=no message=You Must Select an Event Don't work either though...

Re: Datasource with PostgreSQL

2006-02-28 Thread Jordan Michaels
Hi Terry, Well, I guess my point is that somewhere along the line the datasources are still looking for databases with the old names. There may be some sort of caching going on there (I'm not entirely familiar with the specifics of how datasources work) but *something* is still asking for the old

Re: Datasource with PostgreSQL

2006-02-28 Thread Terry Sasaki
Thanks Jordan, Well it has just been sorted out. The file holding the datasouce detais has the old datasouce entries for some reasons. The file is (on RedHat Linux): /opt/jrun4/servers/{serverInstanceName}/cfusion.ear/cfusion.war/WEB-INF/cfusion/lib/neo-query.xml The issue is fixed by manually

Re: CF Host recommendations

2006-02-28 Thread powell
Try www.IXwebhosting.com - they have good prices, good service - in fact the only thing I've found lacking was that they don't plan to move from CF5 anytime soon! -reed We need cf server 5, crytaltech does not offer it. Has anyone dealt with hosttone.com or have a cf 5 server recommendation.

Re: RecordCount of query group

2006-02-28 Thread Rick Root
Baz wrote: You could create a counter: That's how I generally do it but if you need the count at the beginning of the group, or during the output of the group, then your alternative would be to pass the query to a UDF that you write whose sole purpose is to determine the count of the current

Re: RecordCount of query group

2006-02-28 Thread Rick Root
Alternatively, you could probably get the group count into the query result set itself by using SELECT name, subname, count(subname) as subnameCount, cola, colb, colc from tableName order by name, subname group by name, subname, cola, colb, colc Rick j s wrote: Is it possible to get the

Re: Simple Calendar

2006-02-28 Thread Rick Root
check out ColdCalendar http://cfopen.org/projects/coldcalendar/ Demo: http://coldcalendar.coldgen.com/ ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:233707 Archives:

Re: Simple Calendar

2006-02-28 Thread Tony
yeah, i totally need to wrap that up, its tied to a db and has 1. blackout dates 2. scheduled events on a cycle 3. special events 4. multiple events and cycles per day 5. temporary cyclic events all sql server managed, and generated on the fly. the database doesnt know what tomorrow is, the

Re: Simple Calendar

2006-02-28 Thread Michael Clayton
Wonderful help guys, thanks a bundle! :) -- Michael Clayton www.twilighted.com ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:233709 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription:

Re: CFSELECT validation

2006-02-28 Thread Will Tomlinson
I've always had trouble with these myself. Using x-forms now, and noticed the validation works fine with cfselect. Will ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:233710 Archives:

Re: CFSELECT validation

2006-02-28 Thread James Holmes
Did you put the required space in the value of the first option? On 3/1/06, Les Mizzell [EMAIL PROTECTED] wrote: H cfselect name=eventID required=yes message=You Must Select an Event multiple=no option value=Pick something/option cfoutput query=myQUERY

cfchart problem

2006-02-28 Thread Cedric Villat
I am seeing some problems with cfchart on CFMX7. I have a bar chart that shows up fine in CFMX6.1, but doesn't work in CFMX7. Here is my code: cfchart format=flash scalefrom=0 rotated=Yes

Change location of wwwroot?

2006-02-28 Thread Jake .
Is there a way to change the location of your wwwroot file? I'd like to move mine to a different drive than the actual CFMX install itself. Thanks! Jake ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:233713

Re: cfchart problem

2006-02-28 Thread Cedric Villat
So it looks like the problem was because I had the rotated=true attribute in the chart, and this was removed in CFMX7. Since the height was my previous width, the chart didn't show up. Does anyone know how I can get my bar chart to rotate 90% in CFMX7? I'm looking for a solution that works in

re: CF Host recommendations

2006-02-28 Thread dave
I just redid a customers site who was currently on a cf5 server at ct and i believe they closed the account today so they should have room. ~Dave the disruptor~ From: Steve Kahn [EMAIL PROTECTED] Sent: Tuesday, February 28, 2006 12:20 PM To: CF-Talk

Re: imagecfc ? (rick roots)

2006-02-28 Thread dave
what you can't paste the error message in here? ;) Try taking out the parameter names... all of them... ie, remove newHeight= newWidth= etc... Rick That was 2 sites a go Rick, sorry but next time I need it I will try it again :) ~Dave the disruptor~

Jrun 4 Updater

2006-02-28 Thread vishnu prasad
Hi We have Jrun4 with updater as 2 , we plan to upgrate to updater 5. We have multiple instance for Jrun4. what are the stpes we have to follow to install Jrun updater in multiple instance enviornments.. Shall we just install updater or is there any specifc stpes we have to follow to install

RE: Change location of wwwroot?

2006-02-28 Thread Andrew Stevens
Are you using a web server, IIS perhaps? Or only the internal CF web server? -Original Message- From: Jake . [mailto:[EMAIL PROTECTED] Sent: Wednesday, 1 March 2006 3:28 PM To: CF-Talk Subject: Change location of wwwroot? Is there a way to change the location of your wwwroot file? I'd

RE: Web Developer Position - Beginner

2006-02-28 Thread Bobby Hartsfield
makes me wonder what KIND of plant it is. ;-) ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Cameron Childress [mailto:[EMAIL PROTECTED] Sent: Monday, February 27, 2006 3:41 PM To: CF-Jobs-Talk Subject: Re: Web Developer Position -

RE: Web Developer Position - Beginner

2006-02-28 Thread Bobby Hartsfield
You must not be from 'round cheer... ;-) ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: s. isaac dealey [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 28, 2006 9:54 AM To: CF-Jobs-Talk Subject: RE: Web Developer Position - Beginner