Re: SOT: Google sitemaps

2006-01-26 Thread Jim Wright
What do you mean by didn't like? The reason I askI've got one set up that ends in .cfm, and the google interface says that it reads it in just fineit hasn't seemed to help any with indexing yet, however. -jim On 1/26/06, Raymond Camden [EMAIL PROTECTED] wrote: I use it in BlogCFC. One

Re: SOT: Google sitemaps

2006-01-26 Thread Jim Wright
(I built my initial sitemaps using a spider (I think it was webZip), Xenu is another handy program that can be used for coming up with a list of spiderable URL's... http://home.snafu.de/tilman/xenulink.html ~| Message:

Re: ms sql query...

2006-01-25 Thread Jim Wright
you might be able to do this with patindex...unfortunately MS-SQL doesn't have a robust regular expression engine. perhaps something like this_title like '%mysearchstring%' and patindex('%[A-Z,a-z]mysearchstring%', this_title) = 0 and patindex('%mysearchstring[A-Z,a-z]%', this_title) = 0

Re: install problem

2006-01-25 Thread Jim Wright
From Macr...err...Adobe site http://www.macromedia.com/support/coldfusion/releasenotes/mx/mx61_known_problems.html#installationandconfiguration (It's down on the page, so I'll paste the section here) 60086 On Windows 2003 systems with Service Pack 1 (SP1), the installer

Re: install problem

2006-01-25 Thread Jim Wright
does this have to be done for the updater do you think? I would assume that once you have put the InstallAnywhere Self-Extractor into the exceptions, that it will work for anything built with that...but I don't have any personal knowledge of that...I just remembered seeing that article when I

Re: from 6 to 7

2006-01-24 Thread Jim Wright
said, it was my first project, and it worked fine on the other server. And, just so it's known, I'm on a shared host, so there is no access to anything outside my web root, including the administrator. Ray Jim Wright wrote: That was where I was going...I just wanted

Re: from 6 to 7

2006-01-24 Thread Jim Wright
I just downloaded the package to see the license since I couldn't find it on any of the pages...and it does specifically state that you may not: use the software for commercial software hosting services So, it looks like hosts offering it free is out. On 1/24/06, Dave Watts [EMAIL PROTECTED]

Re: Update, Delete, Insert recordcount?

2006-01-23 Thread Jim Wright
statement. On 1/22/06, Adrian Lynch [EMAIL PROTECTED] wrote: Why multiple statements, why not single statements? Ade -Original Message- From: Jim Wright [mailto:[EMAIL PROTECTED] Sent: 22 January 2006 01:08 To: CF-Talk Subject: Re: Update, Delete, Insert recordcount? Also always

Re: from 6 to 7

2006-01-23 Thread Jim Wright
What database? -jim On 1/23/06, Ray Champagne [EMAIL PROTECTED] wrote: Hey all: I'm having an issue with my hosting company that I wanted to run by everyone. I've had a site up and running fine at this particular host for quite a while now. While it is not the most elegantly coded site

Re: from 6 to 7

2006-01-23 Thread Jim Wright
That was where I was going...I just wanted to eliminate a local db like Access. I don't think this is a shot in the dark...a lot of hosts out there these days are just renting equipment in others co-lo facilities...and often in more than one co-lo facility. You want to make sure they are not

Re: Update, Delete, Insert recordcount?

2006-01-21 Thread Jim Wright
Also always a good idea to use SET NOCOUNT around multiple SQL statements to suppress informational messages... cfquery name=yourQuery datesource=yourDS SET NOCOUNT ON UPDATE yourTable SET YourColumn = 'Something' SELECT @@ROWCOUNT AS RowsUpdated SET NOCOUNT OFF /cfquery On 1/21/06, Adrian

Re: Delete directory contents

2006-01-16 Thread Jim Wright
Using Bobby's method, if it is *nix, rm -r -f path/* would do it. I don't think the del or rmdir commands in windows will handle this situation. On 1/16/06, Bobby Hartsfield [EMAIL PROTECTED] wrote: You could cfececute a batch file/shell script or native command to delete path\*.* else, I

Re: Delete directory contents

2006-01-16 Thread Jim Wright
OK, there is probably a more elegant way...but this would get the trick done, with ACL's intact... REM this assumes that c:\foo is the directory that you want to empty echo. c:\foo\foo.txt REM /O option in xcopy preserves ACL's echo f|xcopy /O c:\foo\foo.txt c:\foo2\foo.txt rmdir C:\foo /Q /S

Re: Delete directory contents

2006-01-16 Thread Jim Wright
structure and inheritable permissions would take care of it... Jim nailed the batch file equivalent though and got around using CALCS commands ;-) ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Jim Wright [mailto:[EMAIL PROTECTED

Re: Gmail thinks cf-talk is spam (since January 11th)?

2006-01-15 Thread Jim Wright
same here..probably an even higher percentage...I wish gmail would have an option to not mark labeled items as spam...I have a filter to mark things sent to cf-talk with a cftalk label and have them skip the inbox...the annoying thing is that when you un-spam the spammed items, gmail returns them

Re: Decimal - more

2006-01-13 Thread Jim Wright
I luckily remembered QofQ this week...also never having used it...and along with another thing I didn't know about till now(setting a cfsearch to type=Internet...makes it treat the search syntax more like you expect most internet search engines to...no more replacing spaces with and and such), I

Re: Scripting DB records in enterprise manager

2006-01-12 Thread Jim Wright
Mike, If this is something that you need to do often, or need to keep those two databases in synch, I would definitely check out the sql-compare and sql-datacompare tools from redgate... http://www.red-gate.com/ They are a bit pricey, but they can save you a lot of time and headache. -jim On

Re: intranet project

2006-01-11 Thread Jim Wright
Tim, A few things to think about: 1. Does the client have a current network that they authenicate against? If it is Active Directory, you can tie into that using cfldap, and there are hooks for other systems. You will still probably have to create tables in your application structure to handle

Re: Parsing through text file

2006-01-11 Thread Jim Wright
What database? If it is SQL Server, you may be able to set the import up as a DTS package, and then fire off the DTS package when the new file is uploaded. -jim On 1/11/06, Robert Everland III [EMAIL PROTECTED] wrote: We have a file upload process here where a user needs to upload a file, the

Re: Create dynamic PDF in CFMX 6.1 Standard

2006-01-11 Thread Jim Wright
There are a couple of open source java based libraries that you might be able to use... http://www.lowagie.com/iText/(example at: http://cephas.net/blog/2004/03/14/using_itext_pdf_coldfusion.html ) or http://jasperreports.sourceforge.net/ (example at:

Re: Professional Opinions on HostMySite.com

2006-01-10 Thread Jim Wright
who was reasonably competent answering the phone when I called. The only other CF host I have had much experience with is Intermedia...and hostmysite beats them hands down. Hope that helps, Jim Wright Wright Business Solutions 919-417-2257 [EMAIL PROTECTED

Re: Combining verity results with database query

2006-01-10 Thread Jim Wright
As a follow up to this post, in case anybody has the same problem I did, I had to put the word key in brackets...something like... WHERE dbResults.primaryID = verityResults.[key] This was in MX7 running on a W2K Server box. -jim And did you try it without table aliases and with the join in

<    1   2   3   4   5   6