Re: OLEDB connection failing intermittently!

2002-02-21 Thread Thomas Muck
I was getting occassional errors, which usually required that I restart the CF server. When I have this box unchecked, the errors don't seem to occur. tom Jamie Jackson [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Yes, it is checked. Thanks for giving me

Re: OLEDB connection failing intermittently!

2002-02-21 Thread Thomas Muck
Is maintain database connections checked for that datasource in the administrator? I've found that when that box is checked, I get intermittent errors. tom Jamie Jackson [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... My CF (OLEDB) connection to MSSQL is

Re: HTML E-mail Stats

2002-01-30 Thread Thomas Muck
I've analyzed clickthru data on text/html/aol emails and found about 4-8% of the people using text-based email readers, depending upon what type of clientele the email went to. This is based on thousands of clickthrus. tom Does anyone have (or heard of) or any stats on how many people are

Re: HTML E-mail Stats

2002-01-30 Thread Thomas Muck
If someone has a text-only reader, they should see the HTML and/or AOL versions as attachments. I'm not sure about all readers, but the ones I've tested with and the ones that our clients have work this way. tom Tyler Silcox [EMAIL PROTECTED] wrote in message 001b01c1a9c5$904c1040$[EMAIL

Re: Checking for internal broken links .. ?

2002-01-24 Thread Thomas Muck
If you have Dreamweaver or UltraDev, you can go into the site window and click Site Check Links Sitewide. If you don't have it, there's a 30 day trial on the MM site. tom Mark A. Kruger - CFG [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... If you have CF

Re: UltraDev

2002-01-24 Thread Thomas Muck
Ultradev will give you visual access to your pages. It's based on Dreamweaver, which is the industry standard for developing Web pages. Plus, with UltraDev, you can create parameterized server-side code snippets called Server Behaviors that speed up the development process. tom Chris Combs

Re: split

2002-01-23 Thread Thomas Muck
Damn, you learn something every day. ;-) tom Raymond Camden [EMAIL PROTECTED] wrote in message news:021f01c1a424$5ec6f680$[EMAIL PROTECTED]... Um, no, you are wrong. The second arg to listtoarray specifies a list of delimiters. Every character passed will be used. When you pass: PPI you are

Re: split

2002-01-23 Thread Thomas Muck
(delimiter,string); while(nextItem GT 0){ arrayappend(returnarray,mid(string,i,nextitem-i)); i=nextitem + offset; nextItem = find(delimiter,string,i+1); } if(len(string) GT i) arrayappend(returnarray,right(string,len(string)-i + 1)); return returnArray; } /cfscript tom Thomas Muck

Re: OT Modifying Source File in DTS package

2002-01-08 Thread Thomas Muck
I usually create a Visual Basic file out of the DTS package (one of the options when saving DTS packages) and then modifiy them directly from Visual Basic. tom Don Vawter [EMAIL PROTECTED] wrote in message 01b601c1981b$67ae2710$6501a8c0@LAPTOP">news:01b601c1981b$67ae2710$6501a8c0@LAPTOP... I

Re: CFMail and html/text

2002-01-07 Thread Thomas Muck
You're probably better off creating a separate version for AOL subscribers using only the x-aol version. Regular newsreaders such as Outlook Express will interpret X-AOL as an attachment. Only AOL software recognizes it. Not only that, but you'll trim the message size by creating separate

Re: CFMail and html/text

2002-01-07 Thread Thomas Muck
If you have extra whitespace in the headers or boundaries, there might be a problem. There should be one blank line after each. Also, make sure the multipart/alternative header is all on one line -- not wrapped as in the post. tom [EMAIL PROTECTED] wrote in message

Re: Developers Edition Coming

2002-01-04 Thread Thomas Muck
In the FAQs it says this: The Developer Edition becomes available on January 7, 2002. If you downloaded and installed the ColdFusion Trial Edition before then, you must download the free Trial Edition again on or after January 7, 2002 to get the Developer Edition. The Trial Edition you downloaded

Re: IE 6.0 Cookies Default Settings Cookie Problem

2001-12-28 Thread Thomas Muck
Yes, IE 6 is cookie-unfriendly by default. Most users wouldn't know this, unfortunately, so there are many sites out there that are simply not working with IE 6. tom Brunt, Michael [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I recently had an apparent

Re: HTML Code for Meassage has been read...

2001-02-24 Thread Thomas Muck
I haven't tried this (server is down at the moment), but you might be able to send a Disposition-Notification-To header with a CFMAILPARAM tag. Something like: CFMAILPARAM NAME="Disposition-Notification-To" VALUE="[EMAIL PROTECTED]" tom www.basic-ultradev.com -