RE: Coldfusion with Godaddy

2006-05-05 Thread Mark A Kruger
I second that John, They are misinformed. I suspect their information came from a misconfigured DSN setting. For example, If I set up a user "bob" and didn't change "default database" for him, then I set up a JDBC connection without specifying the database I wanted to connect to - it would try to

RE: Refreshing a datasource in CF

2006-05-05 Thread Mark A Kruger
Deanna, Not sure of a programatic way - but you can add spaces to the queries in question (alter the query) to get the new schema. See this blog entry and the comments below. http://mkruger.cfwebtools.com/index.cfm?mode=alias&alias=dbschemaChange -Original Message- From: Deanna Schneid

RE: Generic CF form handler

2006-05-05 Thread Mark A Kruger
Denny, I get it! Ha! Very funny -Original Message- From: Denny Valliant [mailto:[EMAIL PROTECTED] Sent: Friday, May 05, 2006 5:58 AM To: CF-Talk Subject: Re: Generic CF form handler On 5/4/06, Eric Roberts <[EMAIL PROTECTED] > wrote: > > Call me ignorant, but why would this be nec

RE: jrun eating up all cpu resources

2006-05-04 Thread Mark A Kruger
Mike, There could be a lot of answers to this question. External resources hanging, bad code, memory allocation and JVM settings etc. For example, in these 2 posts I detailed how I fixed a server with this problem - but Steven Erat (talkingtree.com) ran a test that contradicted my finding. There'

RE: Typical JRUN Memory Usage CF 7 Integrated JRUN

2006-05-02 Thread Mark A Kruger
This memory limit of 2 gig is related to the 1.4 JVM. We've found about 1.4gigs is the practical limit. What's everyone elses experience? I understand that 1.5 removes this heap limitation. -mark -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Tuesday

RE: MS Access DSN issue

2006-05-01 Thread Mark A Kruger
Ken, Using terminal services log in as the user in question (that local user). Then try to map a drive or browse to the UNC file path in question. If you can't do it then CF can't either. Lot's of things have to go right for this to work :) Remember there are more than 1 kind of permission. There

RE: Does coldFusion just need a servlet engine

2006-05-01 Thread Mark A Kruger
Tomcat J2ee server is indeed a true j2ee server and not just a servlet container. To run CF you need the J2EE version. -Original Message- From: Leon Oosterwijk [mailto:[EMAIL PROTECTED] Sent: Monday, May 01, 2006 9:06 AM To: CF-Talk Subject: Does coldFusion just need a servlet engine Al

RE: Auction Software.

2006-04-13 Thread Mark A Kruger
Run away from that Able option... Very bad indeed. We have some extensive experience with it... None of it pleasant :) -Original Message- From: Jose Diaz [mailto:[EMAIL PROTECTED] Sent: Thursday, April 13, 2006 1:45 PM To: CF-Talk Subject: Re: Auction Software. Hi Emmet Steve is correc

RE: OT 404 Redirect

2006-04-08 Thread Mark A Kruger
Terry, I suspect you will need the cooperation of the hosting company. You can create a page with a Javascript redirect - but the hosting company will have to set it up in IIS for you. -Mark -Original Message- From: Terry Troxel [mailto:[EMAIL PROTECTED] Sent: Saturday, April 08, 2006

RE: Large count query > caching

2006-03-17 Thread Mark A Kruger
Jochem, Can I just say that I sometimes stand in awe of you :) Mark A. Kruger, CFG, MCSE www.cfwebtools.com www.necfug.com http://mkruger.cfwebtools.com -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Friday, March 17, 2006 2:49 PM To: CF-Talk Subject: Re

RE: Large count query > caching

2006-03-17 Thread Mark A Kruger
Mingo, The actually "counting" is unlikely to be affected, but you are forcing the planner to look up the column names in the sys tables for no good reason - and that initial task while neglible is superflous. -mark -Original Message- From: Mingo Hagen [mailto:[EMAIL PROTECTED] Sent: Fr

RE: Large count query > caching

2006-03-17 Thread Mark A Kruger
If you cannot cache on the web server - make sure and bind the data using CFQUERYPARAM. This will enable the RDMBS to use a cached execution plan on it's end. I have a blog on why this is important. http://mkruger.cfwebtools.com/index.cfm?mode=alias&alias=cfqueryparam Secondly, change the " * "

RE: What's wrong with this jvm.config file?

2006-03-15 Thread Mark A Kruger
~Che -Original Message- From: Mark A Kruger [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 15, 2006 11:59 AM To: CF-Talk Subject: RE: What's wrong with this jvm.config file? Whoops... forgot the co-king Pete Freitag http://www.petefreitag.com/articles/gctuning/ -Mark -Original

RE: What's wrong with this jvm.config file?

2006-03-15 Thread Mark A Kruger
Whoops... forgot the co-king Pete Freitag http://www.petefreitag.com/articles/gctuning/ -Mark -Original Message- From: Mark A Kruger [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 15, 2006 10:44 AM To: CF-Talk Subject: RE: What's wrong with this jvm.config file? Th

RE: What's wrong with this jvm.config file?

2006-03-15 Thread Mark A Kruger
onfig file? Ok. Thanks. One last thing... Where might I find some of these GC options online? ~Che -Original Message- From: Mark A Kruger [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 15, 2006 9:50 AM To: CF-Talk Subject: RE: What's wrong with this jvm.config file? Ch

RE: What's wrong with this jvm.config file?

2006-03-15 Thread Mark A Kruger
really have no clue! ~Che -Original Message- From: Mark A Kruger [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 15, 2006 9:29 AM To: CF-Talk Subject: RE: What's wrong with this jvm.config file? Che, You've specified 2 Garbage collectors. When you make changes to this file an

RE: What's wrong with this jvm.config file?

2006-03-15 Thread Mark A Kruger
Che, You've specified 2 Garbage collectors. When you make changes to this file and you want to switch GC params, don't use the CF Admin to do it. It will automatically insert the extraparams in there. Get rid of the switch: -XX:UseParNewGC and restart. I have a blog about this issue at: http:/

RE: SERVER scope

2006-02-20 Thread Mark A Kruger
- From: Baz [mailto:[EMAIL PROTECTED] Sent: Sunday, February 19, 2006 8:52 PM To: CF-Talk Subject: RE: SERVER scope Thanks guys, Why is it frowned upon by the way? I've heard such talk before, that's why I ask, but I'm not sure of the reasons. Baz -----Original Message---

RE: SERVER scope

2006-02-19 Thread Mark A Kruger
If as you say this library is "server wide" then I say go for it :) But make sure and check to see if it already exists and only instantiate it once - othewise whats' the point? -mark -Original Message- From: Baz [mailto:[EMAIL PROTECTED] Sent: Sunday, February 19, 2006 4:25 PM To: CF-Ta

RE: cfmail - is it vulnerable?

2006-02-19 Thread Mark A Kruger
It is not vulnerable - except that you will get these annoying probes from time to time :) I have a blog on this top with lots of additional insight in the comments at the bottom. http://mkruger.cfwebtools.com/index.cfm?mode=alias&alias=email%20injection This follow up references a function for

RE: Dual Xeon 3.06 GHz - 120 GB IDE HD - 2 GB RAM

2006-01-19 Thread Mark A Kruger
Not so fast if you are using SCSI it would be negligable, but if this is an IDE raid array, then write time would be slower due to synchronous calls -Original Message- From: Kerry [mailto:[EMAIL PROTECTED] Sent: Thursday, January 19, 2006 10:55 AM To: CF-Talk Subject: RE: Dual Xeon

RE: Restarting Coldfusion takes forever

2006-01-18 Thread Mark A Kruger
MIchael, I certainly agree with you there --- JVM settings is a black magic art that needs a lot of playing around even after reading all the best practices. You set it, try it out, re-set it, and go through the process again and again till it all '

RE: Restarting Coldfusion takes forever

2006-01-18 Thread Mark A Kruger
yes... I meant minutes not seconds (am I red in the face) -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 18, 2006 1:10 PM To: CF-Talk Subject: Re: Restarting Coldfusion takes forever Mark A Kruger wrote: > > Even with the min heap size set at

RE: Restarting Coldfusion takes forever

2006-01-18 Thread Mark A Kruger
MIchael, MM's advice is to set the min and max to the same value to save on garbage collection, but it DOES add to the time necessary to start (or restart) CF server. >From http://www.macromedia.com/go/tn_18540 - The default maximum heap size is set to 512

RE: Gmail's interesting approach to usernames

2006-01-17 Thread Mark A Kruger
Sounds like they don't recognize the period by design. As long as they inform you ahead of time I guess I'm ok with it I wonder if it is non-compliant with an RFC out there somewhere -Original Message- From: George Abraham [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 17, 2006

RE: peer not authenticated

2006-01-17 Thread Mark A Kruger
Bryan, It sure sounds like the cert isn't in the trusted keystore http://mkruger.cfwebtools.com/index.cfm?mode=entry&entry=8E44925A-B73D-E3AD- 709D4E02FD6D4588 -Mark -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 17, 2006 3:05 PM To: CF-Tal

RE: Anyone use AbleCommerce, CFMX version?

2006-01-16 Thread Mark A Kruger
Josh, I'm sure Mary Jo can add a special seal or something that says "enterprise version" and sell it for 3 grand - right Mary Jo? -Mark -Original Message- From: Josh Nathanson [mailto:[EMAIL PROTECTED] Sent: Monday, January 16, 2006 7:19 PM To: CF-Talk Subject: Re: Anyone use AbleCommer

RE: Anyone use AbleCommerce, CFMX version?

2006-01-16 Thread Mark A Kruger
the prices are completely out of this world for what they offer. Even back when I was working with it, the bang to buck ratio is so completely out of whack. --Ferg Mark A Kruger wrote: >I've used CFMX Able commerce... Here are a couple of notes..keep in mind >this knowledge is about 20

RE: Anyone use AbleCommerce, CFMX version?

2006-01-16 Thread Mark A Kruger
ely out of this world for what they offer. Even back when I was working with it, the bang to buck ratio is so completely out of whack. --Ferg Mark A Kruger wrote: >I've used CFMX Able commerce... Here are a couple of notes..keep in mind >this knowledge is about 20 months old :) >

RE: Anyone use AbleCommerce, CFMX version?

2006-01-16 Thread Mark A Kruger
I've used CFMX Able commerce... Here are a couple of notes..keep in mind this knowledge is about 20 months old :) 1) I'ts pointedly NOT a coldfusion application. By that I mean it takes no advantage of anything specifically coldfusion'ish. The ap functions as a Java servlet with calls to and fr

RE: AuthorizeNet Recurring Payments?

2006-01-13 Thread Mark A Kruger
Bud what's the cost? -Original Message- From: Bud [mailto:[EMAIL PROTECTED] Sent: Friday, January 13, 2006 10:16 AM To: CF-Talk Subject: Re: AuthorizeNet Recurring Payments? >We have some instances where we have a need for 'subscription' type >payments - mostly monthly charges for we

RE: Encrypt CC number and store in DB

2006-01-13 Thread Mark A Kruger
Tim, Sarbanes Oxley is a rule set for tracking compensation of employees - particularly company officers. It does indeed specify a lot of requirments for storage - but mostly of internal company information. CC numbers have more to do with privacy of customer information - yes? -mark -Orig

RE: Escrow services

2006-01-13 Thread Mark A Kruger
Well I haven't used an escort service for a few years ... but I'll try to answer your questions oh.. escrow Never mind -Original Message- From: Stuart Kidd [mailto:[EMAIL PROTECTED] Sent: Friday, January 13, 2006 5:25 AM To: CF-Talk Subject: OT: Escrow services Hi guys, I'm

RE: Encrypt CC number and store in DB

2006-01-13 Thread Mark A Kruger
Baz, This blog post has some good info... http://mkruger.cfwebtools.com/index.cfm?mode=alias&alias=cc.secure The comments below give a lot of insight on various approaches as well. -Mark -Original Message- From: Baz [mailto:[EMAIL PROTECTED] Sent: Thursday, January 12, 2006 5:20 PM To

RE: Swfs not showing when CF is Connected

2006-01-11 Thread Mark A Kruger
No one answered your question eh? So ... you have a regular swf file embeded in an object tag - right? It almost seems like the old "cacherealpaths" issue. In the jrun.xml file under "servers/default/server-inf" Look for the "cacherealpaths" key: name="ProxyService"> 8 1 1000 0

OT: CF Webtools looking for designers

2006-01-10 Thread Mark A Kruger
you are a free lancer (or looking for outside work) let us know. Please include URL we can view as samples of your work - thanks! -mark Mark A. Kruger, CFG, MCSE www.cfwebtools.com www.necfug.com http://mkruger.cfwe

RE: good old CFLOCK question

2006-01-10 Thread Mark A Kruger
Baz, Think this through locking the "session" scope locks "THIS" session, so you are really keeping the user from interfering with himself. In a sense, using named locks for session scope may be overkill unless you have some kind of polling or long running scripts, or perhaps you are setting

RE: cf open shopping cart

2006-01-10 Thread Mark A Kruger
Mike, Well said. I had much the same reaction as you. I would even devote some company resources to it - but it sounded a little fuzzy from the outset. In my experience most projects ar "spear-headed" by a person or very small team who direct the vision. There's a reason the communist never buil

RE: cf open shopping cart

2006-01-10 Thread Mark A Kruger
Dave, Ok - what's the site for the new open shopping cart I haven't even looked at it (sorry). -mark -Original Message- From: dave [mailto:[EMAIL PROTECTED] Sent: Monday, January 09, 2006 10:14 PM To: CF-Talk Subject: Re: cf open shopping cart I agree with some of justins points b

RE: cf open shopping cart

2006-01-10 Thread Mark A Kruger
Dave ... "other communities don't have that excuse..." I think that's a stretch. I would wager that in other communities (as well as life church and your local elementary) about 10% of the people end up doing about 90% of the work. -Mark P.S. Where are these hot chics who do geek-podcasts?

RE: SPF? How to use?

2006-01-09 Thread Mark A Kruger
As for how to - This post has some good resources at the bottom. http://mkruger.cfwebtools.com/index.cfm/2005/11/3/spf -Mark -Original Message- From: Dov Katz [mailto:[EMAIL PROTECTED] Sent: Saturday, January 07, 2006 9:02 PM To: CF-Talk Subject: sot: SPF? How to use? I've finally mov

RE: Subnet Mask from an IP

2006-01-06 Thread Mark A Kruger
much on our network) because you may have translated addresses or port forwarding or whatever. -Mark Mark A. Kruger, CFG, MCSE www.cfwebtools.com www.necfug.com http://mkruger.cfwebtools.com -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED] Sent: Friday, January 06, 2006

RE: SEO/SES URL's vs. UUID as primary key

2006-01-06 Thread Mark A Kruger
We do something similar to create "custom domains" - but it is really a parlor trick. We set a wildcard in the dns: *.mydomain.com x.x.x.x.x - points to our web site This allows any subdomain starting with anything that is not specifically defined by dns to be routed to that ip a

RE: ColdFusion Cookbook

2006-01-05 Thread Mark A Kruger
I'm from Nebraska and as far as I know a bobbie is an English policeman ?!? -Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: Thursday, January 05, 2006 2:52 PM To: CF-Talk Subject: RE: ColdFusion Cookbook My wife is from Nebraska, and up there they call them Bobbies

RE: How to send email using CF for clients without an open relay. ..

2006-01-05 Thread Mark A Kruger
ut an open relay. .. Hi, Mark... The only place I see where I can enter anything like, IP's, domains, whitelist entries, etc., is in a dialogue field called "Local Domains"...I can find anything to do with Trusted IP's, etc., in ArgoSoft's admin dialogues. Rick > ---

RE: Comon-- somebody has to know this

2006-01-05 Thread Mark A Kruger
If you are using CFFORM with the grid and you are trying to alter items in it programmatically, I'm afraid I would advise you (at this point) to abandon it and move to ajax or Flash proper. We could not find ANY really workable way to fiddle with the data in the grid and get it to submit properly.

RE: How to send email using CF for clients without an open relay...

2006-01-05 Thread Mark A Kruger
>>Hopefully, this issue is behind me...I've got coding to do! hahahahaha sorry for laughing. This issue will cause you pain continually for as long as you manage the mail server. SPF is going to make it even harder. Some downstream domains will reject your mail because it fails SPF rules - AO

RE: How to send email using CF for clients without an open relay. ..

2006-01-05 Thread Mark A Kruger
Rick, It's called "trusted IP" - same thing though... -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 04, 2006 8:07 PM To: CF-Talk Subject: RE: How to send email using CF for clients without an open relay. .. > add the ip of your cf server to t

RE: How to send email using CF for clients without an open relay...

2006-01-04 Thread Mark A Kruger
Sorry... that was supposed to go on THIS thread Rick You can send from your domain using "on-behalf of" in the header to handle returns. See this blog post: http://mkruger.cfwebtools.com/index.cfm?mode=alias&alias=cfmail.msoutlook -mark -Original Mes

RE: How to send email using CF for clients without an open relay...

2006-01-04 Thread Mark A Kruger
Rick You can send from your domain using "on-behalf of" in the header to handle returns. See this blog post: http://mkruger.cfwebtools.com/index.cfm?mode=entry&entry=29A89FC8-DB83-5548- 04575985DBF0A47F -mark -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Wednes

RE: CF and the Stored Procedure Newbie - First in an irregular series of Eureka! moments.

2006-01-04 Thread Mark A Kruger
Pete, This is well done. But I'd change your query to.. IF NOT Exists (SELECT C.id FROMtblHalftimeCustomers C WHERE C.email = @email) BEGIN INSERT INTO tblHalftimeCustomers(fname,lname,email,dayphone,evephone,cellphon

RE: RE: Using CF with ArgoSoft Email Server Plus

2006-01-02 Thread Mark A Kruger
Rick, Do a search for SPF on my blog - I have several posts that mention it besides just the one I sent. -Mark -Original Message- From: Mark A Kruger [mailto:[EMAIL PROTECTED] Sent: Monday, January 02, 2006 10:43 AM To: CF-Talk Subject: RE: RE: Using CF with ArgoSoft Email Server Plus

RE: RE: Using CF with ArgoSoft Email Server Plus

2006-01-02 Thread Mark A Kruger
Rick, I have a blog post on SPF - having recently implemented it. There's a resource link or 2 at the bottom as well. http://mkruger.cfwebtools.com/index.cfm/2005/11/3/spf -Mark -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Monday, January 02, 2006 10:08 AM To

RE: HTML In Application.cfm

2005-12-30 Thread Mark A Kruger
Dave, I made your brick quote my last blog of the year (probably). very succinct :) -mark -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Friday, December 30, 2005 2:37 PM To: CF-Talk Subject: RE: HTML In Application.cfm > But WHY it is important to keep your ac

RE: A Contractor or Two

2005-12-30 Thread Mark A Kruger
On 12/30/05, Mark A Kruger <[EMAIL PROTECTED]> wrote: > This process is of great interest to me. We work at it from month to month > as our business grows and we do project estimates based on hourly ranges. I > wrote a blog about it recently and it has some excellent comments attach

RE: A Contractor or Two

2005-12-30 Thread Mark A Kruger
This process is of great interest to me. We work at it from month to month as our business grows and we do project estimates based on hourly ranges. I wrote a blog about it recently and it has some excellent comments attached about some other similar methods. I often refer potential customers to th

RE: CFC for Image Manipulation

2005-12-24 Thread Mark A Kruger
h too expensive for my college budget) http://www.olimpo.ch/tmt/cfc/tmt_img/ I'm leaning towards Alagad right now because it does everything I need and more, but I'd be more than willing to learn a new cfc for free. :) On 12/24/05, Mark A Kruger <[EMAIL PROTECTED]> wrote: > >

RE: CFC for Image Manipulation

2005-12-24 Thread Mark A Kruger
Michael - can you share the URL so I don't have to google (it's christmas after all :) -Original Message- From: Michael Clayton [mailto:[EMAIL PROTECTED] Sent: Friday, December 23, 2005 11:00 PM To: CF-Talk Subject: Re: CFC for Image Manipulation Hi guys. First post! I've been half-hea

RE: Happy non-denominational winter holiday

2005-12-23 Thread Mark A Kruger
There's a SOUTHERN hemisphere??? On 12/23/05, Kay Smoljak <[EMAIL PROTECTED]> wrote: > On 12/23/05, Ken Ketsdever <[EMAIL PROTECTED]> wrote: > > Happy non-denominational winter holiday > > Winter? You insult those of us in the Southern Hemisphere? Bah! > > :D > > -- > Kay Smoljak > http://kay.zomb

RE: pseudo-memory leak

2005-12-07 Thread Mark A Kruger
> > > > > > > > (or > structcopy or >duplicate) > > > > > > > > > > > > > >Then, everywhere you currently use "session" you would use >"localcopyofsession". >

RE: pseudo-memory leak

2005-12-07 Thread Mark A Kruger
.... -Mark -Original Message- From: Mark A Kruger [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 07, 2005 3:22 PM To: CF-Talk Subject: RE: pseudo-memory leak Regarding my "application name" approach - you could then try the following in "botapplication" sessio

RE: pseudo-memory leak

2005-12-07 Thread Mark A Kruger
Regarding my "application name" approach - you could then try the following in "botapplication" session = structnew(); session.user = 0 session.id = 0 . etc It would actually be "variables.session" - but it would allow your code to work (assuming you can come up with defaults for

RE: pseudo-memory leak

2005-12-07 Thread Mark A Kruger
Terry, Session management is set at the "application" level. It's not different for each visitor - it is the same for all pages governed by the "application.cfm" page. Try this approach. this code will in effect create 2 applications - botApplication and regularuserapp

RE: CFEclipse

2005-12-06 Thread Mark A Kruger
You obviously don't own a cat -Original Message- From: Dawson, Michael [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 06, 2005 12:39 PM To: CF-Talk Subject: RE: CFEclipse I'm glad I'm not the only one who uses all the tools in the toolbox for migrating data from one location to an

RE: Spammers getting at my forms and submitting

2005-12-06 Thread Mark A Kruger
Andy, It's an email injection attack - generally harmless to cf servers - other than the fact that YOU are receiving emails. Here's a blog post on the topic: http://mkruger.cfwebtools.com/index.cfm?mode=alias&alias=email%20injection -Mark -Original Message- From: Andy Matthews [mailto:

RE: SQL Question. Compare one list to another

2005-12-06 Thread Mark A Kruger
Original Message- > From: John Wilker [mailto:[EMAIL PROTECTED] > Sent: Monday, December 05, 2005 11:36 PM > To: CF-Talk > Subject: Re: SQL Question. Compare one list to another > > BTW, that link leads to a page with no entries. > > On 12/5/05, Mark A Kruger <[EMAIL

RE: SQL Question. Compare one list to another

2005-12-05 Thread Mark A Kruger
You can create a UDF (in SQL - not CF) that mimics the "listfind" function, then loop through list "A" and check list "B". I have a blog on how to do that UDF. http://mkruger.cfwebtools.com/index.cfm?mode=alias&alias=sql%20udf%20listfin d -Mark P.S. Obviously, storing lists in columns doesn't l

RE: Authorize.net request

2005-11-30 Thread Mark A Kruger
Actually that is not correct... at least not practical. While it's true that the POST to authorize.net is secure, you have to collect the data somehow first. That means the user would submit an insecure form to US and we would turn around and post the data to auth.net. -mark -Original Messa

RE: Cfmx 7.1 on 2.3k locking up once a day

2005-11-28 Thread Mark A Kruger
Gabe - consider some alternative settings for your JVM - things like garbage collection and "newsize" etc. This blog http://mkruger.cfwebtools.com/index.cfm?mode=entry&entry=395F3C8A-058B-CADD- 826F03A60674D5B3 has some good info - plus links to other blogs on the subject. -Mark -Original

RE: REPOST: Crazy CF Mail Spooler problem - HELP!

2005-11-28 Thread Mark A Kruger
x27;t have control of the cf administrator or the box itself. Just filesystem access. It's a government box located on a navy base. John Burns Certified Advanced ColdFusion MX Developer Wyle Laboratories, Inc. | Web Developer -----Original Message- From: Mark A Kruger [mailto:[EMAIL PRO

RE: REPOST: Crazy CF Mail Spooler problem - HELP!

2005-11-28 Thread Mark A Kruger
e Laboratories, Inc. | Web Developer -Original Message- From: Mark A Kruger [mailto:[EMAIL PROTECTED] Sent: Monday, November 28, 2005 9:10 AM To: CF-Talk Subject: RE: REPOST: Crazy CF Mail Spooler problem - HELP! John, So you are saying this is a problem with the files in the spool di

RE: REPOST: Crazy CF Mail Spooler problem - HELP!

2005-11-28 Thread Mark A Kruger
ual tags within the . I'm not sure if that's a reasonable explanation, but so far that's the best I've come up with. John Burns Certified Advanced ColdFusion MX Developer Wyle Laboratories, Inc. | Web Developer -Original Message- From: Mark A Kruger [mailto:[EMAIL PRO

RE: REPOST: Crazy CF Mail Spooler problem - HELP!

2005-11-28 Thread Mark A Kruger
John, So you are saying this is a problem with the files in the spool directory - AFTER you have created them and the request is not longer running - yes? Did you open the .cfmail files and look at the headers? For example, can you verify that the 2nd mail file did not have the address of the firs

RE: Multiple sites in IIS - Modifying DNS

2005-11-18 Thread Mark A Kruger
Dave, CNAME records make it possible to introduce recursion errors. The extra lookup is definitely an issue for small data centers trying to maximize bandwidth and resources. And from a management standpoint it seems easier to work with 1 less kind of record. -Mark -Original Message- Fr

RE: Multiple sites in IIS - Modifying DNS

2005-11-18 Thread Mark A Kruger
Dave, The "CNAME" record is used less than the "A" record because it causes more traffic - more lookups. You can have multiple "A" records for the same IP. Personally, I think it's easier to manage just "A" records. -Mark -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sen

RE: Multiple sites in IIS - Modifying DNS

2005-11-18 Thread Mark A Kruger
Andrew, Why the new zone? What we do is take an existing zone and add a new A record. If the zone is "mydomain.com" I might have. clients.mydomain.com dev.mydomain.com www.mydomain.com etc... all of them A records. -Mark -Original Message- From: Peterson, Andrew S. [mailto:[EMAIL PROT

RE: OT:Coldfusion Podcast Episode 4 Released

2005-11-18 Thread Mark A Kruger
That would depend on the number of beers you have before you begin :) -Original Message- From: Michael Haynie [mailto:[EMAIL PROTECTED] Sent: Friday, November 18, 2005 9:32 AM To: CF-Talk Subject: Re: OT:Coldfusion Podcast Episode 4 Released LOL...thanks for catching that! I hope our

RE: Cf forum

2005-11-16 Thread Mark A Kruger
nd so on. I personally can not stand signatures that have big honkin images in them so I just turn that off in my settings on every forum I visit. On 11/16/05, Mark A Kruger <[EMAIL PROTECTED]> wrote: > > Ray - I'm with you. I love galleon and I detest

RE: Cf forum

2005-11-16 Thread Mark A Kruger
Ray - I'm with you. I love galleon and I detest all the avatars and smileys in other forums. -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 16, 2005 2:58 PM To: CF-Talk Subject: Re: Cf forum Sorry - I see snake - I type spike. ;) So, not to

RE: DB connection question

2005-11-16 Thread Mark A Kruger
ecure, not matter how much money you spend on it. What people need to decide is how much security is "good enough" for their data. -Original Message----- From: Mark A Kruger [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 16, 2005 3:26 PM To: CF-Talk Subject: RE: DB conn

RE: DB connection question

2005-11-16 Thread Mark A Kruger
Regarding ISP's - I suspect that access to DB's is regarded as a necessary evil. In order to compete they will have to allow access. The margin is decreased by some factor with every support call - so a high level of convenience and fewer hurdles bring a higher return. More to the point, while you

RE: JRun Deadlock - Big Problem / Bug

2005-11-16 Thread Mark A Kruger
Jacob, Are you using the sequelink server (i.e. are you using Access) or ODBC sockets? -Mark -Original Message- From: Douglas Knudsen [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 15, 2005 8:06 PM To: CF-Talk Subject: Re: JRun Deadlock - Big Problem / Bug ha! yeah. Its your soft

RE: ColdFusion Reseller Accounts

2005-11-07 Thread Mark A Kruger
John, We go one further. We bill annually for everything but the expensive hosting packages. This cuts down administration. -Mark -Original Message- From: John C. Bland II [mailto:[EMAIL PROTECTED] Sent: Monday, November 07, 2005 11:46 AM To: CF-Talk Subject: Re: ColdFusion Reseller Acc

RE: (OT) server rebooting after virus

2005-11-04 Thread Mark A Kruger
MIchael, What virus did you find originally? -Mark -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Friday, November 04, 2005 2:21 PM To: CF-Talk Subject: (OT) server rebooting after virus The House of Fusion box picked up a virus somehow and even after I've c

RE: formatting a date in cfgrid

2005-11-04 Thread Mark A Kruger
Mike, there's a format object you can use if you are building your dataprovider from the query as in this example: -- var fmt : DateFormat = DateFormat.getDateInstance(DateFormat.SHORT); for(i = 0; i < refRs.getLength(); i++) {

RE: [SOT] avg hourly rate for mid and adv cf programmer

2005-11-03 Thread Mark A Kruger
I have a blog on this that includes my own thoughts plus a number of insightful methods of estimating in the comments. It's more about a "project" but it applies nicely to the points folks are bringing up. http://mkruger.cfwebtools.com/index.cfm?mode=entry&entry=063AE2A0-FB52-7CA5- A0FB864036A497E

mutliple instance installation tutorial

2005-10-28 Thread Mark A Kruger
Anyone know of a good step by step tutorial on installing CF muliple instances? -mark Mark A. Kruger, CFG, MCSE www.cfwebtools.com www.necfug.com http://mkruger.cfwebtools.com ~| Logware (www.logware.us): a new and

RE: Source Control Theory.....

2005-10-27 Thread Mark A Kruger
Doug, 10 points for creativity - made me laugh. -mk -Original Message- From: Douglas Knudsen [mailto:[EMAIL PROTECTED] Sent: Thursday, October 27, 2005 10:33 AM To: CF-Talk Subject: Re: Source Control Theory. we recently chose BUTT over ASS for our SCM solution. BUTT, or Brave Use

RE: ColdFusion Bug :- functions return additional spaces(!)

2005-10-26 Thread Mark A Kruger
Peter, Could you post your exact code please? The whole test script without the little "space here" hint? -Mark -Original Message- From: Peter Coppinger [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 26, 2005 10:22 AM To: CF-Talk Subject: ColdFusion Bug :- functions return additiona

RE: Flushing Cached Queries

2005-10-24 Thread Mark A Kruger
If it's a specific query you can use cachedwithin="#creattimespan(0,0,0,0)#" You might also consider "cachedafter" - sounds like it fits your problem. I have a blog on this very topic :) http://mkruger.cfwebtools.com/index.cfm/2005/10/13/safe.caching -Mark -Original Message- From: Ben

RE: more coldfusion 7.01 problems, Macromedia folks please read! I just want to cry

2005-10-21 Thread Mark A Kruger
more thing. I've taken to editing this file manually. CF Admin doesn't seems to screw it up when you do anything extra. I'm not saying this "is" your problem, but getting that JVM tuned well saves a lot of headaches. -Mark Mark A. Kruger, CFG,

RE: more coldfusion 7.01 problems, Macromedia folks please read! I just want to cry

2005-10-20 Thread Mark A Kruger
Jillian, What are your JVM settings. JRUN is only taking 150 megs of Memory - seems pretty lean to me. Can you post the contents of your cfusionmx7/runtime/bin/jvm.config file? It might be helpful. -Mark -Original Message- From: Jillian Koskie [mailto:[EMAIL PROTECTED] Sent: Thursday, Oc

RE: Problems Making a CF DSN to SQL Server

2005-10-18 Thread Mark A Kruger
Mickael, Also, using the "server network utility" (part of SQL server tools) unload the mixed protocol and named pipes - leaving ONLY tcip/ip. -Mark -Original Message- From: Mickael Elmalem [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 18, 2005 3:07 PM To: CF-Talk Subject: Problems M

RE: Problems Making a CF DSN to SQL Server

2005-10-18 Thread Mark A Kruger
Mickael, Add an entry in your host file for your machine - or use "localhost" or 127.0.0.1. When you say "my machine name' you are really talking about an NBT name - and the JDBC system would not be able to resolve that. It uses (in order) HOSTS file, DNS and IP. -Mark -Original Message

RE: FTP Server

2005-10-10 Thread Mark A Kruger
a number of times - though nothing terribly recent. My guess is that this is what charlie experienced. -Mark Mark A. Kruger, CFG, MCSE www.cfwebtools.com www.necfug.com http://mkruger.cfwebtools.com

RE: FTP Server

2005-10-10 Thread Mark A Kruger
Charlie, That second item on your list is a virus or worm that was going around (probably still is) that named itself "serv-u". It had nothing to do with the "serv-u" server per se. The creator used "serv-u" because it was common enough to not raise red flags on some servers and even home pcs. -m

RE: OT: FTP Server

2005-10-07 Thread Mark A Kruger
has anyone here used "bulletproof" ftp? -Original Message- From: Russ [mailto:[EMAIL PROTECTED] Sent: Friday, October 07, 2005 4:56 PM To: CF-Talk Subject: RE: OT: FTP Server It's interesting that in the admin tool when adding users, the password is entered in plain text... that's not

RE: CFM : postcard, ecard

2005-10-07 Thread Mark A Kruger
Are you sure you are feeling all right? You just used the words "oracle" and "free" in the same paragraph ;) -Original Message- From: cfgaill alex [mailto:[EMAIL PROTECTED] Sent: Friday, October 07, 2005 9:12 AM To: CF-Talk Subject: CFM : postcard, ecard Hello, I'm searching for a good

RE: ColdFusion Security Holes - Best Practices

2005-10-07 Thread Mark A Kruger
See I love that phone call approach. That's one that most hackers miss I think. Of course it requires human contact so it may be beyond their skill level.. -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Friday, October 07, 2005 9:01 AM To: CF-Talk Subje

RE: ColdFusion Security Holes - Best Practices

2005-10-07 Thread Mark A Kruger
t" to break into the system - but as a matter of practice you don't want internal ips and internal servernames (netbios names) to be public. -Mark Mark A. Kruger, CFG, MCSE www.cfwebtools.com www.necfug.com http://mkruger.cfwebtools.com -Original Message- From: Michael T. Tang

<    2   3   4   5   6   7   8   9   10   11   >