Re: Can't open cfadmin after installing CFBuilder Beta 2

2011-04-30 Thread Russ Michaels

If your other HOSTS entries are working fine, then it must just be a config
issue with the default website because everything points to  127.0.0.1 in
your hosts file I presume.
check the host header settings for your default website, it should be set to
respond on all unassigned with no host header on port 80.
If it is still set to this, then the default website may have simply become
corrupt, which does happen sometimes.
In which case you can simply delete the default website and create a new one
with the same config and see if that works.
Don't forget to create your CFIDE virtual directory for CF.


--

Russ Michaels

www.bluethunderinternet.com  : Business hosting services  solutions
www.cfmldeveloper.com: ColdFusion developer community
www.michaels.me.uk   : my blog
www.cfsearch.com : ColdFusion search engine
**
*skype me* : russmichaels


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344081
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Synonym Dictionary

2011-04-30 Thread Richard White

Hi,

We use ColdFusion and MySQL (innodb) in our applications and when users search 
for data  we want it to also find records containing related words / synonyms. 

What is the best way to achieve this?

Thanks 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344082
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Synonym Dictionary

2011-04-30 Thread Phillip Vector

One way (probably isn't the best, but it's workable depending on your
site traffic) is to take and create a relationship table. I.E. Cat is
related to Feline and Cat is related to Tiger, etc.

The issue is.. What do you mean by Related words? How broad of a
scope are you taking about? Is Cat related to Dog (both animals) or is
Cat related to Cities (housecats)?

You need to define your scope more clearly to even see if this is feasible.

On Sat, Apr 30, 2011 at 8:26 AM, Richard White rich...@j7is.co.uk wrote:

 Hi,

 We use ColdFusion and MySQL (innodb) in our applications and when users 
 search for data  we want it to also find records containing related words / 
 synonyms.

 What is the best way to achieve this?

 Thanks

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344083
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Can't open cfadmin after installing CFBuilder Beta 2

2011-04-30 Thread Jenny Gavin-Wear

Rick and I worked through this problem last night.

We got rid of the IPV6 and that got the localhost pinging correctly, then we
encountered problems with IIS 7.  If you have IPV6 installed a ping to local
host will reply with :::1 instead of the usual 127.0.0.1 address.

Rick had been advised to use a 172. series IP address to his config, even
though his LAN is on 192.168.x.  He'd also been told to add lines to the
host file for each web site he works on pointing to the 172 IP.

Rick is in the process of getting rid of the 172. IP and reconfiguring IIS7.
Hopefully that will fix the problem.

If you ever need to set up a line in the hosts file to point to a site in
development on your own PC, all you will ever need to point at is the
127.0.0.1 local (loopback) IP.  Naturally, you'll be the only one able to
access the site.  If you want more people to be able to access the site
either set up a new dns record for it within your domain pointing to the
fully qualified IP address, or if you just want people on your LAN to see
it, point it to your servers local IP address.

There are three IP address ranges reserved for LANs.  Class A 10.x.x.x,
Class B 172.16.x.x and Class C 192.168.1.x.  The only difference in these
classes is the maximum number of IP's they each make available.  Typically,
for example, Class A is only used by large corporates using a large VPN.

Jenny
No virus found in this outgoing message.
Checked by AVG - www.avg.com
Version: 9.0.894 / Virus Database: 271.1.1/3605 - Release Date: 04/29/11
18:08:00



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344084
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Synonym Dictionary

2011-04-30 Thread Dave Watts

 We use ColdFusion and MySQL (innodb) in our applications and when users 
 search for data  we want it to also find records containing related words
 / synonyms.

 What is the best way to achieve this?

A good enterprise search solution can do this for you. For example,
the Google Search Appliance can do this automatically. I wouldn't be
surprised if Solr/Lucene has similar functionality.

If you're strictly doing this through database queries, it's up to you
to manage a synonym list. This isn't something that relational
databases do especially well, either. But if your synonym list is
fairly small, it might do it sufficiently well. You could conceivably
use a full-text indexing solution against your synonym list, then use
the returned record to filter your database search.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344085
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Synonym Dictionary

2011-04-30 Thread Jenny Gavin-Wear

I'm not up on MySQL, but in MS SQL I use the FULLTEXT functionality.

I see this is also available on MySQL:

http://dev.mysql.com/doc/refman/5.0/en/fulltext-search.html

-Original Message-
From: Richard White [mailto:rich...@j7is.co.uk]
Sent: 30 April 2011 16:27
To: cf-talk
Subject: Synonym Dictionary



Hi,

We use ColdFusion and MySQL (innodb) in our applications and when users
search for data  we want it to also find records containing related words /
synonyms.

What is the best way to achieve this?

Thanks



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344086
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Synonym Dictionary

2011-04-30 Thread Richard White

thanks for your reply... yes your example is exactly what we want, except as 
you have indicated the scope is unfortunately large!

we basically need our application linked to some form of existing thesaurus 
that we can query for synonyms, and then in our code make sure it also searches 
for those words.

Basically, our software is used for medical data, and we are finding users 
typing words such as 'mother' when another user entered the data as 'maternal', 
therefore the data is not being found.

This happens on various different scenarios and is why we are thinking rather 
than attempting to build our own, we could possibly utilize an existing synonym 
dictionary plug-in ... if one exists!


thanks for any pointers




One way (probably isn't the best, but it's workable depending on your
site traffic) is to take and create a relationship table. I.E. Cat is
related to Feline and Cat is related to Tiger, etc.

The issue is.. What do you mean by Related words? How broad of a
scope are you taking about? Is Cat related to Dog (both animals) or is
Cat related to Cities (housecats)?

You need to define your scope more clearly to even see if this is feasible.


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344087
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Synonym Dictionary

2011-04-30 Thread Stefan Richter

To create a catalog or do the synonym lookup on the fly you could use Wolfram:
http://www.wolframalpha.com/input/?i=synonym+for+bike

They have a (commercial) API.
The difference with Wolfram as opposed to a Google search is that Wolfram will 
compute and return the results directly to you rather than provide links to 
sites with potential results.

Stefan



On 30 Apr 2011, at 16:26, Richard White wrote:

 
 Hi,
 
 We use ColdFusion and MySQL (innodb) in our applications and when users 
 search for data  we want it to also find records containing related words / 
 synonyms. 
 
 What is the best way to achieve this?
 
 Thanks 
 


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344088
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Synonym Dictionary

2011-04-30 Thread Richard White

thanks for your reply, unfortunately fulltext is only available in MyISAM 
engine and not InnoDB which our applications uses.

 

I'm not up on MySQL, but in MS SQL I use the FULLTEXT functionality.

I see this is also available on MySQL:

http://dev.mysql.com/doc/refman/5.0/en/fulltext-search.html

Hi,

We use ColdFusion and MySQL (innodb) in our applications and when users
search for data  we want it to also find records containing related words /
synonyms.

What is the best way to achieve this?

Thanks 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344089
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Synonym Dictionary

2011-04-30 Thread Stefan Richter

Wolfram sounds like a good fit in that case.

I can refer you to the right people if you like. Their pricing is, I found, 
reasonable.

S



On 30 Apr 2011, at 16:41, Richard White wrote:

 
 thanks for your reply... yes your example is exactly what we want, except as 
 you have indicated the scope is unfortunately large!
 
 we basically need our application linked to some form of existing thesaurus 
 that we can query for synonyms, and then in our code make sure it also 
 searches for those words.
 
 Basically, our software is used for medical data, and we are finding users 
 typing words such as 'mother' when another user entered the data as 
 'maternal', therefore the data is not being found.
 
 This happens on various different scenarios and is why we are thinking rather 
 than attempting to build our own, we could possibly utilize an existing 
 synonym dictionary plug-in ... if one exists!
 
 
 thanks for any pointers
 


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344090
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Synonym Dictionary

2011-04-30 Thread Richard White

hi dave, had a look at Google Search Appliance and thought it was only for 
searching our web pages, do you think i could possibly utilize it in some way 
to get the synonyms for my database searches?

thanks



  We use ColdFusion and MySQL (innodb) in our applications and when 
 users search for data  we want it to also find records containing 
 related words
  / synonyms.
 
  What is the best way to achieve this?
 
 A good enterprise search solution can do this for you. For example,
 the Google Search Appliance can do this automatically. I wouldn't be
 surprised if Solr/Lucene has similar functionality.
 
 If you're strictly doing this through database queries, it's up to 
 you
 to manage a synonym list. This isn't something that relational
 databases do especially well, either. But if your synonym list is
 fairly small, it might do it sufficiently well. You could conceivably
 use a full-text indexing solution against your synonym list, then use
 the returned record to filter your database search.
 
 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 http://training.figleaf.com/
 
 Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
 GSA Schedule, and provides the highest caliber vendor-authorized
 instruction at our training centers, online, or 
onsite

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344091
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Synonym Dictionary

2011-04-30 Thread Richard White

wow, had a quick look and instantly impressed. yes would appreciate the 
referral, thanks

 


Wolfram sounds like a good fit in that case.

I can refer you to the right people if you like. Their pricing is, I found, 
reasonable.

S



On 30 Apr 2011, at 16:41, Richard White wrote: 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344092
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Can't open cfadmin after installing CFBuilder Beta 2

2011-04-30 Thread Rick Faircloth

Many thanks, Jenny, for the help last night!

So, far, however, nothing has solved the problem.
I removed all 172... IP's, but that didn't help get
localhost working.  I worked some more with permissions,
since some of the error messages related to that, but couldn't
come up with any access permissions that solved the locahost
issue, either.

At this point, I'm going to follow Russ Michael's suggestion
and delete the default web site and create a new one and see
if the current one is corrupt.

If you read this, Russ, any caveat's for this process of
deleting the default web site?  (Totally inexperience with this
action...haven't ever had to do this)



-Original Message-
From: Jenny Gavin-Wear [mailto:jenn...@fasttrackonline.co.uk] 
Sent: Saturday, April 30, 2011 11:44 AM
To: cf-talk
Subject: RE: Can't open cfadmin after installing CFBuilder Beta 2


Rick and I worked through this problem last night.

We got rid of the IPV6 and that got the localhost pinging correctly, then we
encountered problems with IIS 7.  If you have IPV6 installed a ping to local
host will reply with :::1 instead of the usual 127.0.0.1 address.

Rick had been advised to use a 172. series IP address to his config, even
though his LAN is on 192.168.x.  He'd also been told to add lines to the
host file for each web site he works on pointing to the 172 IP.

Rick is in the process of getting rid of the 172. IP and reconfiguring IIS7.
Hopefully that will fix the problem.

If you ever need to set up a line in the hosts file to point to a site in
development on your own PC, all you will ever need to point at is the
127.0.0.1 local (loopback) IP.  Naturally, you'll be the only one able to
access the site.  If you want more people to be able to access the site
either set up a new dns record for it within your domain pointing to the
fully qualified IP address, or if you just want people on your LAN to see
it, point it to your servers local IP address.

There are three IP address ranges reserved for LANs.  Class A 10.x.x.x,
Class B 172.16.x.x and Class C 192.168.1.x.  The only difference in these
classes is the maximum number of IP's they each make available.  Typically,
for example, Class A is only used by large corporates using a large VPN.

Jenny
No virus found in this outgoing message.
Checked by AVG - www.avg.com
Version: 9.0.894 / Virus Database: 271.1.1/3605 - Release Date: 04/29/11
18:08:00





~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344093
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Can't open cfadmin after installing CFBuilder Beta 2

2011-04-30 Thread Rick Faircloth

Nothing's working... not changing permissions, not
deleting and re-creating the default web site... nothing.

At this point, I'm ready to flush the entire system and
reinstall from scratch.  I can have that done in a day
and be back to work.

Any last ditch suggestions before I nuke this system?


-Original Message-
From: Rick Faircloth [mailto:r...@whitestonemedia.com] 
Sent: Saturday, April 30, 2011 1:42 PM
To: cf-talk
Subject: RE: Can't open cfadmin after installing CFBuilder Beta 2


Many thanks, Jenny, for the help last night!

So, far, however, nothing has solved the problem.
I removed all 172... IP's, but that didn't help get
localhost working.  I worked some more with permissions,
since some of the error messages related to that, but couldn't
come up with any access permissions that solved the locahost
issue, either.

At this point, I'm going to follow Russ Michael's suggestion
and delete the default web site and create a new one and see
if the current one is corrupt.

If you read this, Russ, any caveat's for this process of
deleting the default web site?  (Totally inexperience with this
action...haven't ever had to do this)



-Original Message-
From: Jenny Gavin-Wear [mailto:jenn...@fasttrackonline.co.uk] 
Sent: Saturday, April 30, 2011 11:44 AM
To: cf-talk
Subject: RE: Can't open cfadmin after installing CFBuilder Beta 2


Rick and I worked through this problem last night.

We got rid of the IPV6 and that got the localhost pinging correctly, then we
encountered problems with IIS 7.  If you have IPV6 installed a ping to local
host will reply with :::1 instead of the usual 127.0.0.1 address.

Rick had been advised to use a 172. series IP address to his config, even
though his LAN is on 192.168.x.  He'd also been told to add lines to the
host file for each web site he works on pointing to the 172 IP.

Rick is in the process of getting rid of the 172. IP and reconfiguring IIS7.
Hopefully that will fix the problem.

If you ever need to set up a line in the hosts file to point to a site in
development on your own PC, all you will ever need to point at is the
127.0.0.1 local (loopback) IP.  Naturally, you'll be the only one able to
access the site.  If you want more people to be able to access the site
either set up a new dns record for it within your domain pointing to the
fully qualified IP address, or if you just want people on your LAN to see
it, point it to your servers local IP address.

There are three IP address ranges reserved for LANs.  Class A 10.x.x.x,
Class B 172.16.x.x and Class C 192.168.1.x.  The only difference in these
classes is the maximum number of IP's they each make available.  Typically,
for example, Class A is only used by large corporates using a large VPN.

Jenny
No virus found in this outgoing message.
Checked by AVG - www.avg.com
Version: 9.0.894 / Virus Database: 271.1.1/3605 - Release Date: 04/29/11
18:08:00







~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344094
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Can't open cfadmin after installing CFBuilder Beta 2

2011-04-30 Thread Russ Michaels

Rick, just reinstalling IIS is a quick and painless process, so I would try
that before nuking your system.
If you like I can do a remote desktop session with you and have a quick
look.


On Sat, Apr 30, 2011 at 7:02 PM, Rick Faircloth r...@whitestonemedia.comwrote:


 Nothing's working... not changing permissions, not
 deleting and re-creating the default web site... nothing.

 At this point, I'm ready to flush the entire system and
 reinstall from scratch.  I can have that done in a day
 and be back to work.

 Any last ditch suggestions before I nuke this system?


 -Original Message-
 From: Rick Faircloth [mailto:r...@whitestonemedia.com]
 Sent: Saturday, April 30, 2011 1:42 PM
 To: cf-talk
 Subject: RE: Can't open cfadmin after installing CFBuilder Beta 2


 Many thanks, Jenny, for the help last night!

 So, far, however, nothing has solved the problem.
 I removed all 172... IP's, but that didn't help get
 localhost working.  I worked some more with permissions,
 since some of the error messages related to that, but couldn't
 come up with any access permissions that solved the locahost
 issue, either.

 At this point, I'm going to follow Russ Michael's suggestion
 and delete the default web site and create a new one and see
 if the current one is corrupt.

 If you read this, Russ, any caveat's for this process of
 deleting the default web site?  (Totally inexperience with this
 action...haven't ever had to do this)



 -Original Message-
 From: Jenny Gavin-Wear [mailto:jenn...@fasttrackonline.co.uk]
 Sent: Saturday, April 30, 2011 11:44 AM
 To: cf-talk
 Subject: RE: Can't open cfadmin after installing CFBuilder Beta 2


 Rick and I worked through this problem last night.

 We got rid of the IPV6 and that got the localhost pinging correctly, then
 we
 encountered problems with IIS 7.  If you have IPV6 installed a ping to
 local
 host will reply with :::1 instead of the usual 127.0.0.1 address.

 Rick had been advised to use a 172. series IP address to his config, even
 though his LAN is on 192.168.x.  He'd also been told to add lines to the
 host file for each web site he works on pointing to the 172 IP.

 Rick is in the process of getting rid of the 172. IP and reconfiguring
 IIS7.
 Hopefully that will fix the problem.

 If you ever need to set up a line in the hosts file to point to a site in
 development on your own PC, all you will ever need to point at is the
 127.0.0.1 local (loopback) IP.  Naturally, you'll be the only one able to
 access the site.  If you want more people to be able to access the site
 either set up a new dns record for it within your domain pointing to the
 fully qualified IP address, or if you just want people on your LAN to see
 it, point it to your servers local IP address.

 There are three IP address ranges reserved for LANs.  Class A 10.x.x.x,
 Class B 172.16.x.x and Class C 192.168.1.x.  The only difference in these
 classes is the maximum number of IP's they each make available.  Typically,
 for example, Class A is only used by large corporates using a large VPN.

 Jenny
 No virus found in this outgoing message.
 Checked by AVG - www.avg.com
 Version: 9.0.894 / Virus Database: 271.1.1/3605 - Release Date: 04/29/11
 18:08:00







 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344095
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Synonym Dictionary

2011-04-30 Thread andy matthews

You could look into using SOUNDEX in MySQL.

-Original Message-
From: Richard White [mailto:rich...@j7is.co.uk] 
Sent: Saturday, April 30, 2011 10:27 AM
To: cf-talk
Subject: Synonym Dictionary


Hi,

We use ColdFusion and MySQL (innodb) in our applications and when users
search for data  we want it to also find records containing related words /
synonyms. 

What is the best way to achieve this?

Thanks 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344096
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Can't open cfadmin after installing CFBuilder Beta 2

2011-04-30 Thread Jenny Gavin-Wear

I agree with Russ, reinstalling IIS seems the best way forward.

-Original Message-
From: Russ Michaels [mailto:r...@michaels.me.uk]
Sent: 30 April 2011 19:10
To: cf-talk
Subject: Re: Can't open cfadmin after installing CFBuilder Beta 2



Rick, just reinstalling IIS is a quick and painless process, so I would try
that before nuking your system.
If you like I can do a remote desktop session with you and have a quick
look.


On Sat, Apr 30, 2011 at 7:02 PM, Rick Faircloth
r...@whitestonemedia.comwrote:


 Nothing's working... not changing permissions, not
 deleting and re-creating the default web site... nothing.

 At this point, I'm ready to flush the entire system and
 reinstall from scratch.  I can have that done in a day
 and be back to work.

 Any last ditch suggestions before I nuke this system?


No virus found in this outgoing message.
Checked by AVG - www.avg.com
Version: 9.0.894 / Virus Database: 271.1.1/3605 - Release Date: 04/29/11
18:08:00



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344097
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Synonym Dictionary

2011-04-30 Thread Russ Michaels

Richard,

If MySQL cannot do it natively then you have this functionality also built
right into CF with SOLR.
Check this

http://bloggeraroundthecorner.blogspot.com/2009/08/searching-for-synonyms.html

http://bloggeraroundthecorner.blogspot.com/2009/08/searching-for-synonyms.html
Russ

On Sat, Apr 30, 2011 at 7:42 PM, andy matthews li...@commadelimited.comwrote:


 You could look into using SOUNDEX in MySQL.

 -Original Message-
 From: Richard White [mailto:rich...@j7is.co.uk]
 Sent: Saturday, April 30, 2011 10:27 AM
 To: cf-talk
 Subject: Synonym Dictionary


 Hi,

 We use ColdFusion and MySQL (innodb) in our applications and when users
 search for data  we want it to also find records containing related words /
 synonyms.

 What is the best way to achieve this?

 Thanks



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344098
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CF to PHP

2011-04-30 Thread Matt Quackenbush

Unfortunately I am required to convert a (very) short CF script to PHP.  It
took about 90 seconds to write in CF, so I would assume that if you know PHP
it is less than a 10-minute job to convert.  Please ping me off-list if you
are able and willing to help me out with this.  If you are going to be at
cf.Objective() 2011, then I will gladly buy you a beer or ten!  :-)


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344099
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Can't open cfadmin after installing CFBuilder Beta 2

2011-04-30 Thread Rick Faircloth

I reinstalled IIS, but now that I have, I can't get the appropriate
handlers installed in IIS7 for CF so, I've uninstalled CF
and am reinstalling.  Seems like things had to be done in this order
to get the mappings installed correctly.  Should know in about 10 min!


-Original Message-
From: Jenny Gavin-Wear [mailto:jenn...@fasttrackonline.co.uk] 
Sent: Saturday, April 30, 2011 5:46 PM
To: cf-talk
Subject: RE: Can't open cfadmin after installing CFBuilder Beta 2


I agree with Russ, reinstalling IIS seems the best way forward.

-Original Message-
From: Russ Michaels [mailto:r...@michaels.me.uk]
Sent: 30 April 2011 19:10
To: cf-talk
Subject: Re: Can't open cfadmin after installing CFBuilder Beta 2



Rick, just reinstalling IIS is a quick and painless process, so I would try
that before nuking your system.
If you like I can do a remote desktop session with you and have a quick
look.


On Sat, Apr 30, 2011 at 7:02 PM, Rick Faircloth
r...@whitestonemedia.comwrote:


 Nothing's working... not changing permissions, not
 deleting and re-creating the default web site... nothing.

 At this point, I'm ready to flush the entire system and
 reinstall from scratch.  I can have that done in a day
 and be back to work.

 Any last ditch suggestions before I nuke this system?


No virus found in this outgoing message.
Checked by AVG - www.avg.com
Version: 9.0.894 / Virus Database: 271.1.1/3605 - Release Date: 04/29/11
18:08:00





~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344100
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Can't open cfadmin after installing CFBuilder Beta 2

2011-04-30 Thread Rick Faircloth

Also, I was able to open an html file with localhost after
reinstalling IIS7, so I guess I'm on the right track.  Still
can't believe Adobe hasn't brought the mapping of file types
up-to-date and we still have to rely on IIS6 compatibility.

-Original Message-
From: Jenny Gavin-Wear [mailto:jenn...@fasttrackonline.co.uk] 
Sent: Saturday, April 30, 2011 5:46 PM
To: cf-talk
Subject: RE: Can't open cfadmin after installing CFBuilder Beta 2


I agree with Russ, reinstalling IIS seems the best way forward.

-Original Message-
From: Russ Michaels [mailto:r...@michaels.me.uk]
Sent: 30 April 2011 19:10
To: cf-talk
Subject: Re: Can't open cfadmin after installing CFBuilder Beta 2



Rick, just reinstalling IIS is a quick and painless process, so I would try
that before nuking your system.
If you like I can do a remote desktop session with you and have a quick
look.


On Sat, Apr 30, 2011 at 7:02 PM, Rick Faircloth
r...@whitestonemedia.comwrote:


 Nothing's working... not changing permissions, not
 deleting and re-creating the default web site... nothing.

 At this point, I'm ready to flush the entire system and
 reinstall from scratch.  I can have that done in a day
 and be back to work.

 Any last ditch suggestions before I nuke this system?


No virus found in this outgoing message.
Checked by AVG - www.avg.com
Version: 9.0.894 / Virus Database: 271.1.1/3605 - Release Date: 04/29/11
18:08:00





~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344101
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Can't open cfadmin after installing CFBuilder Beta 2

2011-04-30 Thread Russ Michaels

They have, IIS7 native support is in the 9.0.1 update.


On Sun, May 1, 2011 at 2:20 AM, Rick Faircloth r...@whitestonemedia.comwrote:


 Also, I was able to open an html file with localhost after
 reinstalling IIS7, so I guess I'm on the right track.  Still
 can't believe Adobe hasn't brought the mapping of file types
 up-to-date and we still have to rely on IIS6 compatibility.

 -Original Message-
 From: Jenny Gavin-Wear [mailto:jenn...@fasttrackonline.co.uk]
 Sent: Saturday, April 30, 2011 5:46 PM
 To: cf-talk
 Subject: RE: Can't open cfadmin after installing CFBuilder Beta 2


 I agree with Russ, reinstalling IIS seems the best way forward.

 -Original Message-
 From: Russ Michaels [mailto:r...@michaels.me.uk]
 Sent: 30 April 2011 19:10
 To: cf-talk
 Subject: Re: Can't open cfadmin after installing CFBuilder Beta 2



 Rick, just reinstalling IIS is a quick and painless process, so I would try
 that before nuking your system.
 If you like I can do a remote desktop session with you and have a quick
 look.


 On Sat, Apr 30, 2011 at 7:02 PM, Rick Faircloth
 r...@whitestonemedia.comwrote:

 
  Nothing's working... not changing permissions, not
  deleting and re-creating the default web site... nothing.
 
  At this point, I'm ready to flush the entire system and
  reinstall from scratch.  I can have that done in a day
  and be back to work.
 
  Any last ditch suggestions before I nuke this system?
 

 No virus found in this outgoing message.
 Checked by AVG - www.avg.com
 Version: 9.0.894 / Virus Database: 271.1.1/3605 - Release Date: 04/29/11
 18:08:00





 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344102
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Can't open cfadmin after installing CFBuilder Beta 2

2011-04-30 Thread Rick Faircloth

I wonder if the download I'm getting is 9.0.1?
One would think so...

-Original Message-
From: Russ Michaels [mailto:r...@michaels.me.uk] 
Sent: Saturday, April 30, 2011 9:24 PM
To: cf-talk
Subject: Re: Can't open cfadmin after installing CFBuilder Beta 2


They have, IIS7 native support is in the 9.0.1 update.


On Sun, May 1, 2011 at 2:20 AM, Rick Faircloth
r...@whitestonemedia.comwrote:


 Also, I was able to open an html file with localhost after
 reinstalling IIS7, so I guess I'm on the right track.  Still
 can't believe Adobe hasn't brought the mapping of file types
 up-to-date and we still have to rely on IIS6 compatibility.

 -Original Message-
 From: Jenny Gavin-Wear [mailto:jenn...@fasttrackonline.co.uk]
 Sent: Saturday, April 30, 2011 5:46 PM
 To: cf-talk
 Subject: RE: Can't open cfadmin after installing CFBuilder Beta 2


 I agree with Russ, reinstalling IIS seems the best way forward.

 -Original Message-
 From: Russ Michaels [mailto:r...@michaels.me.uk]
 Sent: 30 April 2011 19:10
 To: cf-talk
 Subject: Re: Can't open cfadmin after installing CFBuilder Beta 2



 Rick, just reinstalling IIS is a quick and painless process, so I would
try
 that before nuking your system.
 If you like I can do a remote desktop session with you and have a quick
 look.


 On Sat, Apr 30, 2011 at 7:02 PM, Rick Faircloth
 r...@whitestonemedia.comwrote:

 
  Nothing's working... not changing permissions, not
  deleting and re-creating the default web site... nothing.
 
  At this point, I'm ready to flush the entire system and
  reinstall from scratch.  I can have that done in a day
  and be back to work.
 
  Any last ditch suggestions before I nuke this system?
 

 No virus found in this outgoing message.
 Checked by AVG - www.avg.com
 Version: 9.0.894 / Virus Database: 271.1.1/3605 - Release Date: 04/29/11
 18:08:00





 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344103
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Can't open cfadmin after installing CFBuilder Beta 2

2011-04-30 Thread Rick Faircloth

Well, good news!  I've got the Configuration Wizard
on 127.0.0.1!  Seems as if the Default Website must
have been corrupted, but even deleting and re-creating
it didn't help.

-Original Message-
From: Russ Michaels [mailto:r...@michaels.me.uk] 
Sent: Saturday, April 30, 2011 9:24 PM
To: cf-talk
Subject: Re: Can't open cfadmin after installing CFBuilder Beta 2


They have, IIS7 native support is in the 9.0.1 update.


On Sun, May 1, 2011 at 2:20 AM, Rick Faircloth
r...@whitestonemedia.comwrote:


 Also, I was able to open an html file with localhost after
 reinstalling IIS7, so I guess I'm on the right track.  Still
 can't believe Adobe hasn't brought the mapping of file types
 up-to-date and we still have to rely on IIS6 compatibility.

 -Original Message-
 From: Jenny Gavin-Wear [mailto:jenn...@fasttrackonline.co.uk]
 Sent: Saturday, April 30, 2011 5:46 PM
 To: cf-talk
 Subject: RE: Can't open cfadmin after installing CFBuilder Beta 2


 I agree with Russ, reinstalling IIS seems the best way forward.

 -Original Message-
 From: Russ Michaels [mailto:r...@michaels.me.uk]
 Sent: 30 April 2011 19:10
 To: cf-talk
 Subject: Re: Can't open cfadmin after installing CFBuilder Beta 2



 Rick, just reinstalling IIS is a quick and painless process, so I would
try
 that before nuking your system.
 If you like I can do a remote desktop session with you and have a quick
 look.


 On Sat, Apr 30, 2011 at 7:02 PM, Rick Faircloth
 r...@whitestonemedia.comwrote:

 
  Nothing's working... not changing permissions, not
  deleting and re-creating the default web site... nothing.
 
  At this point, I'm ready to flush the entire system and
  reinstall from scratch.  I can have that done in a day
  and be back to work.
 
  Any last ditch suggestions before I nuke this system?
 

 No virus found in this outgoing message.
 Checked by AVG - www.avg.com
 Version: 9.0.894 / Virus Database: 271.1.1/3605 - Release Date: 04/29/11
 18:08:00





 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344104
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Can't open cfadmin after installing CFBuilder Beta 2

2011-04-30 Thread Matt Quackenbush

For some reason, the download is 9.0.  You still have to download the 9.0.1
updater and run it.  Be sure to grab the hot fixes, as well.


On Sat, Apr 30, 2011 at 8:36 PM, Rick Faircloth r...@whitestonemedia.comwrote:


 I wonder if the download I'm getting is 9.0.1?
 One would think so...

 -Original Message-
 From: Russ Michaels [mailto:r...@michaels.me.uk]
 Sent: Saturday, April 30, 2011 9:24 PM
 To: cf-talk
 Subject: Re: Can't open cfadmin after installing CFBuilder Beta 2


 They have, IIS7 native support is in the 9.0.1 update.


 On Sun, May 1, 2011 at 2:20 AM, Rick Faircloth
 r...@whitestonemedia.comwrote:

 
  Also, I was able to open an html file with localhost after
  reinstalling IIS7, so I guess I'm on the right track.  Still
  can't believe Adobe hasn't brought the mapping of file types
  up-to-date and we still have to rely on IIS6 compatibility.
 
  -Original Message-
  From: Jenny Gavin-Wear [mailto:jenn...@fasttrackonline.co.uk]
  Sent: Saturday, April 30, 2011 5:46 PM
  To: cf-talk
  Subject: RE: Can't open cfadmin after installing CFBuilder Beta 2
 
 
  I agree with Russ, reinstalling IIS seems the best way forward.
 
  -Original Message-
  From: Russ Michaels [mailto:r...@michaels.me.uk]
  Sent: 30 April 2011 19:10
  To: cf-talk
  Subject: Re: Can't open cfadmin after installing CFBuilder Beta 2
 
 
 
  Rick, just reinstalling IIS is a quick and painless process, so I would
 try
  that before nuking your system.
  If you like I can do a remote desktop session with you and have a quick
  look.
 
 
  On Sat, Apr 30, 2011 at 7:02 PM, Rick Faircloth
  r...@whitestonemedia.comwrote:
 
  
   Nothing's working... not changing permissions, not
   deleting and re-creating the default web site... nothing.
  
   At this point, I'm ready to flush the entire system and
   reinstall from scratch.  I can have that done in a day
   and be back to work.
  
   Any last ditch suggestions before I nuke this system?
  
 
  No virus found in this outgoing message.
  Checked by AVG - www.avg.com
  Version: 9.0.894 / Virus Database: 271.1.1/3605 - Release Date: 04/29/11
  18:08:00
 
 
 
 
 
 



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344105
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Can't open cfadmin after installing CFBuilder Beta 2

2011-04-30 Thread Russ Michaels

The primary download doesn't include any updates or hotfixes, you still need
to apply these manually.
Once you have installed 9.0.1 then you will be able to use the Web Config
tool to enable/disable cf on specific sites without the IIS6  compatibility
tools.

The other thing that can bugger up IIS is if you did not install it with ALL
features, then enabled those features later after windows updates have been
installed, there can often be required permissions/roles missing.
You may find that using the Microsoft Web Platform Installer works better
than add/remove programs.

Also note that if Coldfusion is not running this will cause ALL sites to
load very slowly, even html pages and images, as the wildcard handler
mapping still tries to process the request and waits forever to get a reply
back form CF. So always disable CF on non CF sites.

--

Russ Michaels

www.bluethunderinternet.com  : Business hosting services  solutions
www.cfmldeveloper.com: ColdFusion developer community
www.michaels.me.uk   : my blog
www.cfsearch.com : ColdFusion search engine
**
*skype me* : russmichaels


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344106
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Can't open cfadmin after installing CFBuilder Beta 2

2011-04-30 Thread Rick Faircloth

Thanks for the tips, Russ...

I hope I didn't bork my installation.  I applied the
Cumulative 9.0.1 Hotfix before applying the 9.0.1 update.

I thought that since the Hotfix was Cumulative that it
included the update, as well.

Will I need to reinstall the hotfix after I get the update
installed?


-Original Message-
From: Russ Michaels [mailto:r...@michaels.me.uk] 
Sent: Saturday, April 30, 2011 9:48 PM
To: cf-talk
Subject: Re: Can't open cfadmin after installing CFBuilder Beta 2


The primary download doesn't include any updates or hotfixes, you still need
to apply these manually.
Once you have installed 9.0.1 then you will be able to use the Web Config
tool to enable/disable cf on specific sites without the IIS6  compatibility
tools.

The other thing that can bugger up IIS is if you did not install it with ALL
features, then enabled those features later after windows updates have been
installed, there can often be required permissions/roles missing.
You may find that using the Microsoft Web Platform Installer works better
than add/remove programs.

Also note that if Coldfusion is not running this will cause ALL sites to
load very slowly, even html pages and images, as the wildcard handler
mapping still tries to process the request and waits forever to get a reply
back form CF. So always disable CF on non CF sites.

--

Russ Michaels

www.bluethunderinternet.com  : Business hosting services  solutions
www.cfmldeveloper.com: ColdFusion developer community
www.michaels.me.uk   : my blog
www.cfsearch.com : ColdFusion search engine
**
*skype me* : russmichaels




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344107
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Can't open cfadmin after installing CFBuilder Beta 2

2011-04-30 Thread Rick Faircloth

Now this is probably a dumb question, but what does Adobe
mean when they say, Connector has been upgraded.  If you use
IIS 6 Management Compatibility, to use IIS 7 support, unconfigure
(already configured) websites.  What does unconfigure mean?
(It's not even a real word, actually...) However, do they mean
to delete the current websites from IIS, then put them back in
once IIS 6 is disabled?



-Original Message-
From: Rick Faircloth [mailto:r...@whitestonemedia.com] 
Sent: Saturday, April 30, 2011 10:59 PM
To: cf-talk
Subject: RE: Can't open cfadmin after installing CFBuilder Beta 2


Thanks for the tips, Russ...

I hope I didn't bork my installation.  I applied the
Cumulative 9.0.1 Hotfix before applying the 9.0.1 update.

I thought that since the Hotfix was Cumulative that it
included the update, as well.

Will I need to reinstall the hotfix after I get the update
installed?


-Original Message-
From: Russ Michaels [mailto:r...@michaels.me.uk] 
Sent: Saturday, April 30, 2011 9:48 PM
To: cf-talk
Subject: Re: Can't open cfadmin after installing CFBuilder Beta 2


The primary download doesn't include any updates or hotfixes, you still need
to apply these manually.
Once you have installed 9.0.1 then you will be able to use the Web Config
tool to enable/disable cf on specific sites without the IIS6  compatibility
tools.

The other thing that can bugger up IIS is if you did not install it with ALL
features, then enabled those features later after windows updates have been
installed, there can often be required permissions/roles missing.
You may find that using the Microsoft Web Platform Installer works better
than add/remove programs.

Also note that if Coldfusion is not running this will cause ALL sites to
load very slowly, even html pages and images, as the wildcard handler
mapping still tries to process the request and waits forever to get a reply
back form CF. So always disable CF on non CF sites.

--

Russ Michaels

www.bluethunderinternet.com  : Business hosting services  solutions
www.cfmldeveloper.com: ColdFusion developer community
www.michaels.me.uk   : my blog
www.cfsearch.com : ColdFusion search engine
**
*skype me* : russmichaels






~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344108
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Can't open cfadmin after installing CFBuilder Beta 2

2011-04-30 Thread Matthew Williams

That reads to me as to rerun the JRun web configurator JAR/exe.


Matthew Williams
Geodesic GraFX
www.geodesicgrafx.com/blog

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344109
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm