Re: Built a dirty word checker, testing please?

2005-04-09 Thread Will Tomlinson
>Will, I don't think anybody's saying this is a bad idea, and I was
>more'n glad to help out. I think it's a great idea and when it's in a
>stable version I think you should put it up on cflib.org to be used by
>the community...


Definitely. If it's worthwile for people to use, I'll put it wherever they'd 
like. 
Preeesh on the help! 

 That's why
>I recommended using a comparison via one loop over the library rather
>than a word-by-word loop over the entire field and then subloops over
>the various word categories...


Gotcha! I've just figured it didn't matter too much because there will not be a 
massive amount of words in the list to ban. And another thing I didn't think 
would be hurtful was massive amounts of text to search. Figured this would 
primarily be a tool for forum textareas, small inputs. Doubt it would come in 
handy for anything more than that. 

>
>But it's a work in progress and a learning tool for you, and I REALLY
>recommend you stick with it and gain all the understanding you can
>from it. And pester Isaac about regexes... he needs the practice! :P

Yes I've learned a ton from workin on this. And it's been fun as hell! oops! Is 
that in the list? Have no clue on regexes, other than what hear on the list. 

>
>Anyway... it seems to nicely catch any word tossed into the
>dictionary. I would be interested to know how long it takes to test a
>2000 word document with a reasonably populated dirty-word
>dictionary... there's your next assignment, Jedi Novice Tomlinson. ;)
>
>Laterz!
>
>J

Thanks much Jared! 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202134
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: simple URLs like www.domain.com/go/2345

2005-04-09 Thread Steven Brownlee
Oh, well that answers the question (even though you already said it) that
you're using IIS.  The GetPageContext object will only return the original
request on Jrun or other J2EE server.  Try looking at the value of
CGI.QUERY_STRING.  What IIS does when it writes a custom response header is
take the original request and append it to the page you're redirecting to.
Here's an example.

You set the 404 handler to /go.cfm
You request http://www.domain.com/go/2345
IIS redirects to /go.cfm?404;http://www.domain.com/go/2345
Your CGI.QUERY_STRING will have a value of
?404;http://www.domain.com/go/2345
You can now do some simple RegEx or GetToken magic to grab the '2345' (e.g.
siteNumber = REFindNoCase("([:digit:]{4})$", cgi.query_string);)

Give those ideas a shot.

-Original Message-
From: Olivier [mailto:[EMAIL PROTECTED] 
Sent: Saturday, April 09, 2005 4:48 PM
To: CF-Talk
Subject: simple URLs like www.domain.com/go/2345

Ok, I got it to work. 
".cfm" was not associated in the ISAPI for this site ! :)

Now here is the go.cfm file
==
go:


#CGI.HTTP_REQUEST#

#GetPageContext().getRequest().getRequestURL().toString()#

#CGI.HTTP_REFERER#

#Now()#

==

But here are the result I get when going to http://go.mydomain.com/1234

==
go:


http://go.mydomain.com/go.cfm


{ts '2005-04-09 13:44:02'}
==

Neither the GetPageContext or HTTP_REQUEST are getting a value..
Help !! :)

Thanks.


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202133
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Built a dirty word checker, testing please?

2005-04-09 Thread Jim Davis
> -Original Message-
> From: Will The Game [mailto:[EMAIL PROTECTED]
> Sent: Saturday, April 09, 2005 7:50 AM
> To: CF-Talk
> Subject: Built a dirty word checker, testing please?
> 
> Hey,
> 
> I've built a cool little tool I'm callin' nodirtywords.

It's really hard to do this (so I'm not picking on it really) but after some
tests:

+) Placing spaces between the letters allows the words to pass.  "F U C K"
is just as legible as "FUCK".

+) Substitutions (1's and I's, 0's and O's) allow the words to pass.  "SH1T"
looks a lot like "SHIT" but passes the filter.

+) Stemming most words allows them to pass.  For example it didn't catch
"fucking", "fuckin'", "fucked", etc.

+) Adding symbols (even those in grammatically correct sentences) allow the
word to pass.  "-fuck", "fuck.", "fuck,", etc all pass.

Like I said - this kind of stuff is REALLY hard to do with any kind of
certainty.  In most cases I've found the only way to really handle this is
human review of material (although a filter like this is a decent first line
of defense).

Also you may want to look at some of the heuristics and learning systems
designed to deal with spam - most of these problems arise there as well.

Jim Davis




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202132
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Built a dirty word checker, testing please?

2005-04-09 Thread Jim Davis
> -Original Message-
> From: Paul Vernon [mailto:[EMAIL PROTECTED]
> Sent: Saturday, April 09, 2005 8:20 AM
> To: CF-Talk
> Subject: RE: Built a dirty word checker, testing please?
> 
> Technique seems OK, but the vocabulary is limited, you definitely need a
> bigger dictionary of dirty words!

Here's perhaps the definitive list from a true collector:

http://www.georgecarlin.com/dirty/2443.html

Jim Davis




~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202131
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: simple URLs like www.domain.com/go/2345

2005-04-09 Thread Jared Rypka-Hauer - CMG, LLC
It may take a bit more work, but this solution is meant to work this
way, not make something work by breaking other things (all respect to
the 404-error afficianados out there, and no disrespect intended... I
just don't like fixing things by masking other broken things... it's a
matter of using things to their intended purpose).

Anyway, here's the URL, it's about using a combination of mod_rewrite
and mod_proxy to create masked URLs:
http://www.macromedia.com/devnet/mx/coldfusion/j2ee/articles/balancing_j2ee03.html

It works as well with CF as it does with Jrun, and it's all
practically the same thing anyway, you just have to read .cfm in a few
places and apply the concept to your problem. I set it up in a few
mintues one afternoon. The only real issue is tweaking your regexes so
your links don't end up broken... here's another bit of writing on the
subject:

http://blaine.korte.ca/index.cfm?mode=entry&entry=A8CFD94A-E18C-C9BC-0384EA187AF34613

Best'o'Luck...

Laterz!

J

On Apr 8, 2005 8:13 PM, olivier <[EMAIL PROTECTED]> wrote:
> Hello !
> 
> Basically, I want to be able to use a simple URL that would forward to a
> more complex one.
> Like when you communicate on paper, you don't want the user to have to type
> www.domain.com/products/index.cfm?action=this&product=that&disptype=1234&promo=1234
> but you'd rather have them use something simple like www.domain.com/1234
> 
> At the same time, you can take the opportunity to log that hit in another
> table to run statistics.
> 
> The question is: how do you handle with ColdFusion simple urls like that,
> that do not have a .cfm filename in the URL ?
> 
> Thanks so much !!! 


-- 
Continuum Media Group LLC
Burnsville, MN 55337
http://www.web-relevant.com
http://www.web-relevant.com/blogs/cfobjective

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202130
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Large file uploads

2005-04-09 Thread Emmet McGovern
What's the best practice for large file uploads? 250-500megs. cfftp or
cffile.  Advantages and disadvantages? 

Also, since were on the subject.  Has anyone written a decent progress bar
for something like this?  Care to share?


Emmet



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202129
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Any news from MM on the broken IIS6 connector on stand alone installs???

2005-04-09 Thread Jared Rypka-Hauer - CMG, LLC
Indeed... so it would seem.

I've had issues with installing the CFMX 7 app on top of Jrun, but
those were mostly attributable to my own attempts to break and then
fix things. Like changing the context-root parameter of the CFMX 7
install in XML and then trying to launch it. Some things you wouldn't
expect to break stuff, but editing it, then changing it back doesn't
even seem to fix the problem... so there's a lot of voodoo that
happens behind the scenes.

I'm just glad they patched the connector, because I do know that, for
whatever reason, lots of people were having issues with it.

Anyway... I was just being tongue-in-cheek about the whole parade thing...

Laterz!

J

On Apr 9, 2005 3:46 AM, Mike Kear <[EMAIL PROTECTED]> wrote:
> He didnt rain on my parade.  I've been saying there's a problem with
> installing JRUN in some cases (like for example mine) since CFMX6.0
> came out.   When CFMX7 came out , I had problems installing it and had
> forgotten that I was unable to install JRUN earlier.  I got CFMX6.0
> going in the end by installing on a completely new hard drive with
> nothing but a stock standard WinXPPro with no tweaks at all.  And I
> got CFMX7 going by not having JRUN at all.  Running it on the built in
> web server now.
> 
> So I still say there's a problem IN SOME CASES with installing the JRUN.
> 
> 
> Cheers
> Mike Kear
> Windsor, NSW, Australia
> Certified Advanced ColdFusion Developer
> AFP Webworks
> http://afpwebworks.com
> ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month 


-- 
Continuum Media Group LLC
Burnsville, MN 55337
http://www.web-relevant.com
http://www.web-relevant.com/blogs/cfobjective

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202128
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Free or *cheap* cf forum

2005-04-09 Thread Jared Rypka-Hauer - CMG, LLC
Check out Ray Camdens Galleon Forums...

http://ray.camdenfamily.com in the pod at the right called "My Tools..."

>From the maker of the Ever-Popular BlogCFC.

Laterz,
J

On Apr 9, 2005 6:03 PM, Stan Winchester <[EMAIL PROTECTED]> wrote:
> If you are interested, we have one in BETA now; see: 
> http://www.aftershockweb.net/forums/threads.cfm/ForumId/9
> 
> >is there a free or cheap coldfusion based forum application?
> >
> >--
> >My Blog
> >http://www.clinttredway.com
> >
> >Are you diabetic?
> >http://www.diabetesforums.com
> 
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202127
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Built a dirty word checker, testing please?

2005-04-09 Thread Jared Rypka-Hauer - CMG, LLC
Well, the script from Johhny Dangerously is safe:

farging icehole
corksucker
fork you

All went thru just fine... ;)

Will, I don't think anybody's saying this is a bad idea, and I was
more'n glad to help out. I think it's a great idea and when it's in a
stable version I think you should put it up on cflib.org to be used by
the community...

I think, from a technical perspective, you should use a webservice or
a URL like someone posted here to obtain your list of so-called "dirty
words" (very funny, Isaac... heh.) It's important to remember that the
bigger your library of words, the longer your script will take to
execute, though... hence the reason that Isaac recommended a slightly
more heuristic approach (i.e. pattern matching on a single string
rather than using a word-by-word loop like you have here). That's why
I recommended using a comparison via one loop over the library rather
than a word-by-word loop over the entire field and then subloops over
the various word categories...

But it's a work in progress and a learning tool for you, and I REALLY
recommend you stick with it and gain all the understanding you can
from it. And pester Isaac about regexes... he needs the practice! :P

Anyway... it seems to nicely catch any word tossed into the
dictionary. I would be interested to know how long it takes to test a
2000 word document with a reasonably populated dirty-word
dictionary... there's your next assignment, Jedi Novice Tomlinson. ;)

Laterz!

J

On Apr 9, 2005 5:02 PM, S. Isaac Dealey <[EMAIL PROTECTED]> wrote:
> bugger
> 
> > wanker
> 
> 
> s. isaac dealey 954.522.6080
> new epoch : isn't it time for a change? 


-- 
Continuum Media Group LLC
Burnsville, MN 55337
http://www.web-relevant.com
http://www.web-relevant.com/blogs/cfobjective

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202126
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Free or *cheap* cf forum

2005-04-09 Thread Stan Winchester
If you are interested, we have one in BETA now; see: 
http://www.aftershockweb.net/forums/threads.cfm/ForumId/9
 
>is there a free or cheap coldfusion based forum application?
>
>-- 
>My Blog
>http://www.clinttredway.com
>
>Are you diabetic?
>http://www.diabetesforums.com

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202125
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Built a dirty word checker, testing please?

2005-04-09 Thread S . Isaac Dealey
bugger

> wanker


s. isaac dealey 954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://macromedia.breezecentral.com/p49777853/
http://www.sys-con.com/author/?id=4806
http://www.fusiontap.com


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202124
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Built a dirty word checker, testing please?

2005-04-09 Thread S . Isaac Dealey
> -Original Message-
> From: Claude Schneegans
> [mailto:[EMAIL PROTECTED]
> Sent: Saturday, April 09, 2005 2:47 PM
> To: CF-Talk
> Subject: Re: Built a dirty word checker, testing please?


>  >>dirty filthy slimy greasy sleazy scuzzy cruddy dungy
>  >>grubby grungy
> mucky muddy

> Why don't filter all words ending with "y"? ;-)

I'm reminded of a bit from the Jimmy Kimmel show... "random acts of
censorship" or some such -- where they played a montage of really
completely unrelated film clips where they would censor particular
words or hand jestures which didn't need to be cesnored... things like
poltiicians waving to their audience after giving a speech and having
both their hands blurred so it looked like they were flipping off the
audience (with both hands). I wonder if the video is on the web
anywhere -- great stuff... :)

s. isaac dealey 954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://macromedia.breezecentral.com/p49777853/
http://www.sys-con.com/author/?id=4806
http://www.fusiontap.com


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202123
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Built a dirty word checker, testing please?

2005-04-09 Thread S . Isaac Dealey
> I really don't know how to respond other than:

> Please give me admin priveleges to your clients' sites. I
> have some words I'd love to add to them. Would that be ok?
> Now, we wouldn't want to have any censorship there would
> we?...

That's not censorship, that's ownership.

> Back to my original post. Look, I just thought it was a
> pretty nifty thing to have to help filter out some "bad
> words". Yes there are people who have enough time on their
> hands to beat the system. Not everyone will devote the
> time needed to probe every angle though.

> If you don't need something like this that's fine, I just
> thought it was kinda interesting building it. If you DO
> like it let me know and it's yours.

I really never intended to say "don't do it" or "don't use it"... Was
just expressing my opinion on the subject -- along with explaining
part of the reason for the list of "dirty words" I gave -- which
actually was just a joke (tongue-firmly-in-cheek)... synonyms for the
word "dirty" from dictionary.com. :)

s. isaac dealey 954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://macromedia.breezecentral.com/p49777853/
http://www.sys-con.com/author/?id=4806
http://www.fusiontap.com


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202122
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Free or *cheap* cf forum

2005-04-09 Thread Will Tomlinson
I have one I reworked from the old Axent forum. Works just fine. Here it is in 
action. 

http://www.singinginfo.com/singinginfo/Forum/siforum/viewposts.cfm

email me if you'd like me to send it. 

Will

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202121
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Free or *cheap* cf forum

2005-04-09 Thread Clint Tredway
is there a free or cheap coldfusion based forum application?

-- 
My Blog
http://www.clinttredway.com

Are you diabetic?
http://www.diabetesforums.com

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202120
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


simple URLs like www.domain.com/go/2345

2005-04-09 Thread Olivier
Ok, I got it to work. 
".cfm" was not associated in the ISAPI for this site ! :)

Now here is the go.cfm file
==
go:


#CGI.HTTP_REQUEST#

#GetPageContext().getRequest().getRequestURL().toString()#

#CGI.HTTP_REFERER#

#Now()#

==

But here are the result I get when going to http://go.mydomain.com/1234

==
go:


http://go.mydomain.com/go.cfm 


{ts '2005-04-09 13:44:02'} 
==

Neither the GetPageContext or HTTP_REQUEST are getting a value..
Help !! :)

Thanks.




~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202119
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Best price for CFMX 6.1 or 7

2005-04-09 Thread Vegas
I have one. Email [EMAIL PROTECTED]

>Anyone know of the least expensive place to purchase a CFMX 7 Standard 
>license? Anyone interested in selling a CFMX 6.1 Standard or Enterprise 
>license?
>
>Let me know.
>
>Rey...

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202118
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Best price for CFMX 6.1 or 7

2005-04-09 Thread Will Tomlinson
>I tried Blue Dragon when it was first released and it didn't support a lot 
>of the things I use.. but I will check again.
>Al


I've never used it myself but have read a bit on the newatlanta site and saw 
some positive posts here. 

Will

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202117
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Built a dirty word checker, testing please?

2005-04-09 Thread Will Tomlinson
> lol wilbergini, beside I do not know a single cuss word :)


Ut oh, dave used it! My server is down! DRATS  :)

I knew he'd swoop in and take it out! 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202116
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


simple URLs like www.domain.com/go/2345

2005-04-09 Thread Olivier
Hello,


Thank you all for your answers.

I have created a new IIS virtual website for http://go.mydomain.com
* In the root directory, there is a very simple CFM file called "go.cfm", 
which contains:
Request: #CGI.HTTP_REQUEST#
* On ISS, I have replaced the 404 default error, with type URL, value: 
/go.cfm
* When going to a browser and entering http://go.mydomain.com/1234, I get 
the following response:
The request is not supported

If I use the type "file", and specify the go.cfm file within the file 
system, when browsing the URL, I get the source code of the CFM file, so it 
doesn't seem to be it... I know I'm doing something wrong, but can't figure 
out what  :o)


Thanks all !



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202115
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


re: Built a dirty word checker, testing please?

2005-04-09 Thread dave
lol wilbergini, beside I do not know a single cuss word :)


From: Will The Game <[EMAIL PROTECTED]>
Sent: Saturday, April 09, 2005 7:45 AM
To: CF-Talk 
Subject: Built a dirty word checker, testing please? 

Hey,

I've built a cool little tool I'm callin' nodirtywords.

It's just what the name implies, code that check to make sure a dirty word 
hasn't been submitted via form data. Iset it up as a web service, but also 
built a custom tag AND just a plain ol' CFC. For now I wanted to see if some of 
you could test out the web service and give me some feedback/suggestions. I 
know WS isn't the way to implement this, but it's just plain fun to use it that 
way! :)

dave l., please don't test it out, my cf server probably can't handle it! :)

Thanks to Jared for his help!

Test it out right here: http://www.wtomlinson.com/checkcussform.cfm

Here's some explanation and example code I've been using. 

Setup a text input named "text". A structure named "finalresult" will return a 
variable named finalresult.theresult with a value of either "pass" or "fail". 

There's also a variable named finalresult.wordcount that returns the word count 
of text submitted. This could be used for a server side check that ensures text 
didn't exceed the max specified. Use the values to do whatever processing you'd 
like. 

 Example: Run an insert query with the clean text 

Then output it like this. 

Verdict on text is: #finalresult.theresult# - word count is: 
#finalresult.thewordcount#

Or just cfdump it. 

Thanks,
Will



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202114
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Built a dirty word checker, testing please?

2005-04-09 Thread dave
and for those of us who don't prefer any lettuce on our salads, there is the 
alway enlightening "scramble her eggs" which made it through as well :)


From: Marlon Moyer <[EMAIL PROTECTED]>
Sent: Saturday, April 09, 2005 2:23 PM
To: CF-Talk 
Subject: Re: Built a dirty word checker, testing please? 

"Toss my salad" passed with flying colors! :)

On Apr 9, 2005 12:23 PM, Will Tomlinson  wrote:
> >Even with english it doesn't appear to work at all... every single one
> >of these words passed: dirty filthy slimy greasy sleazy scuzzy cruddy
> >dungy grubby grungy mucky muddy mung murky raunchy scummy skank
> >sullied yucky
> >
> 
> And every one of those words would be allowed on my pages. let's stick with 
> the words you DON'T want allowed on your pages. :)
> 
> Will
> 
> 



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202113
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


PDFLIB Sample with ColdFusion

2005-04-09 Thread Asim Manzur
Does anyone have any experience with PDFLIB, could someone have any
samples which uses the java component of PDFLIB.

Thanks 
-- 
Regards,

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202112
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Built a dirty word checker, testing please?

2005-04-09 Thread Rick Faircloth
Hmmm...never heard of that one...guess I am getting old...

I wouldn't worry too much of sub-culture language, e.g. hip-hop slang,
which "Toss my salad" and "Packed her fudge" appear to be.
That's mostly code language...not commonly known profanity.

Mostly, this would be for the protection of the young who haven't
experienced much or hardly any profanity at all.

I mean let's face it, there always ways around defenses like Will's
for those who are profane, but again...it's better to do something than
nothing...

Rick

-Original Message-
From: Marlon Moyer [mailto:[EMAIL PROTECTED]
Sent: Saturday, April 09, 2005 3:58 PM
To: CF-Talk
Subject: Re: Built a dirty word checker, testing please?


http://www.urbandictionary.com/define.php?term=toss+my+salad&r=f

On Apr 9, 2005 2:29 PM, Rick Faircloth <[EMAIL PROTECTED]> wrote:
> "Toss my salad"...?
>
>
> -Original Message-
> From: Clark Slater [mailto:[EMAIL PROTECTED]
> Sent: Saturday, April 09, 2005 3:22 PM
> To: CF-Talk
> Subject: RE: Built a dirty word checker, testing please?
>
> wanker
>
> -Original Message-
> From: Marlon Moyer [mailto:[EMAIL PROTECTED]
> Sent: Saturday, April 09, 2005 11:26 AM
> To: CF-Talk
> Subject: Re: Built a dirty word checker, testing please?
>
> "Toss my salad" passed with flying colors! :)
>
> On Apr 9, 2005 12:23 PM, Will Tomlinson <[EMAIL PROTECTED]> wrote:
> > >Even with english it doesn't appear to work at all... every single
> > >one of these words passed: dirty filthy slimy greasy sleazy scuzzy
> > >cruddy dungy grubby grungy mucky muddy mung murky raunchy scummy
> > >skank sullied yucky
> > >
> >
> > And every one of those words would be allowed on my pages. let's stick
> > with the words you DON'T want allowed on your pages.  :)
> >
> > Will
> >
> >
>
>



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202111
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Built a dirty word checker, testing please?

2005-04-09 Thread Marlon Moyer
http://www.urbandictionary.com/define.php?term=toss+my+salad&r=f

On Apr 9, 2005 2:29 PM, Rick Faircloth <[EMAIL PROTECTED]> wrote:
> "Toss my salad"...?
> 
> 
> -Original Message-
> From: Clark Slater [mailto:[EMAIL PROTECTED]
> Sent: Saturday, April 09, 2005 3:22 PM
> To: CF-Talk
> Subject: RE: Built a dirty word checker, testing please?
> 
> wanker
> 
> -Original Message-
> From: Marlon Moyer [mailto:[EMAIL PROTECTED]
> Sent: Saturday, April 09, 2005 11:26 AM
> To: CF-Talk
> Subject: Re: Built a dirty word checker, testing please?
> 
> "Toss my salad" passed with flying colors! :)
> 
> On Apr 9, 2005 12:23 PM, Will Tomlinson <[EMAIL PROTECTED]> wrote:
> > >Even with english it doesn't appear to work at all... every single
> > >one of these words passed: dirty filthy slimy greasy sleazy scuzzy
> > >cruddy dungy grubby grungy mucky muddy mung murky raunchy scummy
> > >skank sullied yucky
> > >
> >
> > And every one of those words would be allowed on my pages. let's stick
> > with the words you DON'T want allowed on your pages.  :)
> >
> > Will
> >
> >
> 
> 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202110
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cfstat not working on cf7

2005-04-09 Thread exciteworks.com hosting
ya, i am using the server option (not jrun)...

never seen this before...

On Apr 9, 2005 2:39 PM, Alex Hubner <[EMAIL PROTECTED]> wrote:
> Are you using "Server Configuration" or the "J2EE with JRun"? If you're using 
> the second option, cfstat will not work (don't ask me why) and you'll need to 
> use Jrun Metrics/logger, which is more complete but does not offer the easy 
> of cfstat.
> 
> []'s
> Alex
> 
> On Sat, 9 Apr 2005 10:19:03 -0400, "exciteworks.com hosting" <[EMAIL 
> PROTECTED]> escreveu:
> 
> > De: "exciteworks.com hosting" <[EMAIL PROTECTED]>
> > Data: Sat, 9 Apr 2005 10:19:03 -0400
> > Para: CF-Talk 
> > Assunto: cfstat not working on cf7
> >
> > I installed CFMX7 on linux (RHEL3) and it seems to be working fine,
> > except for cfstat.
> >
> > # /opt/coldfusionmx7/bin/cfstat 1
> > Exception in thread "main" java.lang.NoClassDefFoundError:
> > coldfusion/tools/CfstatMain
> >
> > Has anyone seen this error?
> >
> > Please help!
> >
> > Thanks
> >
> >
> 
> 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202109
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Built a dirty word checker, testing please?

2005-04-09 Thread Will Tomlinson
>It's a good thing, Will...better to do what you can
>than to do nothing...thanks for the effort!
>

MUCH appreciated Rick! Thanks for taking the time to try it out. And of course, 
anyone can delve into the dark, dank bowels of this CFC and add all the dirty 
words they like. :) 

I thought about placing them in cfinvoke, or cf_dirtyword, but then you have to 
look at'em everytime you look at the code.  :)

Thanks,
Will

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202108
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Built a dirty word checker, testing please?

2005-04-09 Thread Rick Faircloth
It's a good thing, Will...better to do what you can
than to do nothing...thanks for the effort!

Rick


-Original Message-
From: Will Tomlinson [mailto:[EMAIL PROTECTED]
Sent: Saturday, April 09, 2005 3:28 PM
To: CF-Talk
Subject: Re: Built a dirty word checker, testing please?


I really don't know how to respond other than:

Please give me admin priveleges to your clients' sites. I have some words
I'd love to add to them. Would that be ok? Now, we wouldn't want to have any
censorship there would we?...

Back to my original post. Look, I just thought it was a pretty nifty thing
to have to help filter out some "bad words". Yes there are people who have
enough time on their hands to beat the system. Not everyone will devote the
time needed to probe every angle though.

If you don't need something like this that's fine, I just thought it was
kinda interesting building it. If you DO like it let me know and it's yours.

Thanks,
Will



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202107
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Built a dirty word checker, testing please?

2005-04-09 Thread Rick Faircloth
"Toss my salad"...?


-Original Message-
From: Clark Slater [mailto:[EMAIL PROTECTED]
Sent: Saturday, April 09, 2005 3:22 PM
To: CF-Talk
Subject: RE: Built a dirty word checker, testing please?


wanker

-Original Message-
From: Marlon Moyer [mailto:[EMAIL PROTECTED]
Sent: Saturday, April 09, 2005 11:26 AM
To: CF-Talk
Subject: Re: Built a dirty word checker, testing please?


"Toss my salad" passed with flying colors! :)


On Apr 9, 2005 12:23 PM, Will Tomlinson <[EMAIL PROTECTED]> wrote:
> >Even with english it doesn't appear to work at all... every single
> >one of these words passed: dirty filthy slimy greasy sleazy scuzzy
> >cruddy dungy grubby grungy mucky muddy mung murky raunchy scummy
> >skank sullied yucky
> >
>
> And every one of those words would be allowed on my pages. let's stick
> with the words you DON'T want allowed on your pages.  :)
>
> Will
>
>





~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202106
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Built a dirty word checker, testing please?

2005-04-09 Thread Will Tomlinson
I really don't know how to respond other than: 

Please give me admin priveleges to your clients' sites. I have some words I'd 
love to add to them. Would that be ok? Now, we wouldn't want to have any 
censorship there would we?...

Back to my original post. Look, I just thought it was a pretty nifty thing to 
have to help filter out some "bad words". Yes there are people who have enough 
time on their hands to beat the system. Not everyone will devote the time 
needed to probe every angle though. 

If you don't need something like this that's fine, I just thought it was kinda 
interesting building it. If you DO like it let me know and it's yours. 

Thanks,
Will

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202105
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Built a dirty word checker, testing please?

2005-04-09 Thread Rick Faircloth
Now, that wouldn't be funn"y"...

Rick


-Original Message-
From: Claude Schneegans [mailto:[EMAIL PROTECTED]
Sent: Saturday, April 09, 2005 2:47 PM
To: CF-Talk
Subject: Re: Built a dirty word checker, testing please?


 >>dirty filthy slimy greasy sleazy scuzzy cruddy dungy grubby grungy
mucky muddy

Why don't filter all words ending with "y"? ;-)

--
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.




~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202104
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Built a dirty word checker, testing please?

2005-04-09 Thread Clark Slater
wanker

-Original Message-
From: Marlon Moyer [mailto:[EMAIL PROTECTED] 
Sent: Saturday, April 09, 2005 11:26 AM
To: CF-Talk
Subject: Re: Built a dirty word checker, testing please?


"Toss my salad" passed with flying colors! :)


On Apr 9, 2005 12:23 PM, Will Tomlinson <[EMAIL PROTECTED]> wrote:
> >Even with english it doesn't appear to work at all... every single 
> >one of these words passed: dirty filthy slimy greasy sleazy scuzzy 
> >cruddy dungy grubby grungy mucky muddy mung murky raunchy scummy 
> >skank sullied yucky
> >
> 
> And every one of those words would be allowed on my pages. let's stick 
> with the words you DON'T want allowed on your pages.  :)
> 
> Will
> 
> 



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202103
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Built a dirty word checker, testing please?

2005-04-09 Thread Rick Faircloth
This is OT, but "Sue" started it!  ;o)

So anytime, anywhere, anything anyone wants to
say is acceptable to youI guess it's ok for a child's
kindergarten teacher to use profanity of any type in
front of them when she teaches the little kids?

There's a huge difference between the academic study
of the use of profanity by people who resort to such
"gutter language" because they lack the ability to
express ideas forcefully through more appropriate *and*
more precise language in a normal discourse...

Any language you object to, Isaac?  "Nigger", "Fag",
"Queer", "Honky"...all those are forms of profanity or terms
of denigration...all acceptable to you and used in your normal
conversations?

Is yelling "Fire" in a crowded theatre acceptable to you?

Rick



-Original Message-
From: S.Isaac Dealey [mailto:[EMAIL PROTECTED]
Sent: Saturday, April 09, 2005 2:23 PM
To: CF-Talk
Subject: Re: Built a dirty word checker, testing please?


>>Even with english it doesn't appear to work at all...
>>every single one
>>of these words passed: dirty filthy slimy greasy sleazy
>>scuzzy cruddy
>>dungy grubby grungy mucky muddy mung murky raunchy scummy
>>skank
>>sullied yucky

> And every one of those words would be allowed on my pages.
> let's stick with the words you DON'T want allowed on your
> pages.  :)

Heh... Sorry, i couldn't resist the joke. :)

Partly because I object to censorship on principal... I think it's
evil.

It's also practically useless anyway -- you can prevent a person from
using a particular specific word -- maybe -- if you have a great REGEX
to prevent any variation of l33t, white space or other random
characters interjected into the middle of the word (and are willing to
put up with it causing an insane amount of overhead), but you can't
prevent people from expressing an idea which is more important than
the specific word. I can say "we fucked" or I can say "we engaged in
sexual intercourse" -- it's the same idea -- the fact that people
object to "we fucked" is ... well ... it's a stupid objection made by
stupid people.

Sorry if that offends you (since I may have just labelled you as a
stupid person), but then I have to go back to my original objection
that censorship is evil. Every idea should be examined, even when the
end result might be unpleasant, because, well... we need
unpleasantness (or at least an experiential understanding of it).
Otherwise we end up ignorant and doing things just because "that's the
way it's done", which imo isn't a good reason to do something.


s. isaac dealey 954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://macromedia.breezecentral.com/p49777853/
http://www.sys-con.com/author/?id=4806
http://www.fusiontap.com




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202102
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Best price for CFMX 6.1 or 7

2005-04-09 Thread Claude Schneegans
 >>but I am stuck on CF 5

CF 5 works pretty well. If ain't broken, don't fix it.

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202101
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Built a dirty word checker, testing please?

2005-04-09 Thread Claude Schneegans
 >>dirty filthy slimy greasy sleazy scuzzy cruddy dungy grubby grungy 
mucky muddy

Why don't filter all words ending with "y"? ;-)

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202100
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Built a dirty word checker, testing please?

2005-04-09 Thread Mark Drew
Of course, if your name is Richard ,it also shortens to Dick which I
presume will get censored!

I think moderating posts is better than censorship but its also a
usefull first pass

MD

On Apr 9, 2005 7:26 PM, Marlon Moyer <[EMAIL PROTECTED]> wrote:
> "Toss my salad" passed with flying colors! :)
> 
> 
> On Apr 9, 2005 12:23 PM, Will Tomlinson <[EMAIL PROTECTED]> wrote:
> > >Even with english it doesn't appear to work at all... every single one
> > >of these words passed: dirty filthy slimy greasy sleazy scuzzy cruddy
> > >dungy grubby grungy mucky muddy mung murky raunchy scummy skank
> > >sullied yucky
> > >
> >
> > And every one of those words would be allowed on my pages. let's stick with 
> > the words you DON'T want allowed on your pages.  :)
> >
> > Will
> >
> >
> 
> 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202099
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cfstat not working on cf7

2005-04-09 Thread Alex Hubner
Are you using "Server Configuration" or the "J2EE with JRun"? If you're using 
the second option, cfstat will not work (don't ask me why) and you'll need to 
use Jrun Metrics/logger, which is more complete but does not offer the easy of 
cfstat.

[]'s
Alex



On Sat, 9 Apr 2005 10:19:03 -0400, "exciteworks.com hosting" <[EMAIL 
PROTECTED]> escreveu:

> De: "exciteworks.com hosting" <[EMAIL PROTECTED]>
> Data: Sat, 9 Apr 2005 10:19:03 -0400
> Para: CF-Talk 
> Assunto: cfstat not working on cf7
> 
> I installed CFMX7 on linux (RHEL3) and it seems to be working fine,
> except for cfstat.
> 
> # /opt/coldfusionmx7/bin/cfstat 1
> Exception in thread "main" java.lang.NoClassDefFoundError:
> coldfusion/tools/CfstatMain
> 
> Has anyone seen this error?
> 
> Please help!
> 
> Thanks
> 
> 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202098
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Built a dirty word checker, testing please?

2005-04-09 Thread Marlon Moyer
"Toss my salad" passed with flying colors! :)


On Apr 9, 2005 12:23 PM, Will Tomlinson <[EMAIL PROTECTED]> wrote:
> >Even with english it doesn't appear to work at all... every single one
> >of these words passed: dirty filthy slimy greasy sleazy scuzzy cruddy
> >dungy grubby grungy mucky muddy mung murky raunchy scummy skank
> >sullied yucky
> >
> 
> And every one of those words would be allowed on my pages. let's stick with 
> the words you DON'T want allowed on your pages.  :)
> 
> Will
> 
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202097
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Built a dirty word checker, testing please?

2005-04-09 Thread S . Isaac Dealey
>>Even with english it doesn't appear to work at all...
>>every single one
>>of these words passed: dirty filthy slimy greasy sleazy
>>scuzzy cruddy
>>dungy grubby grungy mucky muddy mung murky raunchy scummy
>>skank
>>sullied yucky

> And every one of those words would be allowed on my pages.
> let's stick with the words you DON'T want allowed on your
> pages.  :)

Heh... Sorry, i couldn't resist the joke. :)

Partly because I object to censorship on principal... I think it's
evil.

It's also practically useless anyway -- you can prevent a person from
using a particular specific word -- maybe -- if you have a great REGEX
to prevent any variation of l33t, white space or other random
characters interjected into the middle of the word (and are willing to
put up with it causing an insane amount of overhead), but you can't
prevent people from expressing an idea which is more important than
the specific word. I can say "we fucked" or I can say "we engaged in
sexual intercourse" -- it's the same idea -- the fact that people
object to "we fucked" is ... well ... it's a stupid objection made by
stupid people.

Sorry if that offends you (since I may have just labelled you as a
stupid person), but then I have to go back to my original objection
that censorship is evil. Every idea should be examined, even when the
end result might be unpleasant, because, well... we need
unpleasantness (or at least an experiential understanding of it).
Otherwise we end up ignorant and doing things just because "that's the
way it's done", which imo isn't a good reason to do something.


s. isaac dealey 954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://macromedia.breezecentral.com/p49777853/
http://www.sys-con.com/author/?id=4806
http://www.fusiontap.com


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202096
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Built a dirty word checker, testing please?

2005-04-09 Thread Will Tomlinson
>Even with english it doesn't appear to work at all... every single one
>of these words passed: dirty filthy slimy greasy sleazy scuzzy cruddy
>dungy grubby grungy mucky muddy mung murky raunchy scummy skank
>sullied yucky
>


And every one of those words would be allowed on my pages. let's stick with the 
words you DON'T want allowed on your pages.  :)

Will

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202095
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Best price for CFMX 6.1 or 7

2005-04-09 Thread Al Musella, DPM
I tried Blue Dragon when it was first released and it didn't support a lot 
of the things I use.. but I will check again.
Al

At 10:13 AM 4/9/2005, you wrote:
>Is Blue Dragon an option?


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202094
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Built a dirty word checker, testing please?

2005-04-09 Thread S . Isaac Dealey
> Will The Game wrote:
>>
>> I've built a cool little tool I'm callin' nodirtywords.
>>
>> It's just what the name implies, code that check to make
>> sure a dirty word hasn't been submitted via form data.

> What are dirty words? Are those words that don't shower
> regularly?

>> For now I wanted to see if some of you could test out the
>> web service and give me some feedback/suggestions.

> It doesn't appear to understand l33t. Adding the
> occasional
> âççéñţ throws it off too and it doesn't understand
> Dutch.

Even with english it doesn't appear to work at all... every single one
of these words passed: dirty filthy slimy greasy sleazy scuzzy cruddy
dungy grubby grungy mucky muddy mung murky raunchy scummy skank
sullied yucky


s. isaac dealey 954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://macromedia.breezecentral.com/p49777853/
http://www.sys-con.com/author/?id=4806
http://www.fusiontap.com


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202093
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: SQL question

2005-04-09 Thread James Holmes
OK, so from what I can tell, the left join returns all Ads where there is no
corresponding uid in Members, yes?
 
(side note, try a foreign key with a cascading constraint to stop this from
happening again).
 
How about:
 
DELETE FROM Ads where uid NOT IN (SELECT uid 
FROM Members)
 
Try it as a select first to confirm it selects the right ones.

 
  _  

From: Johnny Le
Sent: Sat 9/04/2005 10:26
To: CF-Talk
Subject: SQL question



Hi, 

My database is a mess.  The programmer who did this didn't delete all the
user related records once the users deleted their accounts.  So I am trying
to clean up.  I need to delete all records from the result of this select
statement:

SELECT a.uid 
FROM Ads a LEFT JOIN Members m 
ON (a.uid=m.uid) 
WHERE m.uid IS NULL 

How do I do that?  I tried: 
DELETE FROM Ads where uid IN (SELECT a.uid 
FROM Ads a LEFT JOIN Members m 
ON (a.uid=m.uid) 
WHERE m.uid IS NULL) 

but that didn't work. 

Johnny 



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202092
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: SQL question

2005-04-09 Thread exciteworks.com hosting
ya, I saw that -- sorry I was skimming too fast.

On Apr 9, 2005 12:06 PM, Johnny Le <[EMAIL PROTECTED]> wrote:
> I am using a LEFT JOIN, not an INNER JOIN.  It would be equal if it is INNER 
> JOIN.
> 
> >oh ok, I saw a.uid=m.uid and thought that you were making them equal
> >in your query.
> >
> >
> >
> >On Apr 9, 2005 11:04 AM, Johnny Le <[EMAIL PROTECTED]> wrote:
> >>
> 
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202091
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: SQL question

2005-04-09 Thread Barney Boisvert
I believe you want

SELECT a.id, a.uid
FROM Ads a
WHERE NOT EXISTS (
  SELECT *
  FROM Members m
  WHERE m.uid = a.uid
)

That'll do a select of the rows you want to delete.  Once you've
confirmed it correct, change the first line to "DELETE" and it'll
delete the rows.

cheers,
barneyb

On Apr 9, 2005 7:26 AM, Johnny Le <[EMAIL PROTECTED]> wrote:
> Hi,
> 
> My database is a mess.  The programmer who did this didn't delete all the 
> user related records once the users deleted their accounts.  So I am trying 
> to clean up.  I need to delete all records from the result of this select 
> statement:
> 
> SELECT a.uid
> FROM Ads a LEFT JOIN Members m
> ON (a.uid=m.uid)
> WHERE m.uid IS NULL
> 
> How do I do that?  I tried:
> DELETE FROM Ads where uid IN (SELECT a.uid
> FROM Ads a LEFT JOIN Members m
> ON (a.uid=m.uid)
> WHERE m.uid IS NULL)
> 
> but that didn't work.
> 
> Johnny

-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202090
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: SQL question

2005-04-09 Thread Johnny Le
I am using a LEFT JOIN, not an INNER JOIN.  It would be equal if it is INNER 
JOIN.

>oh ok, I saw a.uid=m.uid and thought that you were making them equal
>in your query.
>
>
>
>On Apr 9, 2005 11:04 AM, Johnny Le <[EMAIL PROTECTED]> wrote:
>>

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202089
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: SQL question

2005-04-09 Thread exciteworks.com hosting
oh ok, I saw a.uid=m.uid and thought that you were making them equal
in your query.



On Apr 9, 2005 11:04 AM, Johnny Le <[EMAIL PROTECTED]> wrote:
> Uid in Ads is not null.  This is my attempt to get all the records that was 
> deleted off  Members but have not been deleted off Ads.  Note that I have 
> Members.uid is null, not Ads.uid is null.
> 
> Johnny
> 
> 
> >Why not just do this:
> >
> >DELETE
> >   FROM Ads
> > WHERE uid IS NULL
> >
> >
> >
> >
> >On Apr 9, 2005 10:26 AM, Johnny Le <[EMAIL PROTECTED]> wrote:
> >>
> 
> 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202088
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: low-end web hosting?

2005-04-09 Thread exciteworks.com hosting
true -- thanks for the good catch!

On Apr 9, 2005 11:06 AM, C. Hatton Humphrey <[EMAIL PROTECTED]> wrote:
> exciteworks.com hosting wrote:
> > http://exciteworks.com
> >
> > CFMX 7 starting at $12.95 -- windows and linux -- free SQL Server
> 
> Uhm, if you're offering 7 then you might want to update your website -
> 
> From the FAQ:
> 5) What version of Coldfusion do you run on your servers?
> We run the latest and greatest, which is currently ColdFusionMX 6.1, AKA
> 'RedSky'.
> 
> From the Windows Hosting page:
> Also included in every account is ColdFusion MX 6.1, unlimited
> subdomains, and much much more!
> 
> Hatton
> 
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202087
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: low-end web hosting?

2005-04-09 Thread C. Hatton Humphrey
exciteworks.com hosting wrote:
> http://exciteworks.com
> 
> CFMX 7 starting at $12.95 -- windows and linux -- free SQL Server

Uhm, if you're offering 7 then you might want to update your website -

 From the FAQ:
5) What version of Coldfusion do you run on your servers?
We run the latest and greatest, which is currently ColdFusionMX 6.1, AKA 
'RedSky'.

 From the Windows Hosting page:
Also included in every account is ColdFusion MX 6.1, unlimited 
subdomains, and much much more!

Hatton

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202086
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: SQL question

2005-04-09 Thread Johnny Le
Uid in Ads is not null.  This is my attempt to get all the records that was 
deleted off  Members but have not been deleted off Ads.  Note that I have 
Members.uid is null, not Ads.uid is null.

Johnny


>Why not just do this:
>
>DELETE 
>   FROM Ads 
> WHERE uid IS NULL
>
>
>
>
>On Apr 9, 2005 10:26 AM, Johnny Le <[EMAIL PROTECTED]> wrote:
>>

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202085
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: low-end web hosting?

2005-04-09 Thread exciteworks.com hosting
http://exciteworks.com

CFMX 7 starting at $12.95 -- windows and linux -- free SQL Server

On Apr 9, 2005 2:32 AM, dave <[EMAIL PROTECTED]> wrote:
> i'm just not good with words unless i'm drunk haha
> 
> " You're tip-top on my list too... much (I'm sure) to the dismay of
> some. ;)"
> hehe, thats too funny
> 
> 
> From: "Jared Rypka-Hauer - CMG, LLC" <[EMAIL PROTECTED]>
> Sent: Saturday, April 09, 2005 2:27 AM
> To: CF-Talk 
> Subject: Re: low-end web hosting?
> 
> Hey Dave...
> 
> On Apr 9, 2005 1:10 AM, dave  wrote:
> > I wasn't taking a pot shot at you at all jared (actually you are one of the 
> > ppl i like the most on here).
> 
> That's cool... it's late, I'm exhausted, and I've not had to deal with
> this much stress in years... so, sorry if I took something wrong.
> You're tip-top on my list too... much (I'm sure) to the dismay of
> some. ;)
> 
> > There are enough ppl on here that host with hms and havent heard a 
> > complaint yet, except for your friends, I get the same service as you get 
> > from your ppl, i'm on a first name basis with almost everyone there and I 
> > certainly wouldnt move to a host that only 1 person has been recommending 
> > and pay more than double, do you know what I mean. I'm not saying they are 
> > bad or anything but just that nobody knows except for you.
> 
> Eh, well when ya put it that way... ;)
> 
> I'm trying to help them expand... so I do my little bit of evangelism.
> 
> At least everyone has a solution the LIKE, which, in the end, is
> probably most important...
> 
> >
> > Granted, I don't have to pay for my sites but its the service that keeps me 
> > there :)
> > Being loyal is a good thing and I'm just doing the same, so don't think im 
> > pot shotting you.
> 
> No worries... it was the "change so you can afford your trip" comment
> that hit a sore spot, dude... and it seems I just took it wrong.
> 
> Anywho... it's the weekend! Yay...
> 
> Laterz!
> 
> --
> Continuum Media Group LLC
> Burnsville, MN 55337
> http://www.web-relevant.com
> http://www.web-relevant.com/blogs/cfobjective
> 
> 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202084
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: SQL question

2005-04-09 Thread exciteworks.com hosting
Why not just do this:

DELETE 
   FROM Ads 
 WHERE uid IS NULL




On Apr 9, 2005 10:26 AM, Johnny Le <[EMAIL PROTECTED]> wrote:
> Hi,
> 
> My database is a mess.  The programmer who did this didn't delete all the 
> user related records once the users deleted their accounts.  So I am trying 
> to clean up.  I need to delete all records from the result of this select 
> statement:
> 
> SELECT a.uid
> FROM Ads a LEFT JOIN Members m
> ON (a.uid=m.uid)
> WHERE m.uid IS NULL
> 
> How do I do that?  I tried:
> DELETE FROM Ads where uid IN (SELECT a.uid
> FROM Ads a LEFT JOIN Members m
> ON (a.uid=m.uid)
> WHERE m.uid IS NULL)
> 
> but that didn't work.
> 
> Johnny
> 
> 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202083
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Built a dirty word checker, testing please?

2005-04-09 Thread Andy Ousterhout
Dirty Dutchman, DIRTY!

-Original Message-
From: Jochem van Dieten
âççéñţ throws it off too and it doesn't understand Dutch.


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202082
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


SQL question

2005-04-09 Thread Johnny Le
Hi,

My database is a mess.  The programmer who did this didn't delete all the user 
related records once the users deleted their accounts.  So I am trying to clean 
up.  I need to delete all records from the result of this select statement:

SELECT a.uid 
FROM Ads a LEFT JOIN Members m 
ON (a.uid=m.uid) 
WHERE m.uid IS NULL

How do I do that?  I tried:
DELETE FROM Ads where uid IN (SELECT a.uid 
FROM Ads a LEFT JOIN Members m 
ON (a.uid=m.uid) 
WHERE m.uid IS NULL)

but that didn't work.

Johnny

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202081
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


cfstat not working on cf7

2005-04-09 Thread exciteworks.com hosting
I installed CFMX7 on linux (RHEL3) and it seems to be working fine,
except for cfstat.

# /opt/coldfusionmx7/bin/cfstat 1
Exception in thread "main" java.lang.NoClassDefFoundError:
coldfusion/tools/CfstatMain

Has anyone seen this error?

Please help!

Thanks

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202080
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Best price for CFMX 6.1 or 7

2005-04-09 Thread Will Tomlinson
Is Blue Dragon an option?

Will

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202079
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Best price for CFMX 6.1 or 7

2005-04-09 Thread Al Musella, DPM
In the old days, Allaire used to always donate CF (and studio) to my 
nonprofit brain cancer support organization.. but macromedia no longer 
does. They did donate dreamweaver and Flash, but  I am stuck on CF 5  :(.

Al Musella, DPM
President
Musella Foundation For Brain Tumor Research & Information, Inc
1100 Peninsula Blvd
Hewlett, NY 11557
888-295-4740

At 11:13 PM 4/8/2005, you wrote:
>How about a non-profit?  I don't think I've made a profit in many years


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202078
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Built a dirty word checker, testing please?

2005-04-09 Thread Will Tomlinson
I KNEW I could rely on you guys to come up with plenty of dirty words to add! 

Umm...I can't post them here but what I have already are just the usual 
suspects. If you come up with extra words that aren't being caught just email 
them to: [EMAIL PROTECTED]

Wow, I've never been so excited to receive profanity in my inbox!! :)

Thanks much,
Will

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202077
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Built a dirty word checker, testing please?

2005-04-09 Thread Jochem van Dieten
Will The Game wrote:
> 
> I've built a cool little tool I'm callin' nodirtywords.
> 
> It's just what the name implies, code that check to make sure a dirty word 
> hasn't been submitted via form data.

What are dirty words? Are those words that don't shower regularly?


> For now I wanted to see if some of you could test out the web service and 
> give me some feedback/suggestions.

It doesn't appear to understand l33t. Adding the occasional 
âççéñţ throws it off too and it doesn't understand Dutch.

Jochem

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202076
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Built a dirty word checker, testing please?

2005-04-09 Thread Paul Vernon
Technique seems OK, but the vocabulary is limited, you definitely need a
bigger dictionary of dirty words!

I got quite a few passes that I would have thought would have been fails and
I didn't have to think too hard to find them...

Paul


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202075
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Built a dirty word checker, testing please?

2005-04-09 Thread Will The Game
Hey,

I've built a cool little tool I'm callin' nodirtywords.

It's just what the name implies, code that check to make sure a dirty word 
hasn't been submitted via form data. Iset it up as a web service, but also 
built a custom tag AND just a plain ol' CFC. For now I wanted to see if some of 
you could test out the web service and give me some feedback/suggestions. I 
know WS isn't the way to implement this, but it's just plain fun to use it that 
way! :)

dave l., please don't test it out, my cf server probably can't handle it!  :)

Thanks to Jared for his help!

Test it out right here: http://www.wtomlinson.com/checkcussform.cfm

Here's some explanation and example code I've been using. 

Setup a text input named "text".  A structure named "finalresult" will return a 
variable named finalresult.theresult with a value of either "pass" or "fail". 

There's also a variable named finalresult.wordcount that returns the word count 
of text submitted. This could be used for a server side check that ensures text 
didn't exceed the max specified. Use the values to do whatever processing you'd 
like. 
 
 Example: Run an insert 
query with the clean text 





Then output it like this. 


Verdict on text is: #finalresult.theresult# - word 
count is: #finalresult.thewordcount#


Or just cfdump it. 

Thanks,
Will


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202074
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: simple URLs like www.domain.com/go/2345

2005-04-09 Thread Steven Brownlee
Here's some sample code

originalRequest = GetPageContext().getRequest().getRequestURL().toString();
parse_sitename = GetToken(Replace(originalRequest,"//",""), 2, "/?&=;"); 


SELECT * from SITE where lower(FILEPATH) = '#lcase(parse_sitename)#'


-Original Message-
From: olivier [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 08, 2005 9:13 PM
To: CF-Talk
Subject: simple URLs like www.domain.com/go/2345

Hello !


Basically, I want to be able to use a simple URL that would forward to a
more complex one.
Like when you communicate on paper, you don't want the user to have to type
www.domain.com/products/index.cfm?action=this&product=that&disptype=1234&pro
mo=1234
but you'd rather have them use something simple like www.domain.com/1234

At the same time, you can take the opportunity to log that hit in another
table to run statistics.

The question is: how do you handle with ColdFusion simple urls like that,
that do not have a .cfm filename in the URL ?




Thanks so much !!! 


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202073
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: simple URLs like www.domain.com/go/2345

2005-04-09 Thread Steven Brownlee
You configure your web server to create a custom 404 response header.  In
IIS, you go to the Custom Errors tab in the site properties and modify the
404 to point to a page on your site and perhaps add some custom URL
parameter to help you catch it.  Then on that page you parse the request
("CGI.HTTP_REQUEST" in CF5 or
"GetPageContext().getRequest().getRequestURL().toString()" in CF6/7) to grab
the token in the URL you're looking for.  You can then use that value to do
the lookup in your table.

-Original Message-
From: olivier [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 08, 2005 9:13 PM
To: CF-Talk
Subject: simple URLs like www.domain.com/go/2345

Hello !


Basically, I want to be able to use a simple URL that would forward to a
more complex one.
Like when you communicate on paper, you don't want the user to have to type
www.domain.com/products/index.cfm?action=this&product=that&disptype=1234&pro
mo=1234
but you'd rather have them use something simple like www.domain.com/1234

At the same time, you can take the opportunity to log that hit in another
table to run statistics.

The question is: how do you handle with ColdFusion simple urls like that,
that do not have a .cfm filename in the URL ?




Thanks so much !!! 


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202072
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: simple URLs like www.domain.com/go/2345

2005-04-09 Thread Bob Flynn
We did just this thing last year with the help of the good people on this list. 
If you contact me offline I'll be happy to share the code with you.

Bob

>Hello !
>
>
>Basically, I want to be able to use a simple URL that would forward to a 
>more complex one.
>Like when you communicate on paper, you don't want the user to have to type 
>www.domain.com/products/index.cfm?action=this&product=that&disptype=1234&promo=1234
> 
>but you'd rather have them use something simple like www.domain.com/1234
>
>At the same time, you can take the opportunity to log that hit in another 
>table to run statistics.
>
>The question is: how do you handle with ColdFusion simple urls like that, 
>that do not have a .cfm filename in the URL ?
>
>
>
>
>Thanks so much !!!

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202071
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Any news from MM on the broken IIS6 connector on stand alone installs???

2005-04-09 Thread Mike Kear
He didnt rain on my parade.  I've been saying there's a problem with
installing JRUN in some cases (like for example mine) since CFMX6.0
came out.   When CFMX7 came out , I had problems installing it and had
forgotten that I was unable to install JRUN earlier.  I got CFMX6.0 
going in the end by installing on a completely new hard drive with
nothing but a stock standard WinXPPro with no tweaks at all.  And I
got CFMX7 going by not having JRUN at all.  Running it on the built in
web server now.

So I still say there's a problem IN SOME CASES with installing the JRUN.


Cheers
Mike Kear
Windsor, NSW, Australia
Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month


On Apr 8, 2005 6:49 AM, Jared Rypka-Hauer - CMG, LLC <[EMAIL PROTECTED]> wrote:
> Adam, you beastly fellow...
> 
> Raining on Mikes parade like that. ;)
> 
> J
> 
> On Apr 7, 2005 10:17 AM, Adrocknaphobia <[EMAIL PROTECTED]> wrote:
> > On Apr 4, 2005 10:05 PM, Mike Kear <[EMAIL PROTECTED]> wrote:
> > > And all those people said it was MY fault.   They implied I was
> > > deficient in not being able to make it run.  '... I've installed it
> > > dozens of times and it worked ok for me ... " they said, the implied
> > > criticism being that I must be somehow stupid or have pennypinched on
> > > my hardware if i couldn't install it myself.
> >
> > "We have identified the issue and it occurs only when using the CFMX 6.1
> > updater (the bug is not in CFMX 7) and only when using the JRun connector."
> >
> > CFMX6.1 _not_ CFMX7.
> >
> > -Adam
>

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202070
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: simple URLs like www.domain.com/go/2345

2005-04-09 Thread James Holmes
One way is to use a 404 page that examines CGI.REQUEST_URI and matches the
links to those in a table somewhere (file, DB, whatever).
 
Another is Spikes FU servlet.
 
http://www.spike.org.uk/projects/fuservlet/
 

  _  

From: olivier
Sent: Sat 9/04/2005 9:13
To: CF-Talk
Subject: simple URLs like www.domain.com/go/2345



Hello ! 


Basically, I want to be able to use a simple URL that would forward to a 
more complex one. 
Like when you communicate on paper, you don't want the user to have to type 
www.domain.com/products/index.cfm?action=this&product=that&disptype=1234&pro
mo=1234 
but you'd rather have them use something simple like www.domain.com/1234 

At the same time, you can take the opportunity to log that hit in another 
table to run statistics. 

The question is: how do you handle with ColdFusion simple urls like that, 
that do not have a .cfm filename in the URL ? 




Thanks so much !!! 





~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202069
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54