Re: LisfFindNocase mystery

2007-11-20 Thread Michael Dinowitz
There is a space at the beginning of the second list element which is considered part of the element. Remove the space and you get the proper result. Does anyone know the list below returns 0? The function recognises the first value but ignores the second value in the list Thanks

LisfFindNocase mystery

2007-11-20 Thread Jide Aliu
Does anyone know the list below returns 0? The function recognises the first value but ignores the second value in the list Thanks cfset ListNames = 20071010_376, 20071016_392 cfoutput#ListFindNoCase(ListNames, 20071016_392)#/cfoutput

Re: LisfFindNocase mystery

2007-11-20 Thread Jide Aliu
Does anyone know the list below returns 0? The function recognises the first value but ignores the second value in the list Thanks cfset ListNames = 20071010_376, 20071016_392 cfoutput#ListFindNoCase(ListNames, 20071016_392)#/cfoutput Weird didn't work because of the space between

Re: blocking spambots

2007-11-20 Thread Tom Chiverton
On Saturday 17 Nov 2007, Richard Dillman wrote: Maybe this is a little too simple, but I simply block any non email fields from containing an @ or http://; or www. Obviously not somewhere where people post links. -- Tom Chiverton Helping to continually participate essential e-commerce on:

RE: LisfFindNocase mystery

2007-11-20 Thread Bobby Hartsfield
Because it made the value ' 20071016_392' not '20071016_392' ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com ~| Create robust enterprise, web RIAs. Upgrade to ColdFusion 8 and integrate with Adobe Flex

Re: Still having problems with website administration (not CFADMIN site)

2007-11-20 Thread Todd
You sure it's a site problem and not a browser setting issue? Are you allowing cookies from that domain that CFLOGIN may/may not use? Are your security settings about the same across the board for all of them? haven't monkey'ed around with CFLOGIN enough as I usually roll my own. On Nov 20,

Still having problems with website administration (not CFADMIN site)

2007-11-20 Thread Bruce Sorge
OK, so I am still having the same issue with our districts website admin section. Our main site is www.snowline.k12.ca.us, and when I log into our administration section from home using that URL everything works fine. However, when I log into any of our other URL's (www.snowlineschools.net, com

Re: Still having problems with website administration (not CFADMIN site)

2007-11-20 Thread Todd
The reason why I ask is because I have DNS running along side of web and it's not a big deal. Not preferred in the corporate environment, but this is just a personal box of mine. On Nov 20, 2007 10:44 AM, Todd [EMAIL PROTECTED] wrote: You sure it's a site problem and not a browser setting

Understanding the relationship btwn instances in multiserver

2007-11-20 Thread Maureen Barger
We run 7.01 under Solaris with an apache front end. Each instance is then set up as an apache virtual host attached to its respective jrun. ColdFusion instances are not clustered. I have noticed at times when one instance is having traffic issues (for example, a database issue which allows

RE: Still having problems with website administration (not CFADMIN site)

2007-11-20 Thread WebSite CFtalk
Try clearing your cookies before logging in. - if that solves the login issue you have some sort of problem regarding cflogin's use of cookies I guess? Helge -Original Message- From: Bruce Sorge [mailto:[EMAIL PROTECTED] Sent: 20. november 2007 16:35 To: CF-Talk Subject: Still having

Re: Can you move CFIDE out of the web root when using the built-in web server?

2007-11-20 Thread Rebecca Younes
struct type='coldfusion.server.ConfigMap'var name='/CFIDE'stringC:\ColdFusion8\wwwroot\CFIDE/string/var ... /struct This is the built-in, non-editable mapping found in the CF Administrator. Does this mean that I can't override that mapping in jrun-web.xml?

Re: Still having problems with website administration (not CFADMIN site)

2007-11-20 Thread Bruce Sorge
Well I am setting client cookies. Could that be the issue? I am not setting any domain cookies though and login storage is session, not cookie based. I admit that I am not too overly familiar with the inner workings of CFLOGIN since I have just barely started using it. I am used to rolling my

Re: blocking spambots

2007-11-20 Thread Richard Dillman
You probably shouldn't block that stuff in a memo/comment field simply because people may have those in their signature and will copy past that into every comment, but with judicious use of validation of phone, email, URL and such on those fields that have a very specific function, you can block a

RE: Understanding the relationship btwn instances in multiserver

2007-11-20 Thread Dave Watts
We run 7.01 under Solaris with an apache front end. Each instance is then set up as an apache virtual host attached to its respective jrun. ColdFusion instances are not clustered. I have noticed at times when one instance is having traffic issues (for example, a database issue which

Re: same line number keeps showing with cftrace

2007-11-20 Thread Bryan S
Hi Tom Enable Robust Exception Information is checked on both servers in CFIDE Bryan On Nov 20, 2007 11:52 AM, Tom Chiverton [EMAIL PROTECTED] wrote: On Monday 19 Nov 2007, Bryan S wrote: It works great when developing locally, however, when I use it on our UNIX development server it

RE: Still having problems with website administration (not CFADMI N site)

2007-11-20 Thread Dave Watts
OK, so I am still having the same issue with our districts website admin section. Our main site is www.snowline.k12.ca.us, and when I log into our administration section from home using that URL everything works fine. However, when I log into any of our other URL's

RE: Permissions with .CFR's (Report Builder)

2007-11-20 Thread Dave Watts
I can't find mention anywhere of how to best manage security/permissions on ..cfr files output by the ColdFusion Report Builder. I don't think you'll find much information on this topic because there isn't any. - How can I determine within the Report Builder if a user should have access

Re: same line number keeps showing with cftrace

2007-11-20 Thread Tom Chiverton
On Monday 19 Nov 2007, Bryan S wrote: It works great when developing locally, however, when I use it on our UNIX development server it always returns the same line number. Could robust exceptions be set to something different on the other box ? -- Tom Chiverton Helping to globally improve

RE: Understanding the relationship btwn instances in multiserver

2007-11-20 Thread Maureen Barger
no On Tue, November 20, 2007 12:13, Dave Watts wrote: We run 7.01 under Solaris with an apache front end. Each instance is then set up as an apache virtual host attached to its respective jrun. Are these instances using the same database server?

Problems with Application / CFApplication, I think

2007-11-20 Thread mark kecko
I'm getting this odd error (see below) in my exception log that has something to do with my cfapplication tag. There's nothing, that I'm aware of, which points me in the right direction. The error just lists my application name, as specified in my cfapplication tag, and nothing else. I'm

Re: Problems with Application / CFApplication, I think

2007-11-20 Thread Ian Skinner
java.lang.NullPointerException This is usually indicating a undefined variable being used. ~| Enterprise web applications, build robust, secure scalable apps today - Try it now ColdFusion Today ColdFusion 8 beta - Build next

Re: blocking spambots

2007-11-20 Thread Les Mizzell
I need to code for ease of use for the most disabled client I have which would be a blind paraplegic using the suck straw to navigate, text to speech, on a 56k modem with windows 98. My two previously mentioned simple/stupid tricks have been 99.9% effective for me... Ask a dumb question:

Re: blocking spambots

2007-11-20 Thread Todd
Somewhere in the world, someone has a random email address that someone thinks is fake and is wondering why the hell he's getting more spam. ;) On Nov 20, 2007 3:39 PM, Les Mizzell [EMAIL PROTECTED] wrote: This same fake form also leads to a page that generates random email addresses for bots

Re: Verity, does it work?

2007-11-20 Thread Jonathan Gingerich
Is there anything unusual about the document mentioned in the error? I don't believe so. It is failing for _every_ .doc file, although I haven't yet checked the exact STATUS for all. JG ~| ColdFusion 8 - Build next

Re: VPS or Dedicated CF Hosts

2007-11-20 Thread Mary Jo Sminkey
Same here. I use viviotech vps and they are great at responding to support tickets and keep on top of other support related issues that come up in their forums. I used them for a short time myself but dropped them due to the lack of proper infrastructure/generator backup. I understand they are

string concatenation / appending in CF8

2007-11-20 Thread Ryan Stille
Is there a shorter way to append strings in CF8 now? With all the javascript style operators I was hoping there would be something. += or = or .= or whatever. Or do we still need to do: Arguments.myOutputString = Arguments.myOutputString more text all the time? I would love a shorter

RE: string concatenation / appending in CF8

2007-11-20 Thread Dale Fraser
cfset string = The Quick / cfset string = Brown Fox / cfoutput#string#/cfoutput Regards Dale Fraser http://learncf.com -Original Message- From: Ryan Stille [mailto:[EMAIL PROTECTED] Sent: Wednesday, 21 November 2007 11:50 AM To: CF-Talk Subject: string concatenation / appending in

CFLDAP and Sun One Directory Service

2007-11-20 Thread Steve Metzger
We built a hierarchy in Sun one with various layers of OUs and groups with users under them. We thought it would be good practice to have each user possess a single user entry in the hierarchy. We use CFLDAP to authenticate, but we would like to limit the FILTER= parameter to a subset of

Re: string concatenation / appending in CF8

2007-11-20 Thread Ryan Stille
Hmm that one didn't work for me when I tried it (I tried the ways I listed in my first post), but I'll have to go back and try it again, maybe I had something wrong. -Ryan Dale Fraser wrote: cfset string = The Quick / cfset string = Brown Fox / cfoutput#string#/cfoutput Regards Dale

Re: LisfFindNocase mystery

2007-11-20 Thread Sean Corfield
On Nov 20, 2007 3:02 AM, Jide Aliu [EMAIL PROTECTED] wrote: Does anyone know the list below returns 0? The function recognises the first value but ignores the second value in the list As others have said, you have a space in your list which is considered part of the list. Two possibilities: