RE: matching a whole word

2011-08-17 Thread Nathan C. Smith

Regex *is* the key then.  Many thanks.

-Nate

-Original Message-
From: Jason Fisher [mailto:ja...@wanax.com] 
Sent: Wednesday, August 17, 2011 4:48 PM
To: cf-talk
Subject: Re: matching a whole word


Yes, indeed.  You want something like this:

keyword = "star";
myString = "The dog sniffed at the starfish and growled"; regEx = "\b" & 
keyword & "\b"; if (reFindNoCase(regEx, myString)) {
 writeOutput("found it");
} else {
 writeOutput("did not find it");
}

On 8/17/2011 5:20 PM, Nathan C. Smith wrote:
> If I want to scan a string to match only a whole word should I be 
> looking at regular expressions?  I want to scan a string like
>
> "The dog sniffed at the starfish and growled"
>
> And if I scan for "star" not match "starfish".
>
> Are regular expressions the most effective way to do that?
>
> Thank you.
>
> -Nate
>
> 



~|
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:346821
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


matching a whole word

2011-08-17 Thread Nathan C. Smith

If I want to scan a string to match only a whole word should I be looking at 
regular expressions?  I want to scan a string like 

"The dog sniffed at the starfish and growled"

And if I scan for "star" not match "starfish".

Are regular expressions the most effective way to do that?

Thank you.

-Nate

~|
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:346815
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Reality check

2009-07-07 Thread Nathan C. Smith

Don't forget about case-sensitivity of filenames.  Especially on includes and 
such.

> -Original Message-
> From: Phillip Vector [mailto:vec...@mostdeadlygame.com]
> Sent: Tuesday, July 07, 2009 10:25 AM
> To: cf-talk
> Subject: Reality check
>
>
> Just need confirmation that I'm not losing it..
>
> I have apache running on my dev server. A client gave me his files and
> I'm trying to get them set up on my local server (he is running IIS).
>
> However, after I create the mappings in CF and go to the directory
> that in his IIS, he has set to default to, I get a ColdFusion error
> (some variable is a complex variable or some such). It finds the files
> and the cfc as well.
>
> So.. It isn't that I'm using Apache and they are using IIS.. Right?
> The code is just broke.
>
> or am I missing something here?
>
> 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324308
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Small scale Twitter Clone for CF?

2009-05-08 Thread Nathan C. Smith

I'm not actually looking for an interface to twitter, I'm looking for a 
scaled-down version of twitter.

Thanks though, this may have other uses.

-Nate 

> -Original Message-
> From: Casey Dougall [mailto:ca...@uberwebsitesolutions.com] 
> Sent: Thursday, May 07, 2009 12:35 PM
> To: cf-talk
> Subject: Re: Small scale Twitter Clone for CF?
> 
> 
> On Thu, May 7, 2009 at 11:19 AM, Nathan C. Smith 
> wrote:
> 
> >
> > I know somebody is working on an identi.ca type software in CF but I
> > wondered if anyone had a smaller-scale twitter-like 
> application.  I'm not
> > looking for super-fancy APIs or the ability to federate 
> sites.  This would
> > be something used experimentally on an intranet for now.
> >
> > Thanks for any pointers.
> >
> > -Nate
> >
> 
> there are a few floating around on riaforge.
> 
> Simplest
> 
> http://twittercfc.riaforge.org/
> 
> Methods:
> init(username,password)
> postToTwitter(status,username,password)
> getFriendsTimeline(username,password)
> getPublicTimeline()
> 
> 
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:322330
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Small scale Twitter Clone for CF?

2009-05-07 Thread Nathan C. Smith

I know somebody is working on an identi.ca type software in CF but I wondered 
if anyone had a smaller-scale twitter-like application.  I'm not looking for 
super-fancy APIs or the ability to federate sites.  This would be something 
used experimentally on an intranet for now.

Thanks for any pointers.

-Nate

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:322284
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: cfdocument pdf generation

2009-02-13 Thread Nathan C. Smith

If it is possible to do what you want to do in cfreport you might want to look 
into that.  I remember a thread a year or two ago where somebody switched from 
raw CF to cfreport and was blown away by the speed difference.

-Nate 

> -Original Message-
> From: Daniel [mailto:dan...@gmail.com] 
> Sent: Thursday, February 12, 2009 6:47 PM
> To: cf-talk
> Subject: cfdocument pdf generation
> 
> 
> I have a tough question.
> 
> I am trying to use cfdocument to generate a huge PDF file 
> with 5000+ images
> 
> after failing (even with CF64bits and 8GB of RAM), I was 
> analyzing the PDF
> generated by iText (the lib used by coldfusion), and it seams 
> every image
> included in the PDF is using the FlateDecode encoding, instead of the
> DCTDecode for jpeg images
> 
> with the FlateDecode, images get 10x bigger, as FlateDecode is a zlib
> compression
> 
> also, iText tries to use the memory buffer for the cache of 
> the document
> 
> The only way to this document generation to be feasable is if 
> I can change
> iText to use DCTDecode on the images, and use a disk based 
> buffer instead of
> a memory based buffer
> 
> the real question: can I update iText with a more recent 
> version ? if so,
> does this fix this issue? If I can't update the internal iText
> implementation, is there a easy way to convert html to pdf 
> using an external
> iText implementation called by CreateObject ?
> 
> answers suggesting me to use something else than coldfusion 
> won't be very
> helpful, since I already know that, but I want to use 
> coldfusion to generate
> those PDFs Comparing with other PHP and ASP.NET 
>  based
> solutions, coldfusion pdf generation is bloated and slow and 
> I am trying to
> fix that
> 
> 
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319300
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: MS Index Server and CF

2008-12-29 Thread Nathan C. Smith
There is/was an OLE provider for Index Server.  I had it working with 
ColdFusion once, but then the architecture of CF changed (it must have been in 
the CF 4.0 or 5.0 timeframe) and OLE Data sources were no longer supported or 
were not easily accessed.

Hopefully somebody else can share more.

-Nate 

> -Original Message-
> From: Duane Boudreau [mailto:du...@sandybaynetworks.com] 
> Sent: Monday, December 29, 2008 12:22 PM
> To: cf-talk
> Subject: MS Index Server and CF
> 
> Hi All,
> 
> Has anyone here ever managed to get CF to use the built in MS 
> Index Server
> for search results?
> 
> Thanks,
> Duane
> 
> 
> 
> 
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317242
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: MS Index Server and CF

2008-12-29 Thread Nathan C. Smith
Aren't you asking about MS Index Server and not SQL Server 2000?

-Nate 

> -Original Message-
> From: Duane Boudreau [mailto:du...@sandybaynetworks.com] 
> Sent: Monday, December 29, 2008 2:36 PM
> To: cf-talk
> Subject: RE: MS Index Server and CF
> 
> 2000
> 
> -Original Message-
> From: Jide Aliu [mailto:jide_a...@hotmail.com] 
> Sent: Monday, December 29, 2008 4:22 PM
> To: cf-talk
> Subject: Re: MS Index Server and CF
> 
> >First I wanted to know if it was possible (which it appears 
> to be), and
> >secondly I was looking for some sample code.
> >
> >I Googled and found an article linked to CFComet but that 
> site doesn't seem
> >to be functional anymore.
> >
> >Do you have any sample code you can share?
> >
> 
> There are few things you need to look out for though e.g. making sure
> full-text indexing is enabled in your SQL Server..etc.
> 
> What version of MS-SQL are you using? 
> 
> 
> 
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317240
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Mail list manager recommendations

2008-01-29 Thread Nathan C. Smith
Thanks Kay,

  I probably should add that it is for very low volumes and for existing
clients only that I want to use this software.   Probably less than 7000
subscribers.  Probably A LOT less ;)

Thank-you.

-Nate

 

> -Original Message-
> From: Kay Smoljak [mailto:[EMAIL PROTECTED] 
> Sent: Tuesday, January 29, 2008 10:21 PM
> To: CF-Talk
> Subject: Re: Mail list manager recommendations
> 
> It's not free, it's a third party system not installable code 
> and it's not ColdFusion - and with that, I guess totally 
> inappropriate for this list - but I have never found a better 
> newsletter system than MailBuild.com :)
> 
> There are so many risks associated with running newsletters 
> out of your own server - ask anyone who's ever ended up with 
> their IP on the SORBS list for no good reason, for example - 
> that I wouldn't even consider doing that these days.
> 
> In summary, it's a system designed for web development 
> companies to onsell to their customers (optionally taking a 
> cut of the per-campaign and per-delivery costs) with awesome 
> templating customisations and kick arse marketing-department 
> friendly stats. And they are very careful about spam, because 
> their business hinges on getting mail delivered.
> 
> I just realised that sounds like a sales pitch, but I'm just 
> a happy customer :)
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:297710
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Mail list manager recommendations

2008-01-29 Thread Nathan C. Smith
I'm looking for a relatively simple mailing list manager or newsletter-type
system.  This would be for an outbound only newsletter-style list.  I'd like
to find something with a double opt-in option (invitees have to click a link
in order to approve their subscription).  And a link to unsubscribe from the
list.

I saw some good looking Php stuff but I was really hoping to find something
based on ColdFusion.  I prefer FOSS but reasonable licenses are fine too.

Thanks for any pointers.

-Nate

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:297705
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: insert/retrieve image into database SQL Server 2005/CF8?

2008-01-17 Thread Nathan C. Smith
Bingo, I should have been using cfimage to read the file!

Thanks Dave!  BTW, the SQL you fixed works the same with the VarBinary(MAX)
and the image datatypes.
Now if they can just get that image bug fixed...  Resizing my images is
causing a page timout.

Thanks.

-Nate 

> -Original Message-
> From: Dave Watts [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, January 17, 2008 2:32 PM
> To: CF-Talk
> Subject: RE: insert/retrieve image into database SQL Server 2005/CF8?
> 
> > You are always a great resource Dave, any thoughts on my 
> > original question?
> 
> Unfortunately, I won't have access to a SQL Server 2005 
> machine until the
> weekend.
> 
> That said, you should be able to rewrite your original code like this:
> 
>  name="myImage"> 
> 
> Update tblStaff
> Set staffphoto =  cfsqltype="cf_sql_blob">
> Where StaffID = #staffID#;
> 
> 
> I replaced your CFFILE with CFIMAGE, which can read the file 
> from disk for
> you.
> 
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:296791
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: insert/retrieve image into database SQL Server 2005/CF8?

2008-01-17 Thread Nathan C. Smith
I didn't think so either...

You are always a great resource Dave, any thoughts on my original question?

'http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:54861#29676
6' 

-Nate

> -Original Message-
> From: Dave Watts [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, January 17, 2008 1:54 PM
> To: CF-Talk
> Subject: RE: insert/retrieve image into database SQL Server 2005/CF8?
> 
> > I was hoping to avoid the tired old in-DB v. Out-of-DB 
> > conversation.
> 
> Like the war between good and evil, that conversation is 
> eternal. There's
> nothing wrong with storing images in a modern RDBMS.
> 
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> 
> Fig Leaf Software provides the highest caliber vendor-authorized
> instruction at our training centers in Washington DC, Atlanta,
> Chicago, Baltimore, Northern Virginia, or on-site at your location.
> Visit http://training.figleaf.com/ for more information!
> 
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:296776
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: insert/retrieve image into database SQL Server 2005/CF8?

2008-01-17 Thread Nathan C. Smith
Hi Dave,

Are you using CF8? what SQL data type is the column you are inserting into
and what does the SQL query look like?

I was hoping to avoid the tired old in-DB v. Out-of-DB conversation.  These
are small pictures and fewer than 100 so it shouldn't be a big deal.

Thanks,

-Nate 

> -Original Message-
> From: Dave Long [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, January 17, 2008 12:56 PM
> 
> I do it using a unix cron job timed to retrieve, unzip and 
> rename the files
> soon after they're refreshed on the remote server, then set a 
> CF scheduled
> task to run about 15 minutes later that deletes the existing 
> records and
> inserts the new ones from today.
> 

> Hi,
> 
> I'm trying to insert an Image into MS SQL Server 2005 
> database using CF 8.
> I started to work with the SQL Server 'Image' data type but 
> I'm not sure
> this data type is the best/correct choice.
> 
> Somebody has probably done this before, so what data-type 
> should/could I use
> in SQL Server - The choices include Image, binary, varbinary, and
> varbinary(max).  Should I be using the new image tags or 
> resorting to older
> methods to achieve the path of least resistance?
> 
> Here is a sample of what I am working on, here I am just 
> trying to read a
> file and place it in the database
> 
>  file="/var/www/images/staffpics/#staffID#.jpg">
>   
>   
>   Update tblStaff
>   Set staffphoto =  value="#ImageGetBlob(myImage)#" cfsqltype="cf_sql_blob">
>   Where StaffID = #staffID#;
>   
>   
> 
> 
> I'm getting 
>   "The source file should contain an extension, so that 
> ColdFusion can
> determine the image format.  Verify your inputs. The source 
> file should
> contain an extension, so that ColdFusion can determine the 
> image format." 
> as an error.  It isn't clear, at least to me, where I can be 
> more specific
> about setting the image format - is this an error from SQL 
> server?  The
> manual says "If you do not specify a source image, an 
> "unknown source image
> format" error is generated", am I not pointing to my variable 
> correctly?
> The examples in the manual show an insert statement and I am 
> trying to do an
> update, is my query syntax messed up?
> 
> My next question is obviously about getting the images out of 
> the DB, so if
> there are any tricks to that, please feel free to elaborate.
> 
> Many thanks,
> 

> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:296770
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: insert/retrieve image into database SQL Server 2005/CF8?

2008-01-17 Thread Nathan C. Smith
Hi Dave,

Are you using CF8? what SQL data type is the column you are inserting into
and what does the SQL query look like?

I was hoping to avoid the tired old in-DB v. Out-of-DB conversation.  These
are small pictures and fewer than 100 so it shouldn't be a big deal.

Thanks,

-Nate

> -Original Message-
> From: Dave Long [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, January 17, 2008 12:56 PM
> To: CF-Talk
> Subject: RE: insert/retrieve image into database SQL Server 2005/CF8?
> 
> I do it using a unix cron job timed to retrieve, unzip and 
> rename the files
> soon after they're refreshed on the remote server, then set a 
> CF scheduled
> task to run about 15 minutes later that deletes the existing 
> records and
> inserts the new ones from today.
> 
> The CF task takes about 10 minutes or less to install about 
> 6,000 records
> and I have found it a good idea to put a link to my real 
> estate site in the
> Windows startup folder so I can actually eyeball the app 
> first thing every
> day... it has rarely been known to fail for various reasons.
> 
> But it works great almost all the time. I even have a 
> separate site to boost
> links to my hosted brokers' sites and listings at
> http://www.northgoodsrealestate.com. I'm sure it could be 
> designed better
> but at my skill level, this seems to work ok for my folks and 
> includes a
> number of different methods for visitors to search for a listing.
> 
> Dave Long
> 
> 
> 
> -Original Message-
> From: Nathan C. Smith [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, January 17, 2008 10:00 AM
> To: CF-Talk
> Subject: insert/retrieve image into database SQL Server 2005/CF8?
> 
> Hi,
> 
> I'm trying to insert an Image into MS SQL Server 2005 
> database using CF 8.
> I started to work with the SQL Server 'Image' data type but 
> I'm not sure
> this data type is the best/correct choice.
> 
> Somebody has probably done this before, so what data-type 
> should/could I use
> in SQL Server - The choices include Image, binary, varbinary, and
> varbinary(max).  Should I be using the new image tags or 
> resorting to older
> methods to achieve the path of least resistance?
> 
> Here is a sample of what I am working on, here I am just 
> trying to read a
> file and place it in the database
> 
>  file="/var/www/images/staffpics/#staffID#.jpg">
>   
>   
>   Update tblStaff
>   Set staffphoto =  value="#ImageGetBlob(myImage)#" cfsqltype="cf_sql_blob">
>   Where StaffID = #staffID#;
>   
>   
> 
> 
> I'm getting 
>   "The source file should contain an extension, so that 
> ColdFusion can
> determine the image format.  Verify your inputs. The source 
> file should
> contain an extension, so that ColdFusion can determine the 
> image format." 
> as an error.  It isn't clear, at least to me, where I can be 
> more specific
> about setting the image format - is this an error from SQL 
> server?  The
> manual says "If you do not specify a source image, an 
> "unknown source image
> format" error is generated", am I not pointing to my variable 
> correctly?
> The examples in the manual show an insert statement and I am 
> trying to do an
> update, is my query syntax messed up?
> 
> My next question is obviously about getting the images out of 
> the DB, so if
> there are any tricks to that, please feel free to elaborate.
> 
> Many thanks,
> 
> -Nate
> 
> 
> 
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:296769
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


insert/retrieve image into database SQL Server 2005/CF8?

2008-01-17 Thread Nathan C. Smith
Hi,

I'm trying to insert an Image into MS SQL Server 2005 database using CF 8.
I started to work with the SQL Server 'Image' data type but I'm not sure
this data type is the best/correct choice.

Somebody has probably done this before, so what data-type should/could I use
in SQL Server - The choices include Image, binary, varbinary, and
varbinary(max).  Should I be using the new image tags or resorting to older
methods to achieve the path of least resistance?

Here is a sample of what I am working on, here I am just trying to read a
file and place it in the database




Update tblStaff
Set staffphoto = 
Where StaffID = #staffID#;




I'm getting 
"The source file should contain an extension, so that ColdFusion can
determine the image format.  Verify your inputs. The source file should
contain an extension, so that ColdFusion can determine the image format." 
as an error.  It isn't clear, at least to me, where I can be more specific
about setting the image format - is this an error from SQL server?  The
manual says "If you do not specify a source image, an "unknown source image
format" error is generated", am I not pointing to my variable correctly?
The examples in the manual show an insert statement and I am trying to do an
update, is my query syntax messed up?

My next question is obviously about getting the images out of the DB, so if
there are any tricks to that, please feel free to elaborate.

Many thanks,

-Nate

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:296741
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: cfimage - read, resize, write to browser & resize options

2008-01-09 Thread Nathan C. Smith
> 
> >I wanted to resize an image.  I wanted to use cfimage to 
> read the image,
> >resize it, and write it to the browser without saving it 
> back to disk.
> 
> Did you try using the ImageResize() function instead? 
> 
> Janet 
> 

Wow!  No, didn't know there was one, this is great.  Thanks for the pointer.

-Nate

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:296274
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


cfimage - read, resize, write to browser & resize options

2008-01-09 Thread Nathan C. Smith
I ran into a cfimage behavior that was not quite what I expected, perhaps it
will be more obvious to others.
I wanted to resize an image.  I wanted to use cfimage to read the image,
resize it, and write it to the browser without saving it back to disk.

The resize action is what had me stumped for a bit.  I was expecting to be
able to resize the image "in place".  I tried some code like below:






It Turns out that resize always needs a place defined to put the output,
either the name of a variable(NAME), or a file location(DESTINATION), even
if it is the same as the source.  I ended up using it like this because I
didn't know if there would be issues writing it back to the same variable
name I was using as a source.






I just wanted to share this for a couple reasons: in case a like-minded
individual runs into it and to ask if there /could/ be issues writing back
to the same variable name during a resize.

Thanks.

-Nate

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:296261
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


cfmenu is rendering under other page content

2007-12-31 Thread Nathan C. Smith
I'm having a problem where cfmenu and related menu items are rendering
beneath other content on the page.  Both pictures and images.  What kind of
things should I be looking for as a cause for this?  I don't have any styles
specified for cfmenu or cfmenuitems.

I'm using some simple css to style the content but nothing crazy with
layers.  At least nothing intentional.

Thanks for tips and pointers.  Has anyone else run into this?

-Nate

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:295576
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Cffeed - creating RSS Feeds and guid

2007-09-17 Thread Nathan C. Smith
OK, According to Jayesh Viradiya (Thanks Jayesh!)

To use the guid value in cffeed it will look something like this:



http://www.google.com";>

/me goes to try it out.

-Nate

> -Original Message-
> From: Jayesh Viradiya [mailto:[EMAIL PROTECTED] 
> Sent: Sunday, September 16, 2007 9:25 PM
> To: CF-Talk
> Subject: RE: Cffeed - creating RSS Feeds and guid
> 
> Hi Nathan C. Smith
> 
> Could you please isolate the code which throws the Null Pointer
> exception and post it here or send it to me at 
> "[EMAIL PROTECTED]" for us
> to be able to reproduce it in order to investigate it.
>  
> 
> Thank you
> Jayesh Viradiya
> Adobe CF Team
> 
> 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288650
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Cffeed - creating RSS Feeds and guid

2007-09-14 Thread Nathan C. Smith
> I believe href will then be used for the value. If not, try 
> link perhaps.
> 

If I work backwards and read a feed into cffeed there is a "linkhref" in the
guid struct.  I'm pretty sure I tried that one going the other direction
though.

-Nate

~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288516
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Cffeed - creating RSS Feeds and guid

2007-09-14 Thread Nathan C. Smith
 

> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED] 
> Sent: Friday, September 14, 2007 5:13 PM
> To: CF-Talk
> Subject: Re: Cffeed - creating RSS Feeds and guid
> 
> Don't feel too bad. The docs for CFFEED leave a _lot_ out.  This blog
> article is a good example:
> 
> http://www.coldfusionjedi.com/index.cfm/2007/8/22/Metadata-pro
perties-for-CFFEED
> 
> So as to your problem, I looked here:
> 
> http://feedvalidator.org/docs/rss2.html#ltguidgtSubelementOfLtitemgt
> 
> and I see one example has guid as a simple value. One has it like so:
> 
> http://feedvalidator.org/docs/rss2.html#ltguidgtSubelementOfLtitemgt
> 
> So this is what I'd try.
> 
> 
> 
> 
> I believe href will then be used for the value. If not, try 
> link perhaps.
> 

Gave those a try.  Cfdump shows the values are making it into the struct,
but something goes wrong in cffeed.

The error: "The system has attempted to use an undefined value, which
usually indicates a programming error, either in your code or some system
code. 
Null Pointers are another name for undefined values. "

I assume that means that the name of the vlue they expect is empty and
different from the one I have given them.

I tried url, href, permalink, link, guid, value and among others.

-Nate

~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288515
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Cffeed - creating RSS Feeds and guid

2007-09-14 Thread Nathan C. Smith
I'm trying to use cffeed in ColdFusion 8 to create an RSS 2.0 feed.  I
basically lifted the example from the docs.I'm running into problems
with the guid field.  I used Feed validator to check what I had
(http://feedvalidator.org/docs/warning/MissingGuid.html) and it told me I
was missing a GUID field.  

I added the field in my code:


And CF told me it had to be a struct.  So if I create a new struct for guid,
what do I use as names to refer to the fields?  I don't think it is clear in
the docs.  Can someone correct me?

I'm not entirely comfortable with structures so if I'm being daft please
point that out gently.  Thanks.

-Nate

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288513
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Text to HTML?

2007-08-21 Thread Nathan C. Smith
 

> -Original Message-
> From: Paul Vernon [mailto:[EMAIL PROTECTED] 
> Sent: Tuesday, August 21, 2007 2:22 PM
> To: CF-Talk
> Subject: RE: Text to HTML?
> 
> >  >>I'm struggling to find any code that does this
> > 
> > Hmmm... this what?
> 
> I'd have thought the subject said it all... Text to HTML... 
> Anyway, I'm just
> testing out http://sebduggan.com/CFX_Markdown/ which seems to 
> do the trick
> for the most part and covers smart quotes into the bargain!
> 
> Paul
> 
> 

There might be some stuff in a coldfusion wiki you could borrow.  Although
it isn't quite clear what it is you want to do.

-Nate

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286753
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Verity spidering

2007-02-28 Thread Nathan C. Smith
CFMX7 

I have a real hodge-podge of links on our intranet index page.  Some of them
are FQDN URLs and some are relative links.  When using vspider.exe it seems
to skip the FQDN URLs.  When I tried to use the FQDN instead of localhost
for indexing it gave me a message about being licensed for local searching
only.

Do I need to rework all my Intranet links to relative links to use vspider?
Is there way to educate vspider about different names for the localhost?

I found a few pages on vspider on macromedia and on a blog, but if somebody
knows of a super definitive (tricks and traps) vspider page feel free to
send me there.

Many Thanks!

-Nate


Nathan Smith  McKee, Voorhees & Sease, P.L.C.

~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:270962
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: ANN: GotCFM.Com is Launched - Dedicated to CF Evangelism

2007-02-27 Thread Nathan C. Smith
How about a thumbnail of the homepage? 

> -Original Message-
> From: Rey Bango [mailto:[EMAIL PROTECTED] 
> Sent: Tuesday, February 27, 2007 12:16 AM
> To: CF-Talk
> Subject: Re: ANN: GotCFM.Com is Launched - Dedicated to CF Evangelism
> 
> The list of sites is now up.
> 
> http://www.gotcfm.com/thelist.cfm
> 
> I'll be expanding it tomorrow to also display the description 
> of the site.
> 
> Rey...
> 
> Mik Muller wrote:
> > When do we get to see the list of sites?
> > 
> > Mik
> > 
> > 
> > 
> > 
> > 
> > Michael Muller
> > Admin, MontagueMA.net Website
> > work (413) 863-0030
> > cell (413) 320-5336
> > skype: michaelBmuller
> > http://www.MontagueMA.net
> > 
> > Eschew Obfuscation
> > 
> > 
> > 
> > 
> > 
> 
> 

~|
Create Web Applications With ColdFusion MX7 & Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:270838
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Credit Cards - How to handle

2007-02-19 Thread Nathan C. Smith
One-way encryption 

> -Original Message-
> From: Pete [mailto:[EMAIL PROTECTED] 
> Sent: Monday, February 19, 2007 2:12 PM
> To: CF-Talk
> Subject: Credit Cards - How to handle
> 
> Hi there
> 
> I have a client that has instructed me that he must be able 
> to have client
> credit card details stored in the database.
> 
> I tend to think that this is an unwise practice as if anyone 
> does hack into
> the database credit card info could then be obtained.
> 
> So I thought I would ask the CF community - how best to 
> handle receipt of
> credit card information.
> 
> I look forward to receiving replies on ways to approach this issue.
> 
> Regards
> 
> Pete
> 
> 
> 
> Upgrade to Adobe ColdFusion MX7
> Experience Flex 2 & MX7 integration & create powerful 
> cross-platform RIAs
> http://www.adobe.com/products/coldfusion/flex2/
> 
> Archive:
> http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messag
eid:270118
> Subscription: 
> http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
> Unsubscribe:
> http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=226
00.17148.4
> 
> 
> 
> 

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:270132
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Some Lessons Learned - the hard way of course

2007-02-13 Thread Nathan C. Smith
For those of us in 

* Do not use 'client' as the name of a variable.  Try to avoid the word
'client' as a database field name - alias it if you have to.  Client is a
Coldfusion Variable scope and can cause strangeness when used as a variable.

* valuelist() and quotedvaluelist() can save you from doing a lot of stupid
lists and concatenation.  You can immediately get a list (and a string) of
the elements of a column in a query using these two handy functions.
PreserveSingleQuotes is helpful in league with quotedvaluelist to prevent
single quotes from being stripped.

* Learning a language is easy, mastering one takes time.




Nathan Smith  McKee, Voorhees & Sease, P.L.C.

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269711
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: moving from CF 4.5 to 7.0

2007-02-05 Thread Nathan C. Smith
I'm in the process of doing this now.  And 4.0 to 6.1 before that - on
another box.  For the most part the update is going well.  I have a few
niggling details with how variables are referenced, but that has been the
biggest issue to date.

The "code-scanner"  in the administrator can be helpful but it will not
catch everything.

It will probably depend a lot on how many less obscure features you use too
- if any.  The one that reads and writes windows registry is the one that
comes to mind.

-Nate

> -Original Message-
> From: Mark Fuqua [mailto:[EMAIL PROTECTED] 
> Sent: Monday, February 05, 2007 3:15 PM
> To: CF-Talk
> Subject: RE: moving from CF 4.5 to 7.0
> 
> No personal experience, but I think the info you find about 
> 4.5 to MX or
> especially 6.1 would translate well.  I think 7.0 was mostly 
> about adding
> features and fixing bugs, not a big rewrite of the code base.
> 
> Mark
> 
> -Original Message-
> From: So Kenfused [mailto:[EMAIL PROTECTED]
> Sent: Monday, February 05, 2007 2:49 PM
> To: CF-Talk
> Subject: moving from CF 4.5 to 7.0
> 
> 
> Just started a new job and they are looking at moving from CF 
> 4.5 to CF7.
> We do have a Dev box, so we can play a little before doing it on the
> production boxes.
> 
> I'm finding several posts about going from 4.5 to 5, or MX 
> and the issues
> people ran into however, I am wondering if anyone who has 
> made the jump from
> 4.5 to 7 can provide details to any issues they might have 
> experienced.
> 
> 
> 
> 
> 
> 
> 

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268747
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Referring to a specific field in a query

2007-01-30 Thread Nathan C. Smith
Hi All,

I have two queries that have some overlapping names that I am using in a
cfoutput together (CF MX7)

#QueryName.field usually seems to do the trick, but if I wanted to be really
specific, is there something like 

Queries.queryname.tablename.field 

In order to refer very specifically to a field.  It becomes a bit confusing
using a fieldname from one query as a variable in another query.  (normally
I try to let the database do the work, but this database is Access and the
fields are a little convoluted).  I realize I could rename the fields in the
query if I need to.

Thanks.

-Nate

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268088
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Acrobat Reader Plugin Process Not Releasing

2007-01-26 Thread Nathan C. Smith
I don't have any answers, but I have been seeing this problem too.  My
machine has Acrobat 7.0 installed on it.  Windows XP, latest SPs etc.
I haven't researched the problem.  However it slows my machine down
miserably at times and I have to kill all the processes you describe and/or
reboot.

-Nate 

> -Original Message-
> From: Kris Jones [mailto:[EMAIL PROTECTED] 
> Sent: Friday, January 26, 2007 12:33 PM
> To: CF-Talk
> Subject: SOT: Acrobat Reader Plugin Process Not Releasing
> 
> We've got a CF application that has a frameset where a form 
> is in one frame, and a PDF is in the 2nd frame. The user can 
> cycle through a list of PDFs for which they would fill-out 
> the form, using a "save & next" type of deal. We've had 
> clients reporting that they're eventually getting an error:
> 
> Adobe Reader
> The maximum number of files are already open.
> 

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:267788
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


ColdFusion News Aggregators

2006-12-15 Thread Nathan C. Smith
Are there any free/low cost news aggregators/readers for ColdFusion?

I would like to put something on our intranet that would let people read
feeds and hopefully share them with others for some cross-pollination.
Searching, I found mention of some aggregators, but most of them seem to be
sites and not software.

Thanks.

-Nate

~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:264189
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: QoQ is killing me

2006-09-14 Thread Nathan C. Smith
Thank you!
 
That is what I will do.

-Nate

> -Original Message-
> From: Ben Nadel [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, September 14, 2006 10:43 AM
> To: CF-Talk
> Subject: RE: QoQ is killing me
> 
> 
> You can't use the function LEFT() in query of queries. Query 
> of queries only allows for a few functions such as UPPER() 
> and LOWER() for example. 
> 
> Can you perform the LEFT() call in the original Query before 
> it gets to CF? 
> 
> 
> ...
> Ben Nadel 
> www.bennadel.com
> Certified Advanced ColdFusion Developer
> 
> Need Help?
> www.bennadel.com/ask-ben/
> 
> 
> -Original Message-
> From: Nathan C. Smith [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, September 14, 2006 11:39 AM
> To: CF-Talk
> Subject: QoQ is killing me
> 
> I'm trying to run a query of queries like this 
> 
>   
>   SELECT file,serialno,left(serialno,3) 
> as thisPCT,
> imatterno, left(imatterno,6) as thisImatterno, patentno,issue,status
>   FROM qryPatents
>   WHERE thisPCT = 'PCT' and thisImatterno 
> = '#variables.thisfamily#'
>   
> 
> in CF MX7 and it keeps failing with
> 
> Query Of Queries syntax error.
> Encountered "left. Incorrect Select List, Incorrect select column, 
> 
> 
> I just went through the online docs for QoQ and there isn't 
> much mention of using functions in them.  Is it possible? 
> If anybody could take a quick peek at the above and offer any 
> suggestions I would be grateful.  Especially if I am 
> overlooking something obvious. Thanks.
> 
> -Nate
> 
> Nathan Smith  McKee, Voorhees & Sease, P.L.C.
> 
> 
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:253123
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


QoQ is killing me

2006-09-14 Thread Nathan C. Smith
I'm trying to run a query of queries like this 


SELECT file,serialno,left(serialno,3) as thisPCT,
imatterno, left(imatterno,6) as thisImatterno, patentno,issue,status
FROM qryPatents
WHERE thisPCT = 'PCT' and thisImatterno =
'#variables.thisfamily#'


in CF MX7 and it keeps failing with

Query Of Queries syntax error.
Encountered "left. Incorrect Select List, Incorrect select column, 


I just went through the online docs for QoQ and there isn't much mention of
using functions in them.  Is it possible? 
If anybody could take a quick peek at the above and offer any suggestions I
would be grateful.  Especially if I am overlooking something obvious.
Thanks.

-Nate

Nathan Smith  McKee, Voorhees & Sease, P.L.C.

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:253119
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Web page thumbnails

2006-09-14 Thread Nathan C. Smith
Amazon.com has an inexpensive (I think) web service that will do this.
I don't know if the web page has to already be in their library or if it is
dynamic.

http://Aws.amazon.com

http://www.amazon.com/AWS-home-page-Money/b/ref=sc_fe_l_1/102-0823466-619213
0?ie=UTF8&node=3435361&no=3435361&me=A36L942TSJ2AJA

-Nate

> -Original Message-
> From: DURETTE, STEVEN J (ASI-AIT) [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, September 14, 2006 9:08 AM
> To: CF-Talk
> Subject: Web page thumbnails
> 
> 
> Hi all,
>  
> Can anyone tell me of a way to generate thumbnails of web 
> pages from ColdFusion?  A co-worker is asking for a personal 
> project he is working on (so I'm guessing that he is looking 
> for a no/low cost solution).
>  
> Thanks
> Steve
>  
> 
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:253118
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Complex object types - a little help?

2006-07-10 Thread Nathan C. Smith
Argh!

That be pirate speak for messin' up.  I was referring to 'client' which was
my loop index and also a field in the query.  

Thanks All for the pointers though!

-Nate

> -Original Message-
> From: Charlie Griefer [mailto:[EMAIL PROTECTED] 
> Sent: Tuesday, July 11, 2006 12:03 AM
> To: CF-Talk
> Subject: Re: Complex object types - a little help?
> 
> it's already a list.  delimited with a pipe character.
> 
> you can use any list function on it...you just need to 
> specify the delimter in the list function.
> 
>   listToArray(myList, '|') />
> 
> You can also loop through it.
> 
> 
>  #client#
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246039
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Complex object types - a little help?

2006-07-10 Thread Nathan C. Smith
I have a query (well, database) with a field in it that is a hack.  It
basically contains a list.

This|that|other

In CF 4.5 I could treat this as a list an loop through it.  It is drawing an
error in CF 7.02: "Complex object types cannot be converted to simple
values."

In the case below I assigned the query field to a variable -
practicearealisting hoping that might help.


#client#


In short, what I am asking, is for a way to convert this list-in-a-string to
a real list.  And if there is a regular way of doing this?  I've a feeling
the answer is staring me in the face.  Maybe somebody could poke my eye with
it?  Thanks.

-Nate

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246029
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE:[OT] some advice needed to choose a switch

2006-07-06 Thread Nathan C. Smith
Ask yourself if you really need layer 3 or higher.  That's going to get
expensive.  Maybe you can accomplish what you want using your
router/firewall and/or vlans?  Gigabit may be overkill if the servers are
only talking to the Internet.

I have good luck with adtran Netvanta products - great warranty and support.
Solid conservative designs.
Dell switches are made by a variety of companies including netgear
Some people like netgear, but they look at them as being "disposable".  As
in, have one ready in the wings in case it dies.  They have performance on
par with more expensive brands.
I also hear good things about HP procurve line.  A lot of people go this way
instead of Cisco.
Extreme makes an incredible, but expensive product.  If you say "cisco" to
your extreme sales person they will beat cisco prices.  You can get about
anything you need in the Extreme line-up of products.
Nortel makes a solid product.
3com is an option.  Most 3com products are made by Huawei and Huawei will be
a major telecom player within the decade.  I dropped 3com because of their
new support policies and pricing.

-Nate

> -Original Message-
> From: Beru [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, July 06, 2006 3:35 AM
> To: CF-Talk
> Subject: OT: some advice needed to choose a switch
> 
> 
> Hello,
> 
> I am helping a friend to buy a switch (rackmounted) to handle 
> his 3+ servers in a telco rack. We do not have much 
> experience about this, but as specifications, we need:
> - managed switch (web interface, snmp, ...)
> - gigabit speed (at least for half of the ports)
> - layer 3 or better, layer 4 (transport) support
> - at least 12 ports, but no need for more than 24
> - price : no more than 500 ˆ (or around)
> 
> Does these specs make sense? Could you recommend a product?
> 
> Thanks,
> Albert
> 
> PS: answers containing "CISCO" will be marked as spam! ;-))
> 
> 
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245513
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: I feel like fighting...

2006-07-05 Thread Nathan C. Smith
Everybody was framework fighting,
Those developers were fast as lightening
In fact it was a little bit frightening,
But they wrote code with expert scheming

Er, sorry.

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245400
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


Security Best Practices?

2006-07-03 Thread Nathan C. Smith
I am aware of the documents at the Adobe/Macromedia Knowledgebase about
securing ColdFusion.  However, I wonder if there is another definitive
checklist or document somewhere else?  I'm mostly concerned with
configuration of the servers (coldfusion/IIS) even though I realize
application design is an important aspect of security too.

Thanks for any pointers.

-Nate

  

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245304
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: mail server connection verification

2006-06-30 Thread Nathan C. Smith
Did somebody already mention telnetting to port 25 on the mail machine from
the server?

Is the mail server set up to not accept SMTP connections from any IP
addresses but specific ones?

-Nate

> -Original Message-
> From: Russ [mailto:[EMAIL PROTECTED] 
> Sent: Friday, June 30, 2006 3:33 PM
> To: CF-Talk
> Subject: RE: mail server connection verification
> 
> 
> Are you absolutely 100% sure that firewall is not installed 
> and/or enabled on the server?  Windows firewall comes 
> preinstalled with SP1 and you have to make sure that it's disabled.  
> 
> Also try pinging the mail server from both your laptop and 
> your server and see if the pings get through... You can also 
> try doing a tracert to see if the packets are taking the 
> wrong route somewhere. 
> 
> Also check that you don't have any routing policies in place 
> (on the server for example) which deny connections to any 
> except specified ip addresses. 
> 
> Russ
> 
> > -Original Message-
> > From: Bryan Stevenson [mailto:[EMAIL PROTECTED]
> > Sent: Friday, June 30, 2006 3:59 PM
> > To: CF-Talk
> > Subject: Re: mail server connection verification
> > 
> > Thanks Tom and Tanguy.
> > 
> > Yep...telnet confirms that the server cannot establish a 
> connection to 
> > the mail server (and my laptop can).
> > 
> > Now the fun beginswhat could be the problem??
> > 
> > There is no firewall (but there is a DSL router, but both my laptop 
> > and the server go through the router, so it's not the router).
> > 
> > IIS is NOT installed (can't see why it would matter but it's worth 
> > mentioning)...we're running Apache.
> > 
> > I'll keep digging, but if anyone has soome more 
> suggestions...ley 'em 
> > on me.
> > 
> > TIA
> > 
> > Cheers
> > 
> > Bryan Stevenson B.Comm.
> > VP & Director of E-Commerce Development
> > Electric Edge Systems Group Inc.
> > phone: 250.480.0642
> > fax: 250.480.1264
> > cell: 250.920.8830
> > e-mail: [EMAIL PROTECTED]
> > web: www.electricedgesystems.com
> > 
> > 
> > 
> 
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245183
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: FJAX - discuss amongst yourselves

2006-06-23 Thread Nathan C. Smith
Maybe it doesn't scale well?


> 
> Finally, I had an amusing moment when clicking on the "View 
> FJAX in Action" link; I got "Service Unavailable" as a page.
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:244661
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: Resistance is futile, you have been assimilated.

2006-06-22 Thread Nathan C. Smith
Open the pod bay doors HAL

> -Original Message-
> From: Ian Skinner [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, June 22, 2006 12:56 PM
> To: CF-Talk
> Subject: AOL: Resistance is futile, you have been assimilated.
> 
> 
> http://www.nbc10.com/news/9406462/detail.html
> 
> Has this made it to this group yet?
> 
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:244583
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: how to do a cfldap query

2006-06-20 Thread Nathan C. Smith
There is a neat little program called softerra LDAP browser that is handy
for figuring out LDAP schemas.

-Nate

> -Original Message-
> From: Srinivasa Teja Palla [mailto:[EMAIL PROTECTED] 
> Sent: Tuesday, June 20, 2006 4:07 PM
> To: CF-Talk
> Subject: how to do a cfldap query
> 
> 
> Hi,
> 
> I have been putting this off for a while, I have a active 
> directory server, I know the IP, I know the username and 
> password with admin rights on this server. How do i query 
> this using cfldap to get list of all users to start with. I 
> know I have to give a "start" DN but how do I know the DN ? 
> Where can i get the DN from? I have access to the LDAP 
> machine. Please help.
> 
> 
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:244312
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: Sticking with CF...

2006-06-15 Thread Nathan C. Smith
In addition there is an upgrade tool that will look through all your code
and tell you where compatibility problems are.  I think that was introduced
in CF5

-Nate

> -Original Message-
> From: Rick Faircloth [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, June 15, 2006 12:40 PM
> To: CF-Talk
> Subject: RE: Sticking with CF...
> 
> 
> Well, that's certainly good news.  I was very concerned
> about having to recode all the websites I have built and 
> still host on 4.5.
> 
> Rick
> 
> 
> -Original Message-
> From: Robert Everland III [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, June 15, 2006 1:30 PM
> To: CF-Talk
> Subject: Re: Sticking with CF...
> 
> The administrator is just about exactly the same, minus some 
> style sheet changes and new options. It hasn't changed much 
> from the 3.0 days if not earlier.
> 
> You should be able to run all of your existing code under 
> CFMX 7 with little or no changes. All of the tags that have 
> been deprecated still work.
> 
> 
> 
> Bob
> 
> 
> 
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:243638
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


CF MX6 to MX7 upgrade uses old data sources?

2006-06-15 Thread Nathan C. Smith
I updated a machine from Windows 2000 to Windows 2003 (server) and then ran
the install for CF MX7.  I think it did a side by side install with MX6.  

The web site, an intranet, is now running from MX7, except it seems to be
using the MX6 data sources for MS Access databases.

All the data sources are listed in the MX7 data source configuration pages.
If I stop the MX6 ODBC services and restart MX7 (MX6 is stopped) I get
errors on the pages that are trying to draw from these access databases.

So I'm wondering, has anybody else seen this?  I recreated one of the data
sources in the database administrator and then stopped the MX 6 services and
it verified OK.  Is there a program or script to migrate the Data source
settings?  If this is a FAQ I must be using the wrong keywords.

I appreciate any and all pointers.  Thanks much.

-Nate

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:243599
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


How Updated am I?

2006-03-14 Thread Nathan C. Smith
I just installed a recent download of CF MX7.  My version reads:
7,0,1,116466   

The hotfix released on 3/2/2006 doesn't indicate on the web page what the
version will be once applied.  I'm trying to determine if I need to apply
this or not.  Has anyone who has applied it checked their version?

Also, can anyone comment on this:
"Macromedia recommends that CHF2 only be applied to ColdFusion MX 7.0.1 if
you are experiencing one or more of the specific fixed issues listed below,
and then only to ColdFusion MX 7.0.1 (specifically)."

Is that truly the best practice, or should I apply regardless if necessary?

Thanks.

-Nate

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235386
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: OT: Copyright Attorney

2006-03-13 Thread Nathan C. Smith
Internet Wayback machine is also an option.

> -Original Message-
> From: Matthew Blatchley [mailto:[EMAIL PROTECTED] 
> Sent: Monday, March 13, 2006 1:18 PM
> To: CF-Talk
> Subject: Re: OT: Copyright Attorney
> 
> 
> Good point.
> 
> 
> >> Wouldn't the pages be cached on Google, even if they did change it?
> >

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235253
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: OT: Copyright Attorney

2006-03-13 Thread Nathan C. Smith
Bud,

This is a plug, but mostly I want to try to help a fellow CF'er
The firm I work for is in intellectual property we have several attorneys
who specialize in copyright and trademark (as well as many more in patents).

At any rate, we have a free 30 minute consult to see what is possible.  Give
us a call: 515-288-3667
www.ipmvs.com

-Nate

> -Original Message-
> From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] 
> Sent: Monday, March 13, 2006 10:28 AM
> To: CF-Talk
> Subject: RE: OT: Copyright Attorney
> 
> 
> Neil Robertson-Ravo wrote:
> 
> > Which site/product?
> 
> http://www.cf-ezcart.com
> 
> My guess:
> 
> http://www.itsgroup.org/ecommerce_main.htm
> 
> I hit bud's site then copied and pasted the first sentence of 
> the last paragraph (quoted) into google. The offending site 
> came right up - 2nd site in the search.
> 
> > -Original Message-
> > From: Kevin Graeme [mailto:[EMAIL PROTECTED]
> > Sent: 13 March 2006 15:14
> > To: CF-Talk
> > Subject: RE: OT: Copyright Attorney
> 
> > I ran across it while researching carts last week and considering 
> > their pages describing their product are exactly your pages
> > dropped into their
> > site template, I clued in right away that they had just
> > ripped off your site
> > if not your cart. So it looks like you might have multiple
> > things to go
> > after them on.
> 
> > As for lawyers, in this state lawyers aren't technically limited to 
> > one specific area of law. So if the bar gives them a license,
> > they can practice
> > any law. But in practicality, they do have their areas of
> > personal
> > expertise. So be aware that while a lawyer may tell you
> > that they can take a
> > copyright case, it may not be their specialty.
> 
> > Good luck.
> 
> 
> s. isaac dealey 434.293.6201
> new epoch : isn't it time for a change?
> 
> add features without fixtures with
> the onTap open source framework
> 
> http://www.fusiontap.com 
> http://coldfusion.sys-con.com/author/4806Dealey.htm
> 
> 
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235208
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: Creating a string of len(x)

2006-02-03 Thread Nathan C. Smith
Much better, many thanks.

-Original Message-
From: Michael T. Tangorre [mailto:[EMAIL PROTECTED] 
Sent: Friday, February 03, 2006 2:32 PM
To: CF-Talk
Subject: RE: Creating a string of len(x)


> From: Nathan C. Smith [mailto:[EMAIL PROTECTED]
> So I want to create a function to create string of arbitrary 
> length before I put anything into it (well, printable 
> characters anyway)
> So I'm thinking there must be something better than
> Loop 1 to x time
> 
> Loop
> And it's probably really obvious, but can somebody shoot me a 
> clue.  (list?
> Array of char?)

RepeatString(string,count) 

:-)





~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:231295
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


Creating a string of len(x)

2006-02-03 Thread Nathan C. Smith
So I want to create a function to create string of arbitrary length before I
put anything into it (well, printable characters anyway)

So I'm thinking there must be something better than

Loop 1 to x time

Loop

And it's probably really obvious, but can somebody shoot me a clue.  (list?
Array of char?)

Thanks.

-Nate

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:231292
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: Print to a printer

2006-01-23 Thread Nathan C. Smith
Some printers now have the ability to print from a mailbox using pop3.  You
might be able to set ColdFusion up to send a printer formatted message to
the pop3 mailbox that the printer could print from.

I think HPs and Xeroxes do this, maybe Lexmark, and probably others.

-Nate

-Original Message-
From: Robert Everland III [mailto:[EMAIL PROTECTED] 
Sent: Friday, January 20, 2006 8:06 AM
To: CF-Talk
Subject: Print to a printer


I have a perl script that prints directly to a printer when a user submits a
form. Is there a way that ColdFusion can do this through Java? Has anyone
done this before. The printer will be attached to my network locally.



Bob



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230258
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: eGovernment and Wiki's --- anyone making Wiki's with CF?

2006-01-11 Thread Nathan C. Smith
I'd rather send you paypal $$ than get all the other stuff I don't really
need.

How about camden's Quarterly applications.  Of course you could solicit
contributions.

How about it?

-Nate

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, January 11, 2006 1:15 PM
To: CF-Talk
Subject: Re: eGovernment and Wiki's --- anyone making Wiki's with CF?


DRK 13 (the one with my Wiki on it) was the last one that will be released.
(Unless Adobe changes their minds. I wish they would. I loved sharing the
apps on the DRK. :)

On 1/11/06, Zaphod Beeblebrox <[EMAIL PROTECTED]> wrote:
> How many people actually have access to the DRK's anymore?  I'm not 
> even sure why they're releasing DRK's.
>
>
> On 1/11/06, Cameron Childress <[EMAIL PROTECTED]> wrote:
> > A Wiki is simply a specialized form of CMS.  There is one in CF if 
> > you have access to the DRKs.
> >


-- ===
Raymond Camden, Director of Development for Mindseye, Inc (www.mindseye.com)

Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : ray.camdenfamily.com
Yahoo IM : cfjedimaster

"My ally is the Force, and a powerful ally it is." - Yoda



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229260
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: Current Status of MySQL 5 with CF MX

2005-12-08 Thread Nathan C. Smith
Thanks for all the feedback on this.
Based on comments so far, I don't think I'm going to go to 5.0 quite yet.
Many thanks.

-Nate



I have been running MySQL 5 with CF since it was still in Beta.  Granted, I
am not running large applications with it, but it is working as expected.
You need to use the MySQl JConnector JDBC drivers, a bit more difficult to
set up in CFAdmin than the included drivers, but not difficult by any
stretch of the imagination.
--
Scott Stroz
Boyzoid.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:226648
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


Current Status of MySQL 5 with CF MX

2005-12-08 Thread Nathan C. Smith
I'm wondering if anyone is using MySQL 5 with ColdFusion MX and if there are
any gotchas or tips they could impart for making them work together.  I have
an application I want to run that is asking for a later version than I have
installed (4.0x or so). 

I assume it would be necessary to use a newer ODBC driver too?

Tips pointers and links much appreciated.  Thanks.

-Nate

~|
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:226624
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: Verity on Linux will not index PDFs

2005-06-01 Thread Nathan C. Smith
Sorry if this is an obvious question, but do your PDFs have text in them -
they are not image-only PDFs are they?

-Nate

-Original Message-
From: chad gray [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 01, 2005 12:40 PM
To: CF-Talk
Subject: Verity on Linux will not index PDFs



Hello,

I am having more troubles with Linux verity.  I am using the following to
index the files in a folder:

http://somesite/UserFiles/File/"; 
extensions=".pdf, .doc" 
custom1="pdf"
recurse="yes"
language="english"> 

This will index the word documents in the folder, but not the PDFs.

When i search i get no results for the PDFs.  I will get results for the
Word documents.

If i run this exact same code on my windows box it indexes PDFs and Word
docs just fine.

Any Ideas? 



~|
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:208272
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: Man, this is so OT...

2005-05-13 Thread Nathan C. Smith
Grey is what I wear, white is what I would choose.  I thought grey shirts
and dark pants were a geek uniform.

More importantly is the size.  2X or 3X

~|
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:206637
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: RequestTimeout=900 equivalent for custom tags?

2005-03-23 Thread Nathan C. Smith
Thanks gentlemen!

-Nate

-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 23, 2005 4:48 PM
To: CF-Talk
Subject: Re: RequestTimeout=900 equivalent for custom tags?





cheers,
barneyb

On Wed, 23 Mar 2005 16:41:50 -0600, Nathan C. Smith <[EMAIL PROTECTED]> wrote:
> Is there a way I can specify a timeout value when I call a custom tag?  
> I have a Custom Tag that relies on a web site that needs a little more 
> time to complete.
> 
> Sorry if this is a FAQ, I've been away.
> 
> Thanks.
> 
> -Nate
> 

-- 
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:199838
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


RequestTimeout=900 equivalent for custom tags?

2005-03-23 Thread Nathan C. Smith
Is there a way I can specify a timeout value when I call a custom tag?  I
have a Custom Tag that relies on a web site that needs a little more time to
complete.

Sorry if this is a FAQ, I've been away.

Thanks.

-Nate


~|
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:199835
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


cfMail senior moment - including grouped query results

2004-06-29 Thread Nathan C. Smith
Sorry to burden the list with my stupid question, but my brain is
withholding CF knowledge from me today.

I'm trying to send a single message to a single address that contains a
"grouped Query".

I want to send a list of items grouped by individual.  When I use 
inside  the  tags I get an error.

If I add query="my query" and group="personName" to the cfmail tag it sends
multiple messages broken by the personname.

I only want to send a single e-mail message that contains the output of a
grouped query, what am I missing?

Thanks.

-Nate

Nathan Smith  McKee, Voorhees & Sease, P.L.C.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: excel files

2004-05-21 Thread Nathan C. Smith
How many people will be querying the excel file?  

 
Could you create an Excel DSN with a file of a given name, but copy the
active file to the DSN file and name as it was being used?

 
Somebody else may be able to jump in here, but I think there is a way to
stop and restart a DSN programmatically, so perhaps you could stop the DSN,
copy the file and then access the DSN...

 
Maybe you've already been down this road?

 
-Nate

 
-Original Message-
From: George Abraham [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 21, 2004 8:20 AM
To: CF-Talk
Subject: excel files

Hi,
I asked a question sometime back about reading excel files with CFMX 
without using a defined datasource. No answers yet, but is there another 
forum I could be asking this question?

Thanks,
George 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: SOT: Directory Tree crawler with file size sorting?

2004-05-19 Thread Nathan C. Smith
Are we so GUI-centric we have forgotten the old ways of doing things?

 
Drop into a command prompt  Type this: dir /O-S /S |sort /+30 /r

 
It will list all files on your system largest to smallest.  use dir /O-S /S
|sort /+30 /r |more 
to see them a page at a time.

 
-Nate

 
-Original Message-
From: Burns, John D [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 19, 2004 10:53 AM
To: CF-Talk
Subject: RE: SOT: Directory Tree crawler with file size sorting?

OS level is fine.  This is more for server management than for specific
use from within CF.  I am, however, trying to keep a certain set of
directories in check because I'm serving files through CFCONTENT and
don't want to server huge files through that.

John 

-Original Message-
From: Pete Ruckelshaus - CFList [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 19, 2004 11:25 AM
To: CF-Talk
Subject: Re: SOT: Directory Tree crawler with file size sorting?

Are you looking for a utility to use from the OS level, or for something
to use from within CF?

Burns, John D wrote:
> Does anyone know of a good free tool that will crawl a drive/directory

> on a webserver and output a list of all of the files and directories 
> and the sizes of them and allow you to sort by sizes, etc?
>  
> My main goal is to find large files that exist on the drive that can 
> be deleted.  Any tools or suggestions would be great.
>  
> John Burns
> 
> 
> 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Email Problem

2004-05-06 Thread Nathan C. Smith
Need help, 
send code.

 
-Original Message-
From: Lofback, Chris [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 06, 2004 1:06 PM
To: CF-Talk
Subject: RE: Email Problem

Works great for me--CFMX 6.1 on Win2K/IIS5, Exchange 2K, Outlook 2K.

Chris 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: PDF to SWF ??

2004-05-05 Thread Nathan C. Smith
Flashpaper, available in MM Contribute can do something akin to this -
though I don't think it can be done programmatically.  (would be a nice
addition to future CF versions - embedded report write with flashpaper/PDF
functionality)

 
-Nate
-Original Message-
From: Tony Pimm [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 05, 2004 3:44 AM
To: CF-Talk
Subject: PDF to SWF ??

Does anyone know of any tools that I can use from within ColdFusion to
convert a PDF to a SWF for use in an Flash application?  Any related
conversion utilities would be welcome, I just need to get some non-flash
documents into an RIA.

Any Java libraries that do this?

Thanks.
Tony 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Crystal 8.5 with CF MX 6.1

2004-04-23 Thread Nathan C. Smith
Security settings for the account running ColdFusion is able to run the
report too - has the right permissions?

-Original Message-
From: Steven Haas [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 23, 2004 12:31 PM
To: CF-Talk
Subject: Crystal 8.5 with CF MX 6.1

We are trying to run a simple Crystal Report (built using version 8.5) using
a CFREPORT tag in a Cold Fusion page. My understanding is that this should
be relatively routine. 

The tag reads: 

It is the only significant code in the BODY of the page (to keep the test
simple).

When we try to run the page, we get the following error:
"An unexpected error occurred while using the Crystal Engine. Error number
599 ocurred (Cannot open SQL server.)." 

We are running Windows 2000 Server with SP3, IIS, MDAC 2.6 SP 2, Crystal
Reports 8.5 (loaded as recommended in cfmx_crystal85.htm on the MacroMedia
site...Crystal loaded as Custom, adding Crystal SQL Designer to be loaded,
checking that CRPE32.dll is in the system32 directory), and CF MX 6.1.

We defined the ODBC connection to our SQL server database and it verified.
We ran a simple Cold Fusion test page that accessed that database and it
worked. We ran the crystal report in crystal (using that database in the
report) and it worked. When we try to run the crystal report from CFREPORT
in CF, it fails with the error above.

Any suggestions? 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Currency converter webservice

2004-04-23 Thread Nathan C. Smith
We use Oanda regularly in our law practice, not as a webservice, however.

 
-Nate

 
-Original Message-
From: Kola Oyedeji [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 23, 2004 8:38 AM
To: CF-Talk
Subject: RE: Currency converter webservice

Doug 

Thanks for the links but as Phillip pointed out I don't think they are
all webservices, also have you used any of them?

Kola

-Original Message-
From: Doug White [mailto:[EMAIL PROTECTED] 
Sent: 23 April 2004 13:16
To: CF-Talk
Subject: Re: Currency converter webservice

http://www.oanda.com/convert/classic

http://www.xe.com/ucc/

http://finance.yahoo.com/m3?u

http://www.x-rates.com/calculator.html

http://money.cnn.com/markets/currencies/

http://jazconvert.com/  This one you can put on your web site - (cost:
$19.95)

http://www.bloomberg.com/analysis/calculators/currency.html

http://homeusers.brutele.be/alexSofts/

http://dmoz.org/Computers/Software/Currency_Conversion/

==
We can get rid of spam on your domain! , Anti-spam solutions
http://www.clickdoug.com/mailfilter.cfm
For hosting solutions http://www.clickdoug.com
==

  - Original Message - 
  From: Kola Oyedeji
  To: CF-Talk
  Sent: Friday, April 23, 2004 6:53 AM
  Subject: Currency converter webservice

  Can anyone recommend a free or commercial currency conversion
  webservice. I realize google throws up a few, however I'm looking for
  some recommendations from personal experience. I'm particularly
  interested in any which can guarantee a certain level of accuracy and
up
  time.

  Thanks

  Kola Oyedeji
  Certified Advanced Coldfusion Developer,
  ICLP London
  DDI: +44 (0) 208 256 9034 (Ex.2204)

  www.iclployalty.com
  _ 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: "FREE" BD vs. "$$$$" CF

2004-04-21 Thread Nathan C. Smith
When the only tool you have is a hammer you tend to see the problem as a
nail.

-Original Message-
From: Jim Davis [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 21, 2004 7:48 PM
To: CF-Talk
Subject: RE: "FREE" BD vs. "" CF

Actually we use CICS on our mainframe. I've just started a project where I
need to deal with it for the first time.

Also, just to round this out, it was IBM Consulting Services that
"recommended" WebSphere as the obvious solution for the enterprise.  The
management hired them to examine our then-current applications (written for
our part in CF) and determine our future course of action.

How surprised were we when they settled on WebSphere on AIX?  Not very.  ;^)

Jim Davis

  _  

From: Dick Applebaum [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 21, 2004 11:20 AM
To: CF-Talk
Subject: Re: "FREE" BD vs. "" CF

On Apr 21, 2004, at 7:48 AM, Jim Davis wrote:

> This isn't all that odd. in my case the problem is similar, but comes 
> from
>  another end.  My (very large) company won't consider either product 
> because
>  their both too cheap - and so (goes the management opinion) are not 
> fit for
>  enterprise use.
>
>

I used to work for IBM Data Processing Division and many IBM products 
were (rumored to be) priced this way (high) because they had a 
"perceived" greater worth.

One specific product comes to mind, CICS.

This was a back-end terminal to MaimFrame CPU (no network) information 
system.

It was a good system, but nowhere near the capability, power, 
ease-of-use, etc. of CFMX.

Work was essentially completed on the product in the 1980's and it went 
into maintenance mode (no new development)

The last I heard the number of users of the CICS (MaimFrame DOS) 
version was over 30,000 users.

The average cost to IBM customers was $3,000

per month

You do the math!

Dick

  _ 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: SMTP

2004-04-21 Thread Nathan C. Smith
Copy them out of the spool folder and back in one at a time.

 
-Original Message-
From: Eric Creese [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 20, 2004 5:01 PM
To: CF-Talk
Subject: SMTP

Ok I hae a bunch of mail sitting in my Spool folder. I have bounced IIS and
the SMTP server several times. These emails were originally in my
Undelivered folder cause SMTP was not started when these emails should have
been ran. I just ran an email off the server to another email acount using a
form on one of my sites and I received it successfully. I copied all the
undelivered emails and paced them in the spool folder but they are not being
sent. Any ideas? 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: CFMX for sale

2004-04-20 Thread Nathan C. Smith
The ring cannot be used for good.

-Original Message-
From: Paul Kenney [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 20, 2004 3:34 PM
To: CF-Talk
Subject: RE: CFMX for sale

What if the money went back to the User Group for fun events or paid
speakers?

Paul Kenney
[EMAIL PROTECTED]
916-212-4359

> -Original Message-
> From: Bryan Stevenson [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, April 20, 2004 11:24 AM
> To: CF-Talk
> Subject: Re: CFMX for sale
>
>
> I second Ryan's comments (being a CFUG manager myself).  I
> also beleive that licencing of the raffled products prohibits
> their use for a commercial site/application (but allowed for
> commercial development).
>
> Of course you may ahve won it somewhere else...if so...go for it ;-)
>
> Cheers
>
> Bryan Stevenson B.Comm.
> VP & Director of E-Commerce Development
> Electric Edge Systems Group Inc.
> t. 250.920.8830
> e. [EMAIL PROTECTED]
>
> -
> Macromedia Associate Partner
> www.macromedia.com
> -
> Vancouver Island ColdFusion Users Group
> Founder & Director
> www.cfug-vancouverisland.com
>   - Original Message -
>   From: Ryan Hartwich
>   To: CF-Talk
>   Sent: Tuesday, April 20, 2004 11:18 AM
>   Subject: Re: CFMX for sale
>
>
>   Susan,
>
>   If you won the raffle via a CF or Macromedia user group, I
> urge you to please reconsider your sale.  Sure, getting some
> $ for it is nice, but I'm pretty sure that MM did NOT intend
> for the winners to be reselling the software on the open market.
>
>   If users start selling the software that MM gives us to
> promote the groups, we seriously run the risk of being cut
> off.  They (our sponsors at MM) have to fight to get us the
> software as it is.
>
>   If you are unable to use the CF software and it came from a
> user group, please contact your user group manager and maybe
> we can work out a way to swap the software for something that
> will be of use to you.
>
>   Ryan, Kansas City CFUG Manager
>
>
> 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Softball/Baseball db app? (Maybe OT)

2004-04-20 Thread Nathan C. Smith
How much team information - the whole statsball mess or. .. 

 
Just about any CMS could display team information wins/losses next practice.

 
I'm certainly interested in what you find out and I might be interested in
helping you write something for our firm intranet for our firm team.

 
-Nate

-Original Message-
From: Chris Terrebonne [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 20, 2004 10:29 AM
To: CF-Talk
Subject: Softball/Baseball db app? (Maybe OT)

Morning Everyone,

I was thinking of putting together a db app that tracks the team information
and game schedule/results for my daughter's softball team.  Before I started
hacking this out, I wanted to see if there was anything pre-rolled for this
purpose.  Anyone done this before?

Thanks in advance, and my apologies if this is OT.

Chris 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Error adding CF Datasource

2004-04-15 Thread Nathan C. Smith
Is your service account for all the ColdFusion services set up as a domain
user with security access to the appropriate systems?

-Original Message-
From: Burns, John D [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 15, 2004 12:57 PM
To: CF-Talk
Subject: Error adding CF Datasource

Ok, I just set up a new server with Windows 2k3 server.  This is the
first go around I've had with working on W2k3.  I installed MS SQL and
CFMX 6.1 on the server.  I can connect to the SQL server fine through
enterprise manager and I set it up a windows user to use when connecting
to the sql databases.  I went into the CF admin and set up a datasource.
When I submit the datasource, I get the following error:

Connection verification failed for data source: (mydatasource)
[]java.sql.SQLException: [Macromedia][SQLServer JDBC
Driver][SQLServer]Login failed for user '(domain\cfuser)'. Reason: Not
associated with a trusted SQL Server connection.
The root cause was that: java.sql.SQLException: [Macromedia][SQLServer
JDBC Driver][SQLServer]Login failed for user '(domain\cfuser)'. Reason:
Not associated with a trusted SQL Server connection.

What I'm trying to figure out is whether this is a CF thing or a SQL
server thing or maybe some new default security lock-down in W2k3.
Please help! :-)

Thanks,

John Burns 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




OT Whois MM NetTools

2004-04-15 Thread Nathan C. Smith
I am working with the whois in the Nettools from one of the DRKs.  Trying to
make a web-based tool for staff to easily query whois.

I don't know anything about whois but I'm finding when I query a name
registered with register.com on network solutions' whois I don't get a
result.  Is that correct behavior.

My real question is when I do a whois in Linux, near the top of the response
it says 

[Querying whois.internic.net]
[Redirected to whois.networksolutions.com]
[Querying whois.networksolutions.com]
[whois.networksolutions.com]

Why and how does it know to do this or is networksolutions simply the first
stop after whois.internic.net?

Thanks for the insight.

-Nate

Nathan Smith  McKee, Voorhees & Sease, P.L.C.  515.288.3667
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: RedHat AS 2.1 and Verity

2004-04-15 Thread Nathan C. Smith
You may want to look at alkaline.

 
-Nate

-Original Message-
From: Doug James [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 15, 2004 10:03 AM
To: CF-Talk
Subject: RedHat AS 2.1 and Verity

I asked Macromedia for a definite answer: Does Verity support RedHat AS 2.1?
Today I received a negative response: "Unfortunately, RedHat Advance Server
2.1 is not supported by Verity. Please refer to the listing of ColdFusion
system requirements at this link:
http://www.macromedia.com/software/coldfusion/productinfo/systemreqs/". This
being contrary to some postings here.

So now here is my request for help: What other search engines have people
implemented? Pros/Cons?

Thanks for the help!

Doug

** Apologies for the cross posting *** 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Proving you are legitimate from CFMail

2004-04-14 Thread Nathan C. Smith
I should have added make sure your messages are going through a legitimate
mail host or a smart host with valid DNS information.

-Original Message-
From: Nathan C. Smith 
Sent: Wednesday, April 14, 2004 4:08 PM
To: CF-Talk
Subject: RE: Proving you are legitimate from CFMail

Make sure your e-mail server has a reverse lookup in DNS so that your IP can
be validated to your host-name.  This is a huge problem in my limited
experience with SMTP.

You may want to consider adding an SPF or caller-ID record to DNS as well.
In case you are not familiar with SPF here is a link:
"http://spf.pobox.com".  It isn't very widely implemented yet but many
antispam vendors and even AOL are in various stages of implementation.

If the messages are HTML you might want to make them mulitpart MIME, HTML
only messages send up a red flag.

-Nate

-Original Message-
From: Craig Earls [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 14, 2004 12:05 PM
To: CF-Talk
Subject: Proving you are legitimate from CFMail

I am developing a service that sends email to registered users about
upcoming events.  I keep getting errors about my mails being bounced as
spam.  Even test emails I am sending to myself are getting bounced by my
ISP.  What procedures does a business need to go through to prove they are
legitimate? 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Proving you are legitimate from CFMail

2004-04-14 Thread Nathan C. Smith
Make sure your e-mail server has a reverse lookup in DNS so that your IP can
be validated to your host-name.  This is a huge problem in my limited
experience with SMTP.

You may want to consider adding an SPF or caller-ID record to DNS as well.
In case you are not familiar with SPF here is a link:
"http://spf.pobox.com".  It isn't very widely implemented yet but many
antispam vendors and even AOL are in various stages of implementation.

If the messages are HTML you might want to make them mulitpart MIME, HTML
only messages send up a red flag.

-Nate

-Original Message-
From: Craig Earls [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 14, 2004 12:05 PM
To: CF-Talk
Subject: Proving you are legitimate from CFMail

I am developing a service that sends email to registered users about
upcoming events.  I keep getting errors about my mails being bounced as
spam.  Even test emails I am sending to myself are getting bounced by my
ISP.  What procedures does a business need to go through to prove they are
legitimate?
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Timeout connecting to access DB

2004-04-14 Thread Nathan C. Smith
Here is the link to the MM hotfix list
:'http://www.macromedia.com/support/coldfusion/ts/documents/tn17883.htm#MX61
'

By OS fully patched, do you mean it was run through all the Windows update
patches?  If so you may still be missing a recent MDAC update, you may wish
to check that too.  I can't remember off hand if 2.8 is the same version
that shipped with Win2k3 or not.

-Nate

Nathan Smith  McKee, Voorhees & Sease, P.L.C.  515.288.3667  

-Original Message-
From: cfhelp [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 14, 2004 8:28 AM
To: CF-Talk
Subject: Timeout connecting to access DB

I just recently upgraded the Servers, Windows 2k and CF5.0 to Win2k3 and
CFMX 6.1.  

The system is runs great for a few days and then all Access Database's start
to timeout. This does not seem to affect any other system on the server just
Access ODNC connections.

OS is fully patched

Rick
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: OT ? Emulation

2004-04-13 Thread Nathan C. Smith
On Unix: Wget.  PHP has it's own version of CFHTTP using the CURLlib.
Certainly Perl has something - or more than one option- as well.

 
-Nate

-Original Message-
From: Nick Baker [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 13, 2004 1:13 PM
To: CF-Talk
Subject: OT ?  Emulation

Well maybe heresy, instead of OT ;-)

Does anyone know of good non-CF scripts, Perl, CGI, etc. that perform the 
same function as ?

Thanks,

Nick 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: HELP: a browser sniffer test

2004-04-12 Thread Nathan C. Smith
Browser: MSIE
Version: 5.5 

 
general but accurate

 
-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED] 
Sent: Monday, April 12, 2004 4:25 PM
To: CF-Talk
Subject: HELP: a browser sniffer test

Hey All,

If you have a spare moment can you stop by:
http://142.179.101.53/internal/test/cf_brow_test.cfm

and report back to me (offlist please) at [EMAIL PROTECTED] with
what it spits out for browser and version (and what your browser and version
actually are).

I'm especially interested in hearing from those NOT using IE4+ and Netscape
7+

Please note this does not detect all browsers and versionsbut it is
meant to identify those that are not using IE 4+ and Netscape 4+.

Basically I'm weeding out any Netscape browser below version 6 and any IE
browser below version 4.  All other will be identified as an unknown browser
and a version of zero (so I can say "We don't know what browser you are
using but we did not test this site on your browser...proceed at your own
risk or get a mainstream browser").  If Netscape less than 6 or IE less than
4 is detected we will say..."You can't come in and play unless you get out
of the 90's" ;-)

BTW this is not a browser debate...we all know the stats show IE is the
hands down winner and various versions of Netscape are next in lineyes
Firefox might be cool or Opera is sweet...I just don't care ;-)

Cheers and thanks alot for taking a moment!

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder & Director
www.cfug-vancouverisland.com 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: How many class files do YOU have?

2004-04-09 Thread Nathan C. Smith
There is a slick utility offered by Sysinternals
'http://www.sysinternals.com/ntw2k/freeware/pagedefrag.shtml' called
pagedefrag that does a great job defragmenting your pagefile (if you don't
have the luxury of putting it on another disk.  I've been using it for a
year now on all our windows NT+ class systems, at the worst it doesn't seem
to create problems, at the best I think it helps machines start and stop
faster.

Dave's recommendation of setting the minimum size to the same as the maximum
size is mandatory on our systems (one of the first performance setting we
make).

Also, if you have a lot of memory you can disable paging
'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory
Management' 'DisablePagingExecutive' to stop the OS from putting peices of
itself in swap.

Even if you do have a lot of memory many programs will not work unless you
have a paging file, I guess even computer programs like to have a place to
doodle?

-Nate

-Original Message-
From: Brook Davies [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 09, 2004 2:25 PM
To: CF-Talk
Subject: How many class files do YOU have?

I repoted to this list awhile ago about really long start up times for one 
of my apps on the first run. It seems that this problem has been resolved 
by defragging the HD? The C:\CFusionMX\wwwroot\WEB-INF\cfclasses folder had 
a lot of fragmented files as well as other areas on the HD. Does that make 
sense?

Anyhow, I have 6,591 class files in my class folder taking up about 80 
megs. So, I am curious now how many class files ya'll have on your servers?

And another question related to disk usage; what are the guidelines for a 
paging file and is it needed if you have lots of physical ram? The reason I 
ask is because I wonder if a fragmented HD, and a page file on that disk 
might cause problems. I've had some JavaOutOfMemory errors, so I am looking 
for answers everywhere :)

Brook
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Regex newbie has partial success

2004-04-09 Thread Nathan C. Smith
How do you like that, I thought I was lacking regex knowledge turns out I
was lacking CF knowledge too.

 
The more I learn the less I know.

 
Thanks.

-Original Message-
From: Charlie Griefer [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 09, 2004 10:54 AM
To: CF-Talk
Subject: Re: Regex newbie has partial success

disclaimer:  I'm a total n00b with regex too.  i've only spent 4 minutes
with Ben's 10 minute book so far... so if there may be a better way to do
this (and if there is, I'm sure somebody will speak up)...but this works:




the problem that I think I see with yours is that you put both the dD and
the space within character classes, which only match a single character.  By
taking the space (\s) out of the character class, you're saying, "one upper
or lower 'D' optionally followed by a space (the optional flag being the
'?').

charlie

----- Original Message - 
From: "Nathan C. Smith" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Friday, April 09, 2004 8:33 AM
Subject: Regex newbie has partial success

> I am trying to go through a string and replace instances of "D", that may
or
> may not have spaces after them, with uppercase "D" adjacent to the
following
> numbers.
>
> 
>
> 
>
> If anyone looking at this has a pointer or can nudge me towards the field
of
> regex study to complete my task I would appreciate it.  I have Ben's new
> book in front of me, but clearly I am missing something.
>
> Thank you much.
>
> -Nate
>
> Nathan Smith  McKee, Voorhees & Sease, P.L.C.  515.288.3667
>
> 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Regex newbie has partial success

2004-04-09 Thread Nathan C. Smith
I am trying to go through a string and replace instances of "D", that may or
may not have spaces after them, with uppercase "D" adjacent to the following
numbers.  

	

	

If anyone looking at this has a pointer or can nudge me towards the field of
regex study to complete my task I would appreciate it.  I have Ben's new
book in front of me, but clearly I am missing something.

Thank you much.

-Nate

Nathan Smith  McKee, Voorhees & Sease, P.L.C.  515.288.3667
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Receiving A connection failure

2004-04-08 Thread Nathan C. Smith
I had a few problems like this when I upgraded from CF 4.0.  It seems I was
doing stuff with the cfhttp content inside the cfhttp tags.  Once I moved it
below the cfhttp closing tag everything worked as expected.  You may want to
check that.

 
-Nate
-Original Message-
From: chad [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 08, 2004 1:57 PM
To: CF-Talk
Subject: Receiving A connection failure

We recently upgraded from a CF 5 server to a CFMX 6.1 server. We have a
client who is using a CF 4.5 server and running a page that has a CFHTTP
call (method post) to a page on our CFMX 6.1 server. This ran smoothly
before the upgrade, now he is receiving a "Connection Failure" every time he
runs it.

Any suggestions? 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Breaking up table for printing (long)

2004-04-08 Thread Nathan C. Smith
I see, sorry for the confusion.

 
If it were me I might try "getting old school" on this problem.  Use a
non-proportional font, and get out my data-processing ruler that measures in
picas and points and then try to limit how many characters occur across the
page.

 
I was having the same problem on the reports I learned the printed CSS stuff
for.  My ultimate solution was to limit the table widths and use a smaller
font.

 
Good luck.

 
-Nate

 
-Original Message-
From: Scott Brady [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 08, 2004 1:36 PM
To: CF-Talk
Subject: RE: Breaking up table for printing (long)

Original Message:
> From: "Nathan C. Smith" 
> Check out the style sheet (CSS) extensions for printing.  They helped me
> format a document for page breaks and such.
> 
> 
> 
> The above, as you can guess causes the table not to be broen where
possible
> and causes a page-break before the able is printed.

If I'm reading the spec right, this isn't quite what I am looking for.

What I probably didn't make clear was that in this example:
(Example #2)
PANEL 1 DATE1 DATE2 DATE3
Test1   result1   result2   result3
Test2   result6   result7   result8
Test3   result11  result12  result13
Test4   result16  result17  result18

PANEL 1 DATE4 DATE5
Test1   result4    result5
Test2   result9    result10
Test3   result14   result15
Test4   result19   result20

PANEL 2 DATE1 DATE2 DATE3
Test5   result21  result22  result23
Test6   result26  result27  result28
Test7   result31  result32  result33
Test8   result36  result37  result38

PANEL 2 DATE4 DATE5
Test5   result24  result25
Test6   result29  result30
Test7   result34  result35
Test8   result39  result40

those are all on one page.  (If I left it so that all 5 date columns were in
the same "row", it would spill out onto a page to the right -- something we
want to avoid).  "Vertical" page breaks are ok (and I already have code to
handle that), but we want the layout on a page to look like the above so
that we don't have "horizontal" page breaks.

Does that make any more sense?  (I've struggled with this for a while, so I
know it's hard to explain clearly.)

Scott

---
Scott Brady
http://www.scottbrady.net/ 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Breaking up table for printing (long)

2004-04-08 Thread Nathan C. Smith
Check out the style sheet (CSS) extensions for printing.  They helped me
format a document for page breaks and such.



The above, as you can guess causes the table not to be broen where possible
and causes a page-break before the able is printed.

It isn't a report writer but it helps a lot.

-Nate

Nathan Smith  McKee, Voorhees & Sease, P.L.C.  515.288.3667  

So, any ideas? Does this even make sense?

Scott

---
Scott Brady
http://www.scottbrady.net/
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: CFMyAdmin MySQL Database Manager Launched - Free Application!

2004-04-08 Thread Nathan C. Smith
Cool, I've thought a tool like phpMyAdmin would be nice.

 
Installed it and could not get it to connect.   The settings file appears to
be encrypted.

 
-Nate

-Original Message-
From: Daniel Mackey [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 08, 2004 12:20 PM
To: CF-Talk
Subject: CFMyAdmin MySQL Database Manager Launched - Free Application!

Hi All,

Just a quick email to introduce a new free tool we have developed for
ColdFusion Developers looking for an online MySQL Management Tool called
CFMyAdmin.

Full details, screenshots and free download is available at:

http://www.cfmyadmin.com

This is the first public release and is at Version 1.0 Beta. Many features
are fully implemented with more to be released very soon.

Please provide some feedback in the Support Forums, any suggestions,
comments or queries are very much appreciated.

Thanks again and we look forward to handing over the keys to a tool we feel
has alot of potential in the future for ColdFusion Developers!

Regards,
Dan.

-
Visit www.CFTagStore.com for the very best Coldfusion Custom Tags,
Components and Applications

Daniel Mackey,
Digital Crew Ltd,
Pembroke House,
Pembroke Street,
Cork,
Ireland

T: 00353 21 427 7778 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Show status during long request

2004-04-07 Thread Nathan C. Smith
Thanks a lot for that snippet.
-Original Message-
From: Michael Wilson [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 06, 2004 12:29 PM
To: CF-Talk
Subject: RE: Show status during long request

Hi,

This is what I use:



<br>
<!--<br>
#LoadingMessage {<br>
position: absolute;<br>
visibility: visible;<br>
height: 100%;<br>
width: 100%;<br>
top: 0px;<br>
left: 0px;<br>
background-color: #FF;<br>
}<br>
--><br>


<br>
function showMessage () {<br>
  if (document.layers) {<br>
    document.LoadingMessage.display = 'none';<br>
document.Content.visibility = 'visible';<br>
  }<br>
  else if (document.all) {<br>
    document.all.LoadingMessage.style.display = 'none';<br>
document.all.Content.style.visibility = 'visible';<br>
  }<br>
  else if (document.getElementById) {<br>
    document.getElementById('LoadingMessage').style.display = 'none';<br>
document.getElementById('Content').style.visibility = 'visible';<br>
  }<br>
}<br>







Loading message


Content



Best regards, 
Michael Wilson 



From: Nathan C. Smith [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 06, 2004 10:12 AM
To: CF-Talk
Subject: Show status during long request

Hi,

I have a page that takes a long time to process, I would like to update the
user, or at least hide the form that appears on the page, while the pages
are processing. 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Show status during long request

2004-04-06 Thread Nathan C. Smith
Raymond,

 
OK, that worked really well to get a "please stand by" style message while
processing,

 
Is there a clean way to clear that message before displaying the results?

 
Thanks for your help.

 
-Nate

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 06, 2004 10:19 AM
To: CF-Talk
Subject: RE: Show status during long request

> 
> I think I need to use cfflush, but if anybody has any 
> pointers on how to accomplish this I would be very appreciative.

It is actually pretty simple. Just use . There is one thing to
worry about. In IE, the browser "helps" by not displaying content until it
gets "enough" content. Let's all pause for a minute to thank MS and it's
infinite wisdom. Anyway, sometimes you have to push IE to force it to
display something. So, I would use code like this:

Please stand by while we do the foo.
#repeatString(" ",250)#


The repeatString function just outputs a big block of white space that the
browser will display as _one_ space. Normally folks have HTML and other bits
already output so this hack isn't needed. 

Also, note that you can't use tags like cfcontent, cfcookie, cfheader, etc,
after using cfflush. 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Show status during long request

2004-04-06 Thread Nathan C. Smith
Hi,

I have a page that takes a long time to process, I would like to update the
user, or at least hide the form that appears on the page, while the pages
are processing.

I think I need to use cfflush, but if anybody has any pointers on how to
accomplish this I would be very appreciative.

I'd the form to be submitted, then a page would come up that says processing
- don't touch that browser  and then the results and a new form come up
on the page.  If it could be more descriptive - like say 6 of 42 processed
that would be neat too.  (processing occurs inside a loop)

I could really use a clue.

Thanks.

-Nate

Nathan Smith  McKee, Voorhees & Sease, P.L.C.  515.288.3667
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: FARCRY

2004-03-15 Thread Nathan C. Smith
I think it is a web-server mapping - virtual directory, you need to add not
a CF mapping.

 
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Monday, March 15, 2004 10:37 AM
To: CF-Talk
Subject: RE: FARCRY

oops, the CF Mappings are 
/farcry --> d:\inetpub\farcrycms
/farcry_test --> d:\inetpub\farcrycms\farcry_test\www
actually

Now, I added the IP to the apps.cdm file, so it has two lines now
stApps['localhost'] = 'farcry_test';
stApps['10.10.90.212'] = 'farcry_test';
now I get the same results from a remote browser as I do from a browser
running local on the server.  I can not get passed the login at all.  I get
no message that the uid/pwd is incorrect, just an endless loop on the login
screen.

Doug

-Original Message- 

From: Knudsen, Douglas 
Sent: Monday, March 15, 2004 11:26 AM
To: CF-Talk
Subject: RE: FARCRY

what a PITA so far!

I installed the stuffs to d:\inetpub\farcrycms.
I ran the install scripts 
sitename: farcry_test
applicationmapping: /farcry_test
admin mapping: /farcry
domain:  localhost   <--- what should this be??? this box has no DNS entry,
only IP.

In IIS I have two virtual dirs
/farcry --> d:\inetpub\farcrycms\farcry_core\admin
/farcry_test --> d:\inetpub\farcrycms\farcry_test\www

Ok, I have two CF mappings
/farcry --> d:\inetpub\farcrycms\farcry_core\admin
/farcry_test --> d:\inetpub\farcrycms\farcry_test\www
(these are the ONLY CF Mappings I have set)

With this the installer appears to complete fully offering me the login and
see site buttons. I ran the installer on the server itself.  But when I
click on the login button I get the login screen and can't get past it with
the given default UID/PWD.  If I click on the view site button, I get teh
login screen and can't get past it.  If I try to reach the site via a
browser remotely, http://myip/farcry_test, i get Could not find the included
template /Application.cfm error.  So what part is wrong here?  BTW, i have
no mapping in CF for /.

Doug

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED]
Sent: Monday, March 15, 2004 10:54 AM
To: CF-Talk
Subject: RE: FARCRY

Actually where the installation is flakey is the way you have add the
virtual mapping AFTER you have ran the installer - I always now add the
mapping BEFORE I run the installer

   _  

From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: 15 March 2004 15:28
To: CF-Talk
Subject: RE: FARCRY

Yes you need to set a mapping up also - its outlined in the installation
guide.

   _  

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: 15 March 2004 15:29
To: CF-Talk
Subject: FARCRY

anyone get this installed and working?  We are running CFMX6.1(J2EE) with
Oracle DB on IIS.  The install goes fine but I never get passed this error.

Could not find the included template /Application.cfm
The error occurred in
D:\Inetpub\farcrycms\farcry_core\admin\Application.cfm: line 9
7 : 
8 : 
9 : 
10 : 
11 : 

I have /farcy and /farcry_test set in IIS as a virtual dir.  /farcry_test
points to D:\Inetpub\farcrycms\farcry_test\www and /farcry to
D:\Inetpub\farcrycms\farcry_core\admin

Should I also have a mapping in CF  Also, what the heck is this 'domain'
setting for? 

--
Douglas Knudsen
Alltel ACI IT Rapid Response Team
(o) 678-351-6063
(c) 678-773-5852

<> 


**
The information contained in this message, including attachments, may
contain 
privileged or confidential information that is intended to be delivered only
to the 
person identified above. If you are not the intended recipient, or the
person 
responsible for delivering this message to the intended recipient, ALLTEL
requests 
that you immediately notify the sender and asks that you do not read the
message or its 
attachments, and that you delete them without copying or sending them to
anyone else. 
   _ 
   _ 
  _ 
  _ 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: FARCRY

2004-03-15 Thread Nathan C. Smith
The installation isn't intuitive if you have installed any other open-source
CMS's.

 
If memory serves, the installation actually builds the install directory and
then you have to point to that with a server mapping.

 
-Nate

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Monday, March 15, 2004 9:29 AM
To: CF-Talk
Subject: FARCRY

anyone get this installed and working?  We are running CFMX6.1(J2EE) with
Oracle DB on IIS.  The install goes fine but I never get passed this error.

Could not find the included template /Application.cfm
The error occurred in
D:\Inetpub\farcrycms\farcry_core\admin\Application.cfm: line 9
7 : 
8 : 
9 : 
10 : 
11 : 

I have /farcy and /farcry_test set in IIS as a virtual dir.  /farcry_test
points to D:\Inetpub\farcrycms\farcry_test\www and /farcry to
D:\Inetpub\farcrycms\farcry_core\admin

Should I also have a mapping in CF  Also, what the heck is this 'domain'
setting for? 

--
Douglas Knudsen
Alltel ACI IT Rapid Response Team
(o) 678-351-6063
(c) 678-773-5852

<> 


**
The information contained in this message, including attachments, may
contain 
privileged or confidential information that is intended to be delivered only
to the 
person identified above. If you are not the intended recipient, or the
person 
responsible for delivering this message to the intended recipient, ALLTEL
requests 
that you immediately notify the sender and asks that you do not read the
message or its 
attachments, and that you delete them without copying or sending them to
anyone else. 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Distinct

2004-03-08 Thread Nathan C. Smith
Perhaps a subquery:

 

SELECT email, customerid
FROM customers
Where customer != 'test'
AND email in  (select distinct email from customers)
Order by customerid desc



-Original Message-
From: Robert Orlini [mailto:[EMAIL PROTECTED]
Sent: Monday, March 08, 2004 2:08 PM
To: CF-Talk
Subject: SOT: Distinct


SELECT distinct email, customerid
FROM customers
Where customer != 'test'
Order by customerid desc


In the above Query, how do I distinct just the email and not the customerid.
Because of the Order by SQL requires me to put customer id in the Distinct
part of Select. This throws things off since some customers have distinct
customerid's but their emails are similar.

How do I do an order by customerid, but still display just distinct email
addresses not duplicates?

Thx.

Robert O.
HWW 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: uploading large file - how to tell when it is uploaded

2004-02-21 Thread Nathan C. Smith
Check the file size a couple times and confirm that it stays the same each
time you check it.  how long to wait to check might vary based on the
speed/reliability of your connection.  Make sure the last date/time modified
stays the same.


-Original Message-
From: Boldacious [mailto:[EMAIL PROTECTED] 
Sent: Saturday, February 21, 2004 11:43 PM
To: CF-Talk
Subject: uploading large file - how to tell when it is uploaded

Hi

I have a website where a large file is uploaded externally via  
ftp from another site (so I have no control over it) 
I then have a file which checks to see if this file exists - if it  
does I do an update then delete the original upload file.

I need to know that when my file checks to see if the upload file  
exists that the upload file has actually uploaded completely  
(sometimes it will be a quite large file)

I thought that maybe I could see (somehow) if the file was in use  
- but I can't work out how to do this? (I'm on Windows server)

Does anyone know how to do this - or - is there a better way

MTIA

Seamus

Seamus Campbell   Boldacious WebDesign
http://www.boldacious.com     
[EMAIL PROTECTED]
ph 02 6297 4883   fax  02 6297 4883   mob 0410 609 267 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




post CFMX 6.1 Updaters

2004-02-11 Thread Nathan C. Smith
I see there are some post-CFMX 6.1 hotfixes available, but are there any
updaters or "hot-fix rollups" for post MX 6.1?

I've been dredging the Macromedia WS and can only find references to
hotfixes.  

Thanks.

-Nate

Nathan Smith  McKee, Voorhees & Sease, P.L.C.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




[OT] SSL Certificate Source

2004-02-09 Thread Nathan C. Smith
For one reason or another I choose not to do business with Verisign.  I just
found out Thawte is associated with Verisign.  I am now wondering what
independent Certificate authorities are left that are unassociated with
Verisign.

Anybody feel the same and been through this already?

Thanks.

-Nate
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: jRockit

2004-02-05 Thread Nathan C. Smith
"fully compatible" is a dangerous term.

 
I think JRockit meets the compatibility tests.  There are many alternatives
to SUN that claim to be faster.  The MS engine was supposed to be very fast.

 
I think the thing to remember is that when something appears broken, you
need to switch back to the Macromedia-provided JVM and test before you
declare something is broken or buggy.

-Original Message-
From: Michael Wolfe [mailto:[EMAIL PROTECTED]
Sent: Thursday, February 05, 2004 1:36 PM
To: CF-Talk
Subject: jRockit

Hi All,

A few days ago, someone quoted Charlie Arehart regarding CFMX  optimization
tips.  One of the things that was mentioned was that you should replace the
Sun JRE with jRockit.  I did some research and learned that jRockit is
distributed by BEA (for free).

Can anyone tell me more about jRockit?  Why is it better than the Sun JRE?
Is it fully compatible with the Sun version? Is it fully compatible with
CFMX?

Charlie, are you out there?

Thanks,

--

Michael Wolfe
[EMAIL PROTECTED] 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: MX 6.1 performance tuning question

2004-02-04 Thread Nathan C. Smith
Charlie Airehart had an article on tuning.  Recommended changing to Rockit
JRE and making sure hardware was current (duh?). 

-Original Message-
From: Pete Ruckelshaus [mailto:[EMAIL PROTECTED]
Sent: Wednesday, February 04, 2004 1:22 PM
To: CF-Talk
Subject: MX 6.1 performance tuning question

We're doing some performance tuning.  The only MM technotes I found 
covered CF 3 and JRun 3.1...

Is there a good, current article on performance tuning CFMX 6.1?  I'm 
specifically looking for the ideal # of Max simulataneous requests.

Pete 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: OT-Firewall

2004-02-04 Thread Nathan C. Smith
Netscreen.  They have a rack-mountable unlimited session device for less
than $1000.  Then there's always Cisco.

-Original Message-
From: Eric Creese [mailto:[EMAIL PROTECTED]
Sent: Wednesday, February 04, 2004 11:54 AM
To: CF-Talk
Subject: OT-Firewall

Any recommendations for a good, inexpensive firewall for a web server? 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Certs for Site Users

2004-02-04 Thread Nathan C. Smith
Most of the certificate signers - Verisign, Thawte, what-have-you have
online info about certs.  Also check iisanswers, brett Hill's site.  He has
a mini-tutorial/Faq about certs on IIS.

-Original Message-
From: Mickael [mailto:[EMAIL PROTECTED]
Sent: Wednesday, February 04, 2004 8:39 AM
To: CF-Talk
Subject: Re: Certs for Site Users

Hi Thomas,

This site is on Windows 2003, CFMX IIS do you know of any online docs that I
can review?
  - Original Message - 
  From: Thomas Chiverton 
  To: CF-Talk 
  Sent: Wednesday, February 04, 2004 9:17 AM
  Subject: Re: Certs for Site Users

  On Wednesday 04 Feb 2004 01:30 am, Mickael wrote:
  > How is this done?  What is involved in including this functionality for
my
  > client.

  Sounds like HTTPS client certificates.
  How easy it is depends on your web server.

  -- 
  Tom Chiverton 
  Advanced ColdFusion Programmer

  Tel: +44(0)1749 834997
  email: [EMAIL PROTECTED]
  BlueFinger Limited
  Underwood Business Park
  Wookey Hole Road, WELLS. BA5 1AF
  Tel: +44 (0)1749 834900
  Fax: +44 (0)1749 834901
  web: www.bluefinger.com
  Company Reg No: 4209395 Registered Office: 2 Temple Back East, Temple
  Quay, BRISTOL. BS1 6EG.
  *** This E-mail contains confidential information for the addressee
  only. If you are not the intended recipient, please notify us
  immediately. You should not use, disclose, distribute or copy this
  communication if received in error. No binding contract will result from
  this e-mail until such time as a written document is signed on behalf of
  the company. BlueFinger Limited cannot accept responsibility for the
  completeness or accuracy of this message as it has been transmitted over
  public networks.*** 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Install CF MX on newer SUN JRE (Windows 2K)

2004-01-27 Thread Nathan C. Smith
Thanks Dave, I will give that a shot.

 
Thanks too for all your other contributions.

 
-Nate

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 27, 2004 1:29 PM
To: CF-Talk
Subject: RE: Install CF MX on newer SUN JRE (Windows 2K)

> Can anyone explain how, or point me to instructions on how to 
> Install MX on a different JRE than the one that installs by 
> default with MX?
> 
> I am installing to windows 2000 on a mini-itx (CPU = VI C3 
> Ezra) machine and it crashes on older versions of JAVA. I
> have downloaded and installed j2re1.4.2_03.
> 
> I have googled for instructions, visited the MM KB and tried 
> the silent install option, which seems to offer the choice of 
> a different JRE, but I have been unable to make it work.

Just install your JRE, then CFMX normally, then edit jvm.config to point to
your new JRE. The jvm.config file is located in \cfusionmx\runtime\bin with
the "server configuration" install option.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/  
phone: 202-797-5496
fax: 202-797-5444 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Install CF MX on newer SUN JRE (Windows 2K)

2004-01-27 Thread Nathan C. Smith
Can anyone explain how, or point me to instructions on how to Install MX on
a different JRE than the one that installs by default with MX?

I am installing to windows 2000 on a mini-itx (CPU = VI C3 Ezra) machine and
it crashes on older versions of JAVA.  I have downloaded and installed
j2re1.4.2_03.

I have googled for instructions, visited the MM KB and tried the silent
install option, which seems to offer the choice of a different JRE, but I
have been unable to make it work.

Any hints appreciated.

TIA.

Nathan Smith
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




WDDX inexpensive news aggregators?

2004-01-09 Thread Nathan C. Smith
Can anyone recommend an Inexpensive news aggregator that works with CF-WDDX?

Thanks.

-Nate

Nathan Smith  McKee, Voorhees & Sease, P.L.C.  515.288.3667
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




  1   2   >