Re: cf8 Admin error handler url

2008-04-12 Thread George Lu
I've got the same issue in Scheculed Tasks. If I put http://servername/myapp/index_mysite.cfm in the task CF Admin will throw a 500 error. It looks like http://servername/...; and http://servername:8301/...; are in different application scope? On 11/04/2008, George Lu [EMAIL PROTECTED] wrote:

Frameworks

2008-04-12 Thread Jenny Gavin-Wear
I've been reading up a bit on stuff like Eclipse, etc and I'm wondering which way to go. Flex looks interesting, but until Google fully implemented the indexing of Flash it's a direction I'm nervous about going in. I'm currently using Dreamweaver, CFMX 7, MS SQL 2000. I'd like to take my coding

CF 8.0.1 Update and CFMENU

2008-04-12 Thread Bob Hendren
Has anyone experience trouble with CFMENU since the 8.0.1 Updater? I've noticed a few of things: 1) The submenu indicator arrow appears beneath the display text in a vertical menu in Internet Explorer. 2) There seems to be an improperly nested DIV that causes a thick top border in vertical

RE: Tutorial on creating this pagination?

2008-04-12 Thread Rick Faircloth
Nathan... I've customized the look of the pagination for paginationcfc and it looks just the way I want, except I haven't figured out what CSS controls the ellipsis. How do I change the color of that? Rick -Original Message- From: Nathan Strutz [mailto:[EMAIL PROTECTED] Sent:

A Better Coldfusion Search Form.

2008-04-12 Thread Colin Eyo
Hi, I'm trying to figure out how to create a dynamic search form using Coldfusion 8. Right now if I enter multiple words in my search field the results omit certain records. For example, if I put toy blue in the search field it will return results that only have TOY BLUE together and omits

RE: A Better Coldfusion Search Form.

2008-04-12 Thread ColdFusion
Something like this cfif IsDefined(form.criteria) AND Len(Trim(form.criteria)) and ( cfset c=0 cfloop index=wrd list=#form.criteria# delimiters= cfset c=c+1 itemName LIKE '%#wrd#%' cfif c neq listlen(form.criteria, ) OR /cfif

CFID and CFTOKEN in the way

2008-04-12 Thread Les Mizzell
I have a client that's switching payment methods over to Barclay card for their site. I've gotten everything to work pretty well up to the last step. The page *submitting* the payment must be an approved url that's set in the Barclay Card store admin. It's got to be exactly the same every

Re: A Better Coldfusion Search Form.

2008-04-12 Thread Scott Pinkston
Look up freetext or fulltext depending on the db engine. MySQL: http://dev.mysql.com/doc/refman/5.0/en/fulltext-search.html SQL Server: http://msdn2.microsoft.com/en-us/library/ms176078.aspx Hi, I'm trying to figure out how to create a dynamic search form using Coldfusion 8. Right now

Re: Tutorial on creating this pagination?

2008-04-12 Thread Nathan Strutz
I think it's: div.pagination { color:#F00; } At the same time, make sure you specify colors for anything else it may affect, such as: div.pagination span { color:#0F0; } On Sat, Apr 12, 2008 at 4:43 AM, Rick Faircloth [EMAIL PROTECTED] wrote: Nathan... I've customized the look of the

RE: Tutorial on creating this pagination?

2008-04-12 Thread Rick Faircloth
Got it! Perfecto! Thanks, Nathan! Rick -Original Message- From: Nathan Strutz [mailto:[EMAIL PROTECTED] Sent: Saturday, April 12, 2008 5:24 PM To: CF-Talk Subject: Re: Tutorial on creating this pagination? I think it's: div.pagination { color:#F00; } At the same time, make

Re: Frameworks

2008-04-12 Thread s. isaac dealey
Hi Jenny, The onTap framework (in my sig) has a lot of syntactic sugar built in, so you can build things like dhtml tabsets that are section 508 (accessibility) compliant without any real knowledge of javascript. Most (all?) other dhtml tabsets you find out there, like the ones in Spry would

RE: Frameworks

2008-04-12 Thread Sandra Clark
You could look at Dojo, which is a WAI-ARIA compliant (Accessible Rich Internet Application) DHTML framework. Frameworks mean many different things in the CF world. We have CF Frameworks, then there are Ajax Frameworks, Flex Frameworks. -Original Message- From: s. isaac dealey

Re: CFID and CFTOKEN in the way

2008-04-12 Thread Dan Vega
When using cflocation you can set the attribute for addtoken=false Dan On Sat, Apr 12, 2008 at 1:02 PM, Les Mizzell [EMAIL PROTECTED] wrote: I have a client that's switching payment methods over to Barclay card for their site. I've gotten everything to work pretty well up to the last step.

Re: cf8 Admin error handler url

2008-04-12 Thread George Lu
It looks like if I put ip address instead of DNS name/server name it'll work (i.e. http://serveripaddress/myapp/myscheduledtask.cfm). I just don't know why. On 12/04/2008, George Lu [EMAIL PROTECTED] wrote: I've got the same issue in Scheculed Tasks. If I put

RE: Frameworks

2008-04-12 Thread Jenny Gavin-Wear
Thanks for replies ... I had a look at Eclipse today .. didn't find it as friendly to use as Dreamweaver, for sure. I ruled out Flex as it produces Flash. Maybe there is something that is more business-process oriented. Jenny No virus found in this outgoing message. Checked by AVG. Version:

Re: Frameworks

2008-04-12 Thread Kay Smoljak
On Sun, Apr 13, 2008 at 10:06 AM, Jenny Gavin-Wear [EMAIL PROTECTED] wrote: I had a look at Eclipse today .. didn't find it as friendly to use as Dreamweaver, for sure. That's definitely true. If you are comfortable using DW you don't necessarily need to change - while there's a lot of

How to write this query?

2008-04-12 Thread Rick Faircloth
Hi, all... I've got two tables: 1 - list of properties 2 - photos for those properties There is more than one photo per property. What I want to do is get each property and the first photo for that property. Here's what I've tried: select distinct sa.street_number, sa.street_name,

weird issue in browser with cf8 and long execution times

2008-04-12 Thread Randy Johnson
Hello, I am running CF8 Standard. I am running a page that takes a few minutes to run. After a certain amount of time a gray box will popup and ask me to save the index.cfm file or open it. When I open it or save it the file is always blank. When this happens it looks like the page is done

Re: CFID and CFTOKEN in the way

2008-04-12 Thread Les Mizzell
Dan Vega wrote: When using cflocation you can set the attribute for addtoken=false Yea - but it's often a form submission without a cflocation. I found a method suggested by Ben Forta I'm playing with... ~| Adobe® ColdFusion®

Restricting page access if not from cf8 interface

2008-04-12 Thread Michael Brennan-White
I have a number of pages that get pulled into cflayoutareas from my main page. The menu displays the addresses to these pages and I would like to keep someone from accessing the pages directly by the URL. What method(s) will make it possible to only allow access to these pages by my

Re: How to write this query?

2008-04-12 Thread Azadi Saryev
something like the following (note: mysql syntax): SELECT sa.street_number, sa.street_name, sa.city, sa.public_remarks_01, sa.public_remarks_02, sa.public_remarks_03, sa.list_price, SAP_SQ.photo_filename FROM smlc_acr sa INNER JOIN (SELECT photo_filename, photo_mls_number FROM smlc_acr_photos