RE: cfajaxproxy

2007-10-28 Thread Dale Fraser
Just to clarify this for everyone. You need a virtual directory, not a ColdFusion mapping for the ajax stuff. Regards Dale Fraser http://learncf.com -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: Sunday, 28 October 2007 12:49 PM To: CF-Talk Subject: Re:

Re: cfajaxproxy

2007-10-28 Thread Sean Corfield
On 10/27/07, Dan Vega [EMAIL PROTECTED] wrote: I have an application that uses cfajaxproxy. On my local machine it works great but on hostmysite I see an error in firebug that says ColdFusion is not defined. Do i need to import the tag? If so do i need to contact them to find the location of

RE: cfajaxproxy

2007-10-28 Thread Dale Fraser
Sean, Your method is indeed a good one, but my clarification was around the fact people were saying you need a CFIDE mapping. A ColdFusion CFIDE mapping will not work, you either need a virtual directory or to use the method Sean described. Sean's is probably more appropriate for a shared host

Re: cfajaxproxy

2007-10-28 Thread Andrew Scott
Strange I saw a virtual mapping, not Coldfusion mapping :-) On 10/28/07, Dale Fraser [EMAIL PROTECTED] wrote: Sean, Your method is indeed a good one, but my clarification was around the fact people were saying you need a CFIDE mapping. A ColdFusion CFIDE mapping will not work, you either

Re: CFML engine compatibility - a possible solution?

2007-10-28 Thread Pete Ruckelshaus
The issue is that CF is essentially a private programming language, with Adobe as the owner, so companies like New Atlanta can't really play a role in the development of the language...they have to take their own paths where they feel it is necessary. It will not be until CF becomes an open

Unnallowable Chars for Coldfusion, HTML, MySQL and Javascript

2007-10-28 Thread Richard White
Hi we build our software with coldfusion, Javascript, HTML, and MySQL. just wondering if anyone has a list of allowable and unallowable characters and symbols (,,$, etc...) for all of these languages. and maybe if characters are not allowable how we can get round these issues if we need the

cfdiv and anchors

2007-10-28 Thread Chris Smith
I'm have a issue with anchoring to a cfdiv area. Basically I have a two column layout with a LONG list of links on the left and a cfdiv area on the right. This worked great until the links on the right scrolled down below the cfdiv area. Now when I hit a link towards the bottom of the list I

Excel and Coldfusion and Javascript

2007-10-28 Thread Richard White
Hi, we noticed that Mozilla Firefox doesnt allow vbscript to run due to the security issues. However, we need to be able to interact with an excel document in our code. Is there anyway to do this through javascript or coldfusion or any other means without using vbscript Thanks for your help

cfx_payflowpro

2007-10-28 Thread Dan Vega
I have done some searching around and have yet to find an answer. I upgraded a server to CF7 and our cfx_payflowpro tag no longer works. I saw others with the same problem but can't seem to find a resolution. The error is below, any help is appreciated. 500 com/Verisign/payment/PFProAPI

RE: CF7 verity indexing of PDFs

2007-10-28 Thread Matt Barfoot
Unfortunately the match isn't good. The summary is just one of the opening paras and bears no relevance to the phrase I'm using. These are all PDF manuals from a certain software vendor and quite a bit of metadata, bookmarks etc already in the doc. If I search any of these pdfs they behave the

Re: Excel and Coldfusion and Javascript

2007-10-28 Thread Mike Chabot
Are you thinking client-side or server-side? You seem to be asking about client-side interaction, but it helps to confirm because the solutions are different. -Mike Chabot On 10/28/07, Richard White [EMAIL PROTECTED] wrote: Hi, we noticed that Mozilla Firefox doesnt allow vbscript to run due

Re: cfx_payflowpro

2007-10-28 Thread Sean Corfield
On 10/28/07, Dan Vega [EMAIL PROTECTED] wrote: I have done some searching around and have yet to find an answer. I upgraded a server to CF7 and our cfx_payflowpro tag no longer works. Could it be a Java version compatibilty issue? What JVM were you running on before CF7 and what JVM are you

RE: SOT but... any one using a bot trap?

2007-10-28 Thread Dave Watts
If it gets to a page hrefed on a 1 pixel blank image, it cannot be a human browser. Sure it can. I can think of two examples off the top of my head - someone with Google Web Accelerator installed, or someone using Lynx. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf

RE: SOT but... any one using a bot trap?

2007-10-28 Thread Dave Watts
Who needs to be scanned by oddities like disco/Nutch-0.9 (experimental crawler; [EMAIL PROTECTED]) Nutch is part of Lucene, I think. So, you may well need to be scanned by that. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber

Re: SOT but... any one using a bot trap?

2007-10-28 Thread Claude Schneegans
Nutch is part of Lucene, I think. So, you may well need to be scanned by that. I'll make my mind when they'll put a correct web address in their user agent, and I'll be able to see by myself why they are crawling my sites. the word experimental and just an email address doesn't look too

Re: SOT but... any one using a bot trap?

2007-10-28 Thread Claude Schneegans
someone with Google Web Accelerator installed, I don't see the problem, users with Web accelerator get their stuff from Google's cache, not from my server, so I don't even hear about them. Anyway, our sites are dynamic, we publish news every day, so robots are asked to not use cache anyway.

Re: Calendar with Recurring Events

2007-10-28 Thread Scott Pinkston
Ben Nadel has one that does: http://www.bennadel.com/projects/kinky-calendar.htm Can anyone suggest a CF calendar that allows for recurring events? I am working on a project which requires this. The project is Farcry-based but I?m just looking for an example of how to manage the data.

Re: Calendar with Recurring Events

2007-10-28 Thread Mike Kear
Jake, I built one - it took me ages because i kept changing my mind about how to handle recurring events. I've built it about a dozen times now. Here's what I settled on (it has advantages and disadvantages - there was no clear winner in the contest to find the best way to do it, which is why

SQL 2005 - Max Connections from application

2007-10-28 Thread Jignesh Kakkad
Hi Guys, This is Jignesh I would like to know that how can i configure max number of connection in MS SQL 2005 let me know regards jiggy ~| Get the answers you are looking for on the ColdFusion Labs Forum direct from active

Re: cfdiv and anchors

2007-10-28 Thread Azadi Saryev
put your list of links in a regular scrollable div same hight as your cfdiv - you will then scroll links within your new div instead of with the whole page, and your both divs will be always visible. Azadi Chris Smith wrote: I'm have a issue with anchoring to a cfdiv area. Basically I