RE: Home Site+ and Windows 7

2010-06-03 Thread Sebastiaan GMC van Dijk
In the beginning Eclipse was just too daunting to approach for a Homesite adept. But as I was warming to the concept of CFEclipse CFBuilder emerged. And after having seen a thorough demonstration of CFBuilder by Ben Forta over at the Dutch CFUG I was almost over to the CFBuilder masses. But,

CF Domain Redirects

2010-06-03 Thread Che Vilnonis
Here is the scenario. I own a domain. Call it domain.com. I also own an often misspelled version, domains.com. Note the extra 's'. I'd like to have domain.com automatically redirect to www.domain.com. I'd also like have the www.domains.com or domains.com automatically redirect to www.domain.com.

(ot) 3rd party DNS

2010-06-03 Thread Chad Gray
Hello, we are going through the pain of switching our internet providers. We got a great deal from a cable company that is about half the price of our current ATT provider and triple the bandwidth. So now we will have a new IP range and have to switch all the web sites to a new DNS server.

Wierd error from bots

2010-06-03 Thread Kris Sisk
I just switched over from an old Application.cfm to a new Application.cfc a couple weeks ago. Ever since I did I keep getting an error that says An exception occured while invoking an event handler method from Application.cfc. The method name is: onRequestStart. I only get this error when bots

Re: Home Site+ and Windows 7

2010-06-03 Thread Larry Lyons
Isn't there an adobe CF8 plugin available that also provides RDS? While I've never used such - I've always found it easier to use either a SQL plugin in Eclipse or use use a separate program like MySQL Workbench or Oracle SQL Developer. regards, larry In the beginning Eclipse was just too

Re: Home Site+ and Windows 7

2010-06-03 Thread Larry Lyons
I've had the same instance running for like a month, so I plumb forgot!  ;)p Yeah, on my 3 yr old MBP it takes about 28 seconds to start (I just timed it) but since it stays open for weeks at a time that's just not an issue. On my new desktop it opens in a few seconds (and again it stays open

Re: CF Domain Redirects

2010-06-03 Thread Scott Brady
I'd say that if it's an option, you can use ISAPI re-write to send domains.com users to domain.com. That is probably more efficient than having CF do it. But, if that's not an option for you, I'd put it in onRequestStart instead. If it's onSessionStart and, for some reason, you happen to have a

Re: CF Domain Redirects

2010-06-03 Thread Ian Skinner
On 6/3/2010 8:06 AM, Che Vilnonis wrote: 3. Are the any search engine related penalties to doing any of these redirects? If I am using the terminology correctly. I don't think you want to redirect, that search engines consider this basically a bait-and-switch no no. IIRC, you want to

RE: Wierd error from bots

2010-06-03 Thread Mark A. Kruger
I'm guessing the form scope does not exist. Mark A. Kruger, MCSE, CFG (402) 408-3733 ext 105 Skype: markakruger www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original Message- From: Kris Sisk [mailto:ks...@gckschools.com] Sent: Thursday, June 03, 2010 8:32 AM To: cf-talk

RE: CF Domain Redirects

2010-06-03 Thread DURETTE, STEVEN J (ATTASIAIT)
As long as you own the incorrect domains.com you should be able to have IIS do a re-direct to the proper address. You can re-direct an entire url right in the interface. I've done it before but it has been a while. Steve -Original Message- From: Scott Brady [mailto:dsbr...@gmail.com]

RE: CF Domain Redirects

2010-06-03 Thread Che Vilnonis
Scott, good point on onRequestStart. Ian, here is what prompted my post. When a user types domains.com, all of the links on the site say domains.com as they click through the site. I want them to say www.domain.com w/o having to go back and re-code all of the sites hyperlinks. My DNS is

Re: CF Domain Redirects

2010-06-03 Thread Casey Dougall
On Thu, Jun 3, 2010 at 11:06 AM, Che Vilnonis ch...@asitv.com wrote: Here is the scenario. I own a domain. Call it domain.com. I also own an often misspelled version, domains.com. Note the extra 's'. I'd like to have domain.com automatically redirect to www.domain.com. I'd also like have

RE: CF Domain Redirects

2010-06-03 Thread DURETTE, STEVEN J (ATTASIAIT)
Che, Technically it isn't totally another site. When you create it you set it as a redirect. No folders will be created etc. However, this is the most efficient because IIS handles it before it tries to open any files, etc. If you have URLScan running (which it should be) it doesn't even get

Re: CF Domain Redirects

2010-06-03 Thread Casey Dougall
whoops but I put www in my example by accedent. On Thu, Jun 3, 2010 at 11:39 AM, Casey Dougall ca...@uberwebsitesolutions.com wrote: On Thu, Jun 3, 2010 at 11:06 AM, Che Vilnonis ch...@asitv.com wrote: Here is the scenario. I own a domain. Call it domain.com. I also own an often

Re: imageRead plus imagepaste plus imageGetBlob issue

2010-06-03 Thread Bobby Hartsfield
I gave up. Nothing that resolved the issue was a valid long term solution. I've watermarked the images manually and removed all of the code to handle it on the fly. I'll still use it in a tool that watermarks the images as I upload them I guess. So now it is very simple... cfdirectory

RE: imageRead plus imagepaste plus imageGetBlob issue

2010-06-03 Thread DURETTE, STEVEN J (ATTASIAIT)
Why don't you use a hybrid... Drop the files in a directory, then when it's that files turn, check to see if a file of the same name is in a subdirectory called watermarked (or something like that). If it is just serve up the watermarked file. If not have the process create the watermarked file

RE: CF Domain Redirects

2010-06-03 Thread Che Vilnonis
Thanks Steve, I needed another opinion to convice me... :) -Original Message- From: DURETTE, STEVEN J (ATTASIAIT) [mailto:sd1...@att.com] Sent: Thursday, June 03, 2010 11:40 AM To: cf-talk Subject: RE: CF Domain Redirects Che, Technically it isn't totally another site. When you

RE: (ot) 3rd party DNS

2010-06-03 Thread Brook Davies
I use and have never had a problem with http://web.easydns.com/. No downtime (unlike NSI) in the past 5 or so years... Brook -Original Message- From: Chad Gray [mailto:cg...@careyweb.com] Sent: June-03-10 8:09 AM To: cf-talk Subject: (ot) 3rd party DNS Hello, we are going through

Re: imageRead plus imagepaste plus imageGetBlob issue

2010-06-03 Thread Raymond Camden
FYI, I've got some sample code to show how you can use a scheduled task to do this, or an event gateway. On Thu, Jun 3, 2010 at 10:48 AM, DURETTE, STEVEN J (ATTASIAIT) sd1...@att.com wrote: Why don't you use a hybrid...  Drop the files in a directory, then when it's that files turn, check to

Re: Home Site+ and Windows 7

2010-06-03 Thread Judah McAuley
Hey Sean, how do you feel about using CFBuilder with Railo? It seems to me that it works fine with CF9 but since most of my new dev is with Railo, I've tried to use CFBuilder and it seems like it just gets in the way, expecting that I'm using CF9 and not really understanding that that my server

Re: Home Site+ and Windows 7

2010-06-03 Thread Raymond Camden
I know this was for Sean, but I'd like to chime in too. ;) Since you can add custom dictionaries and you can tell CFB which is active, couldn't the Railo folks simply create and share a library? On Thu, Jun 3, 2010 at 11:02 AM, Judah McAuley ju...@wiredotter.com wrote: Hey Sean, how do you

Handling In-Field Commas in CSV import?

2010-06-03 Thread paul
I'm trying to import a comma delimited CSV file using cfloop file=filename.csv, but some records contain commas and they are throwing everything off. I can't seem to figure out how to replace the in-field commas without messing up the delimiter. Any ideas? Thanks in advance. -Paul

Re: Home Site+ and Windows 7

2010-06-03 Thread Judah McAuley
That would work for syntax, which is great, but the things that tripped me up with CFBuilder and Railo were the bits where it expects you to set up your local dev server, asking you if you want to start/stop it, using RDS to introspect datasources to scaffold CFCs for you, do line debugging, etc.

Re: Handling In-Field Commas in CSV import?

2010-06-03 Thread Barney Boisvert
There is absolutely no reason to parse a CSV document manually; there are myriad tools for exactly this purpose. A quick Googling will turn up a pile of options. You may need to tweak them if your file is enormous and must be processed line-by-line, but even then you should be able to use an

Re: Handling In-Field Commas in CSV import?

2010-06-03 Thread Judah McAuley
Any delimited file that has delimiters contained within a field is supposed to use a text qualifier. For CSV, the most common qualifier is double quotes, so your file would look like: 1234,field 1,my big field, that has a delimiter or two, but is qualified If there are not text qualifiers and a

RE: imageRead plus imagepaste plus imageGetBlob issue

2010-06-03 Thread UXB Internet
You are right though, I am most likely headed to a solution that involves watermarking the images permanently. If the images are never going to be used on the site without a watermark then you will save substantial processing time by doing so. We have a website that allows people to upload a

RE: CF Domain Redirects

2010-06-03 Thread Jacob
I would do this at the server level.. use URL rewrite. I know there is a URL rewrite modules for IIS7, not sure about 6 though. Jacob -Original Message- From: Che Vilnonis [mailto:ch...@asitv.com] Sent: Thursday, June 03, 2010 8:07 AM To: cf-talk Subject: CF Domain Redirects Here is

RE: CF Domain Redirects

2010-06-03 Thread UXB Internet
I'd like to have domain.com automatically redirect to www.domain.com. Assuming you own both domains then this should be done in the DNS not the web server or CF. The A record of both domains should point to the same IP number which is one website. Should I be doing this type of redirect in

RE: CF Domain Redirects

2010-06-03 Thread Che Vilnonis
Dennis, I decided to use an IIS redirect. I'm curious to know what penalty a redirect would be in say Google's eyes. After all, domain.com to www.domain.com is a redirect... and it would be absurd to penalize a site for a simple redirect like that. Che -Original Message- From: UXB

Re: Handling In-Field Commas in CSV import?

2010-06-03 Thread Paul Henderson
Thanks for the replies, it seems like I'm taking the wrong approach. Currently I am using a cfloop to loop over the file, then #listgetat(FileLine,1)# to reference each field. cfloop file=C:\CSVs\2010-05-21.csv index=FileLine cfset record_type = '#listgetat(FileLine,1)#' /cfloop It

Re: Home Site+ and Windows 7

2010-06-03 Thread Raymond Camden
Railo doesn't implement any RDS apis? RDS is just a HTTP hit. You could always just look at the network communication and mimic it. ;) (Ok, I know, non-trivial.) The RDS stuff in Dreamweaver for example uses JavaScript. On Thu, Jun 3, 2010 at 12:33 PM, Judah McAuley ju...@wiredotter.com wrote:

RE: (ot) 3rd party DNS

2010-06-03 Thread Justin Scott
Anyone use or recommend a 3rd party DNS service? I'm biased, since I run one at www.dtdns.com. It's all powered by ColdFusion, of course (aside from the actual DNS server). Been up and running for 11 years now. -Justin

RE: CF Domain Redirects

2010-06-03 Thread Justin Scott
Dennis, I decided to use an IIS redirect. I'm curious to know what penalty a redirect would be in say Google's eyes. After all, domain.com to www.domain.com is a redirect... and it would be absurd to penalize a site for a simple redirect like that. Make the redirect permanent (301 status

Re: (ot) 3rd party DNS

2010-06-03 Thread Gerald Guido
I have used dyndns.org's premium service in the past and was very happy with that. They have an api for updating DNS records that was rather handy at the time for the task at hand. G! On Thu, Jun 3, 2010 at 11:09 AM, Chad Gray cg...@careyweb.com wrote: Hello, we are going through the pain of

Re: (ot) 3rd party DNS

2010-06-03 Thread Greg Luce
+1 for www.dtdns.com Haven't seen anything but solid service for 5 years... Greg On Thu, Jun 3, 2010 at 2:41 PM, Justin Scott jscott-li...@gravityfree.comwrote: Anyone use or recommend a 3rd party DNS service? I'm biased, since I run one at www.dtdns.com. It's all powered by

Re: Home Site+ and Windows 7

2010-06-03 Thread Sean Corfield
On Thu, Jun 3, 2010 at 9:02 AM, Judah McAuley ju...@wiredotter.com wrote: Hey Sean, how do you feel about using CFBuilder with Railo? It works pretty well for me, to be honest. Sure, it doesn't know how to stop / start Tomcat (my preferred container for Railo) but it really doesn't get in the

Re: Home Site+ and Windows 7

2010-06-03 Thread Sean Corfield
On Thu, Jun 3, 2010 at 11:31 AM, Raymond Camden rcam...@gmail.com wrote: Railo doesn't implement any RDS apis? RDS is just a HTTP hit. You could always just look at the network communication and mimic it. ;) (Ok, I know, non-trivial.) The RDS stuff in Dreamweaver for example uses JavaScript.

Re: (ot) 3rd party DNS

2010-06-03 Thread Jason Fisher
zoneedit.com is really solid, despite the look of their site. Been really happy with their servers and the ease with which I can manage domains there. After the first 5 domains, there is a monthly fee, but it's not much. On 6/3/2010 11:09 AM, Chad Gray wrote: Hello, we are going through

Re: CF Domain Redirects

2010-06-03 Thread Jason Fisher
Don't know if anyone pointed this out, but cgi.server_name doesn't include the protocol (like 'http://'). So, your test should be more like so: cfif cgi.server_name eq domain.com or cgi.server_name contains domains.com cfheader statuscode=301 statustext=Moved permanently cfheader

Re: (ot) 3rd party DNS

2010-06-03 Thread Troy Montour
Chad we use DnsMadeEasy.com for the past 7 years... it has been an awesome service and very affordable. Troy On Thu, Jun 3, 2010 at 10:09 AM, Chad Gray cg...@careyweb.com wrote: Hello, we are going through the pain of switching our internet providers. We got a great deal from a cable

CF PDF and Print Functions

2010-06-03 Thread Robert Harrison
/unplugged __ Information from ESET Smart Security, version of virus signature database 5170 (20100603) __ The message was checked by ESET Smart Security. http://www.eset.com ~| Order the Adobe Coldfusion

Re: Handling In-Field Commas in CSV import?

2010-06-03 Thread Paul Henderson
This solution worked for me: http://www.bennadel.com/blog/1903-Parsing-CSV-Data-With-ColdFusion-s-CFHTTP-Tag.htm On Thu, 03 Jun 2010 14:27:08 -0400, Paul Henderson p...@smashedvision.com wrote: Thanks for the replies, it seems like I'm taking the wrong approach. Currently I am using

Re: CF PDF and Print Functions

2010-06-03 Thread Jason Fisher
/or. It must be. Plug in to our blog: AW Unplugged http://www.austin-williams.com/unplugged __ Information from ESET Smart Security, version of virus signature database 5170 (20100603) __ The message was checked by ESET Smart Security. http://www.eset.com

Re: CF Domain Redirects

2010-06-03 Thread Andrew Clarke
Che is using a 301 redirect, which is a permanent redirect. AFAIK search engines tend to penalize 302 (temporary) redirects, but are fine with 301s. I would agree that DNS would generally be considered the best solution, followed by a 301 redirect in IIS, followed by a 301 in ColdFusion.

RE: imageRead plus imagepaste plus imageGetBlob issue

2010-06-03 Thread Bobby Hartsfield
I've tried to reply to this thread three times to explain what I ended up with but they just aren't coming through... lets try again... Basically, I gave up. Nothing that resolved the issue was a valid long term solution. I've watermarked the images manually and removed all of the code to

RE: imageRead plus imagepaste plus imageGetBlob issue

2010-06-03 Thread Bobby Hartsfield
Whether or not I would use them somewhere else is yet to be determined really. I did like having the non-watermarked versions just incase though, or if I wanted to change the watermark, all I had to do was upload a new watermark.png. I'm sure I'll end up with a mix of everything. It just won't

RE: imageRead plus imagepaste plus imageGetBlob issue

2010-06-03 Thread Bobby Hartsfield
Imagine that, the first Google result for ColdFusion directory monitor :-) http://archive.thedevweb.com/thedevweb-26-20071031DirectoryWatcherColdFusion ImageManipulation.html -Original Message- From: Raymond Camden [mailto:rcam...@gmail.com] Sent: Thursday, June 03, 2010 12:01 PM To:

RE: CF Domain Redirects

2010-06-03 Thread UXB Internet
Dennis, I decided to use an IIS redirect. I'm curious to know what penalty a redirect would be in say Google's eyes. As I indicated each spider handles 30X redirects differently. Justin pointed you to Google's rules which bears repeating:

RE: CF Domain Redirects

2010-06-03 Thread UXB Internet
I pressed send to quickly: Also this is good reference for Google: http://googlewebmastercentral.blogspot.com/search?q=301+redirects Quote: Enable crawling and use 301 (permanent) redirects where possible Where possible, the most important step is often to use appropriate 301 redirects. These