Re: LearnCF Launched

2007-09-01 Thread Dinner
On 8/31/07, Peter Donahue wrote: Good evening everyone, Let me also congratulate you on the launch of this site. You'll also be happy to know that it passed the accessibility muster as I was able to visit a number of pages using my screen reader without any trouble. If you don't mind my

Extending the CFGrid

2007-09-01 Thread Andrew Scott
Though everyone might enjoy this. http://www.andyscott.id.au/index.cfm/2007/9/1/How-to-add-functionality-to-the-CFGrid -- Senior Coldfusion Developer Aegeon Pty. Ltd. www.aegeon.com.au Phone: +613 8676 4223 Mobile: 0404 998 273

RE: binding a cfselect to a grid

2007-09-01 Thread Will Swain
Thanks Ray. As usual, you are the man! Will -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: 31 August 2007 22:44 To: CF-Talk Subject: Re: binding a cfselect to a grid Ok, got a demo done. It isn't too difficult.

Re: In depth Solaris Unix CF install questions

2007-09-01 Thread Maureen Barger
In my experience we have installed the product as root then gone back to chown and chgrp to reflect the holding id who will run ColdFusion. Typically the holding id and those with accounts on the system are in the same group. James Holmes brings up a good point about sudo as well. Different shell

Re: In depth Solaris Unix CF install questions

2007-09-01 Thread James Holmes
Yes, CF7 and CF8 are certified for Solaris 10. Zoning could be another way to solve some of the issues. The CF install asks which account CF will run as - we use nobody (the default). On 9/1/07, Maureen Barger [EMAIL PROTECTED] wrote: In my experience we have installed the product as root then

displaying jvm version from cfm

2007-09-01 Thread Maureen Barger
How do I display the java version of current environment in a cfm page? Thanks. ~| Check out the new features and enhancements in the latest product release - download the What's New PDF now

Re: displaying jvm version from cfm

2007-09-01 Thread Paul Hastings
Maureen Barger wrote: How do I display the java version of current environment in a cfm page? Thanks. cfscript sys=createObject(java,java.lang.System); writeoutput(java.vm.version:=#sys.properties['java.vm.version']#); /cfscript

Multiple Users Per Cookie.

2007-09-01 Thread robert . rawlins
Hello Guys and Girls, I generally haven’t had that much experience with setting custom cookies for my applications using the cfcookie tag so thought I’d come on and get a little advice about the best way to handle this concept. The idea is to have a ‘remember me’ type feature on the login for my

Re: Multiple Users Per Cookie.

2007-09-01 Thread Andrew Scott
No such thing as multiple cookies for a domain ro website. But yes a list could work, but it is limited. your best bet is a unique ID thta can then look up the DB and find all the usernames that user has. On 9/1/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello Guys and Girls, I

Re: MySQL Fulltext search - one more question!

2007-09-01 Thread Les Mizzell
Working Query (finally!) SELECT title, Author, Publishers, ListPrice, ISBN FROM booksDATA WHERE MATCH (Title, Author, Publishers) AGAINST (cfqueryparam cfsqltype=cf_sql_varchar value=#form.search#) If I enter rabbit

Re: Web Service File Permission Issue

2007-09-01 Thread Developer MediaDoc
Hi All, Rick, thank you for moving this over to CF-Talk... appreciate your efforts. To answer some questions. 1. Create file (I have remote desktopped in, as Administrator) in that directory, created a .txt file, it has the following permissions: - Administrator, Network Service, Domain User

Re: Web Service File Permission Issue

2007-09-01 Thread Developer MediaDoc
Hi All, Rick, thank you for moving this over to CF-Talk... appreciate your efforts. To answer some questions. 1. Create file (I have remote desktopped in, as Administrator) in that directory, created a .txt file, it has the following permissions: - Administrator, Network Service, Domain User

Re: MySQL Fulltext search - one more question!

2007-09-01 Thread Dinner
http://dev.mysql.com/doc/refman/5.0/en/fulltext-boolean.html =] On 9/1/07, Les Mizzell [EMAIL PROTECTED] wrote: Working Query (finally!) SELECT title, Author, Publishers, ListPrice, ISBN FROM booksDATA WHERE MATCH (Title, Author, Publishers)

RE: Multiple Users Per Cookie.

2007-09-01 Thread Robert Rawlins - Think Blue
Great advice Andrew, I think that a list of unique id's for the users makes good sense, I'm thinking maybe not their exact unique ID used as the key in the user table, perhaps I create a separate column which contains a UUID or something along those lines? Somehow feels safer that way. Thanks

Re: Web Service File Permission Issue

2007-09-01 Thread Dinner
It's a long shot, but could there be a Policy in effect that is changing the expected behavior? AD gives you some pretty fine-grained control... *shrug* =] What about adding them to the same group? Something like that? Seems hackish tho... A setting in IIS?, is the only other thing I can

Re: MySQL Fulltext search - one more question!

2007-09-01 Thread Les Mizzell
So, how do I be sure the results contain BOTH potter and rabbit, thusly eliminating Harry Potter? http://dev.mysql.com/doc/refman/5.0/en/fulltext-boolean.html =] I tried that already. =AGAINST (cfqueryparam cfsqltype=cf_sql_varchar value=#form.search#

MX7 application service wont start after windows updates

2007-09-01 Thread Jonathan Freegard
Hi, I've got a 2k3 server that was running fine with cf mx7 till I updated it (inc sp2) and all subsequent updates. Since then the app server service wont start The ColdFusion MX 7 Application Server service terminated with service-specific error 2 (0x2) Windows firewall is disabled. Does

Re: MySQL Fulltext search - one more question!

2007-09-01 Thread Dinner
On 9/1/07, Les Mizzell wrote: So, how do I be sure the results contain BOTH potter and rabbit, thusly eliminating Harry Potter? http://dev.mysql.com/doc/refman/5.0/en/fulltext-boolean.html =] I tried that already. With the pluses and everything? But, the results are sorted in order

Re: RETS Real Estate amp; Coldfusion

2007-09-01 Thread Jake Pilgrim
Did you ever figure this beast of a webservice out? ~| Download the latest ColdFusion 8 utilities including Report Builder, plug-ins for Eclipse and Dreamweaver updates.

Re: MySQL Fulltext search - one more question!

2007-09-01 Thread Les Mizzell
With the pluses and everything? The client wants a do everything one input search field to run this. Adding + or - to words in the search field is way more than most customers are going to bother with. But, since the results are returned by relevance, Harry Potter is way down in the list,

Re: RETS Real Estate amp;amp; Coldfusion

2007-09-01 Thread Jake Pilgrim
Hah, ok apparently you can't just reply to ancient threads... I'm trying to do a search with RETS. I am able to login and pull metadata, just unable to search. Anyone have ANY experience with this feed, coldfusion or otherwise?

ColdFusion and MySQL Web Hosts

2007-09-01 Thread Richard White
Hi, Just wondering if anyone knows of any good ColdFusion and MySQL web hosting companies? We are based in the UK but wouldn't mind hosts in the UK or USA. Thanks very much ~| Check out the new features and enhancements in

Re: MySQL Fulltext search - one more question!

2007-09-01 Thread Dinner
On 9/1/07, Les Mizzell wrote: The client wants a do everything one input search field to run this. Adding + or - to words in the search field is way more than most customers are going to bother with. Yeah, I hear it. A dumbed down version might be a simple radio, that says all words or any

Re: ColdFusion and MySQL Web Hosts

2007-09-01 Thread Jerry Johnson
I have had nothing but a good experience with crystaltech for the past 4 years. On 9/1/07, Richard White [EMAIL PROTECTED] wrote: Hi, Just wondering if anyone knows of any good ColdFusion and MySQL web hosting companies? We are based in the UK but wouldn't mind hosts in the UK or USA.

Re: Multiple Users Per Cookie.

2007-09-01 Thread Alan Rother
Robert, If multiple users access your website from the same computer, there are several possible scenarios: 1. They are all logging into the same computer as the same user, therefore windows will not know it's a different user, therefore their browser will contain the same set of cookies between

Instant Messaging

2007-09-01 Thread Rey Bango
Hi guys, Has anyone implemented an instant messaging solution? If so, I'd be interested in chatting about it. This would be for a dating site and IM is extremely important for it. I've already looked at Userplane but its too pricey. Looking forward to some feedback. Rey...

RE: MX7 application service wont start after windows updates

2007-09-01 Thread Dave Watts
I've got a 2k3 server that was running fine with cf mx7 till I updated it (inc sp2) and all subsequent updates. Since then the app server service wont start The ColdFusion MX 7 Application Server service terminated with service-specific error 2 (0x2) Windows firewall is disabled.

RE: Web Service File Permission Issue

2007-09-01 Thread Dave Watts
1. Create file (I have remote desktopped in, as Administrator) in that directory, created a .txt file, it has the following permissions: - Administrator, Network Service, Domain User (IUSR_this domain)... (among others) readable via

Can a server issue cause ajax to stop working?

2007-09-01 Thread Will Tomlinson
I upgraded my crystaltech plan to CF8. I just noticed all my mxAjax stopped working. I guess it probably stopped working at the time we switched servers, because it worked fine before that. It all works fine on my dev machine. Does anyone know where I can start looking? I'd email CT, but

Re: Can a server issue cause ajax to stop working?

2007-09-01 Thread James Holmes
What does firebug tell you about the AJAX calls? On 9/2/07, Will Tomlinson [EMAIL PROTECTED] wrote: I upgraded my crystaltech plan to CF8. I just noticed all my mxAjax stopped working. I guess it probably stopped working at the time we switched servers, because it worked fine before that.

Re: Can a server issue cause ajax to stop working?

2007-09-01 Thread Rey Bango
Will, whats the link and I'll help check it out. Rey Will Tomlinson wrote: I upgraded my crystaltech plan to CF8. I just noticed all my mxAjax stopped working. I guess it probably stopped working at the time we switched servers, because it worked fine before that. It all works fine on

Re: Can a server issue cause ajax to stop working?

2007-09-01 Thread Will Tomlinson
What does firebug tell you about the AJAX calls? Dude, there ARE no ajax calls! lol! Seriously... it does nothing. Lemme try and get a link ready. Thanks! Will ~| Download the latest ColdFusion 8 utilities including

Re: Can a server issue cause ajax to stop working?

2007-09-01 Thread Will Tomlinson
Will, whats the link and I'll help check it out. it's a restricted admin. Lemme try and get somethin where y'all can see it. Thanks Rey! Will ~| Create robust enterprise, web RIAs. Upgrade to ColdFusion 8 and integrate with

Re: Instant Messaging

2007-09-01 Thread Jim Rising
i have a friend who works for userplane. i know that they have a free advertisement sponsored version that allows communities who use the software to share in the revenue. his name is Matthew Turner: [EMAIL PROTECTED] -jim On 9/1/07, Rey Bango [EMAIL PROTECTED] wrote: Hi guys, Has anyone

Re: Can a server issue cause ajax to stop working?

2007-09-01 Thread Will Tomlinson
Ok guys... http://67.199.9.107/reports/t8report.cfm Select Summer 2007 Evaluation. Then everytime you select a division, dept, or subject, it should be making ajax calls. It does on MY machine, just not on the CT server. Thanks much, Will

Re: Can a server issue cause ajax to stop working?

2007-09-01 Thread Will Tomlinson
Oh, and I have a much simpler ajax call on another page. Heck, IT doesn't even work now. I emailed CT support so we'll see where it goes. Thanks, Will ~| Check out the new features and enhancements in the latest product

Re: Can a server issue cause ajax to stop working?

2007-09-01 Thread Rey Bango
Will, I see no XHR call being made in FireBug but the actual dropdowns are changing as I select a different division. Same w/ dept. and subject. Very odd. I'm going to step away but I'll take a look at it later. I know James Holmes will be on the case as well so we'll get some answers. Rey...

Re: Can a server issue cause ajax to stop working?

2007-09-01 Thread James Holmes
Your script refers to www.metricsoundings.com for the ajax calls - you've sent us to the IP address. XmlHTTPRequests don't work well cross-domain. Go here http://www.metricsoundings.com/reports/t8report.cfm and it works. On 9/2/07, Will Tomlinson [EMAIL PROTECTED] wrote: Oh, and I have a much

Re: Can a server issue cause ajax to stop working?

2007-09-01 Thread Will Tomlinson
Your script refers to www.metricsoundings.com for the ajax calls - you've sent us to the IP address. XmlHTTPRequests don't work well cross-domain. Ok, James, CT fixed it apparently. Just after I emailed em, the server went down for a while. I sent *you* guys an ip link so google wouldnt

problem with excel datasource(resend)

2007-09-01 Thread Matthew Smith
I am trying to import data from an Excel spreadsheet into MS SQL 2005. I planned on just querying the sheet, then looping through the rows and inserting them one by one. I can get that working ok, however, there are some duplicate entries I am trying to exclude. However, when I put in the

Re: Can a server issue cause ajax to stop working?

2007-09-01 Thread Will Tomlinson
Rey, I think CT fixed somethin on the server. It's all workin now all of a sudden after I emailed support. I've been using the metricsoundings.com domain as the page, and it never worked. James pointed out making the ajax call via cross domain doesn't work well. Anyway, it's all workin.

Re: Can a server issue cause ajax to stop working?

2007-09-01 Thread Will Tomlinson
Oh, I'm an idiot! Gotcha james. the www bein left off screws it up. That's kinda tricky aint it? Stick the www on the domain and bingo. You rock dude! Thanks, Will ~| ColdFusion 8 - Build next generation apps today, with

CFEclipse Now Installed

2007-09-01 Thread Peter Donahue
Hello again everyone, Sheer determination allowed me to triumph and I now have CFEclipse installed and running. Now to learn all of the tips and tricks of what this plug-in can do. Take care everyone and have a great weekend. Peter Donahue

BlueDragon 7 problem with Text datatype

2007-09-01 Thread Pete Ruckelshaus
I have a CFMX7 application that I am trying to get to work with BlueDragon Server 7 (the free edition for now). Server is running Windows 2003 Server with IIS. Database is MS SQL Server 2005 Standard Edition. With the exception of one very important issue, everything's working pretty well. The

Re: BlueDragon 7 problem with Text datatype

2007-09-01 Thread Paul Hastings
Pete Ruckelshaus wrote: With a smaller chunk of text, both insert and update queries work just fine. does BD have an enable CLOB option and/or Long Text Buffer (chr) size in it's dsn admin bits? if so turn those on and/or increase the size. also wondering about the ODBC driver you're using,