CF5 and Multi-Part email

2001-08-06 Thread Christian L. Watt
^%$#^$@$#*(* Sorry...Had to get that out With CF 4 I had a Multi-Part header email that worked just fine. Now, I run in CF5 and no luck...it puts it in text only. I have tried the cfmailparam and now have only one content type, but it is still grabbing the first Mime boundry and showing

RE: Verity problem

2001-08-03 Thread Christian L. Watt
Adrian, You can search for those words if you replace them with no blanks, but make sure you put a space both before and after them. This should also only happen if you are splitting the string out to search the words one at a time. #replace(string, and , , all)# #replace(string, or ,

RE: Outputing a Query In a different format Question...

2001-07-30 Thread Christian L. Watt
This is good, but does anyone have an idea for filling one column, then a second with both columns being close to equal, but keeping grouping in the same column??? Alabama Texas Company 1 Company 4 John

IGMP call to Multicast addresses???

2001-07-23 Thread Christian L. Watt
It took hours for me to figure out what in the hell was sending multicast packets every second *literally* and finally figured out it was ClustCats. Can anyone explain to me why? Thank you, Christian Watt Webmaster SkillPath Seminars [EMAIL PROTECTED]

RE: Column names containing a # sign

2001-07-10 Thread Christian L. Watt
Try tripleing your # signs. I know this sounds crazy, but had a similar instance and table_Name### worked like a charm. CW -Original Message- From: Michael Lugassy [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 10, 2001 12:50 PM To: CF-Talk Subject: Re: Column names containing a # sign

RE: Form builder software

2001-07-10 Thread Christian L. Watt
I would just use adobe acrobat. Will do everything you want... CW -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 10, 2001 2:10 PM To: CF-Talk Subject: SOT: Form builder software Hi all, I need to find a better solution than html forms to

RE: HTML Question with Netscape 4 and 6

2001-07-10 Thread Christian L. Watt
After your inner table end tag, put an ending row tag also, just a /td CW -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 10, 2001 3:29 PM To: CF-Talk Subject: RE: HTML Question with Netscape 4 and 6 and once again, i think we need to do something

RE: JS, http_referer and browser hell...

2001-06-27 Thread Christian L. Watt
Any reason why you couldn't just pass a varible with the URL and then check for its existance on the new page??? Window.Open('http://www.yoursite.com/page.cfm?checked=yes') Opened Page: cfif IsDefined(checked) !--show the page-- Else !--redirect

RE: cfid/cftoken

2001-04-13 Thread Christian L. Watt
Ken, The cfid is incremented by one per user for that particular server. The cftoken is a radomly generated number. By putting the two together you get a unique id that in theory is unique to each individual user, but I would not suggest trying to use that in a multiserver enviroment. I

RE: SQL Returns

2001-04-12 Thread Christian L. Watt
Instead of using (cfoutput Query="queryname") try just cfoutput and use the queryname.outputvarible (#queryname.columname#). This will only output the first line no matter how many records are selected. Hope this helps! CW -Original Message- From: Jeffry Houser [mailto:[EMAIL

RE: cfoutput lists Alphabetically

2001-04-12 Thread Christian L. Watt
Try this query (given earlier) and this code for your output: cfquery name="info" datasource="yourdb" SELECT * FROM Customers ORDER BY LastName DESC /cfquery cfset fletter = "" Table cfoutput query="info" cfif fletter neq Left(Lastname, 1) cfset fletter =

RE: Those darn Access .ldb files

2001-03-07 Thread Christian L. Watt
Have similar situation. What I did was upload that database, then copy all its contents to the production database. That way it doesn't matter how many people are connected, the info gets updated, and you have a backup should something happen to the production DB either during transfere or

RE: LEVEL 8 Systems Corporate Website

2001-03-07 Thread Christian L. Watt
They used image ready and photoshop, my opinion is to use Fireworks by Macromedia. Adobe didn't have anything to that until Fireworks started kicking there ass on web production graphics. cw -Original Message- From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March

RE: Cached Query! Was Working Yesterday!

2001-02-27 Thread Christian L. Watt
If your developement server is different than your production server, make sure that cached queries is enable in CF Adminstrator... -Original Message- From: Willy Ray [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 27, 2001 12:00 PM To: CF-Talk Subject: Cached Query! Was Working

RE: SQL Server Licensing question

2001-02-27 Thread Christian L. Watt
Yes, you can. ColdFusion is the main user of the database at that point. I believe this clause is reffering to you setting up a SQL server and letting other companies connect to it as a production database for there company, not for web production. Not the best articulator, but hope this

RE: WDVL Poll

2001-02-27 Thread Christian L. Watt
Lets also keep in mind that a site that runs a poll to include CF that no where do I see has any CF info, help, or any mention except in a poll, how can you say that it is a valid poll without the proper exposure. Let Macromedia, a site of signifcant traffic from all types of developers (and a

RE: CFFILE Error (why?)

2001-02-27 Thread Christian L. Watt
An IP is not a valid path. With CFFile you must use a valid local path. If it works in Explorer (not IE, MS) then it will work with CFFile (as a general rule of thumb.) CW -Original Message- From: Jay Patton [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 27, 2001 1:38 PM To:

RE: Form Variables Unresolved

2001-02-23 Thread Christian L. Watt
Are both your severs open to the outside world??? I have been going nuts with the same problem, but have found that most of the errors are caused by robots!!! CW -Original Message- From: Chris Jenkins [mailto:[EMAIL PROTECTED]] Sent: Friday, February 23, 2001 10:52 AM To: CF-Talk

CFMail?

2001-02-22 Thread Christian L. Watt
Hello all! Can anyone tell me how to track if an email is opened using CFMail to send it? Any help would be great!!! CW ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm

RE: browser refresh/reload

2001-02-22 Thread Christian L. Watt
This will not work...on a refresh the referring page remains the same as the original referrer. Sorry :-) CW -Original Message- From: Phoeun Pha [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 22, 2001 11:36 AM To: CF-Talk Subject: RE: browser refresh/reload yes there is. there

RE: Tag or function to import csv file to db

2001-02-21 Thread Christian L. Watt
I have the same situation. What I did is set up an Access DB that uses the text file as the source of the table. The text file is copied over automatically, then I have a simple update page that pulls the info out of the Access table into SQL. Hope this helps!!! CW -Original Message-

RE: SQL

2001-02-21 Thread Christian L. Watt
Just set up the DSN in your local CF Server. CW -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 20, 2001 11:55 AM To: CF-Talk Subject: SQL How do you query a SQL database on another server? I do local querys on my Access DB's, and im thinking

RE: cfcache action=flush

2001-02-19 Thread Christian L. Watt
I run into this a lot and use this as work around. Dump you query into an application varible as an array, then when you update the info, update the db then lock your array and clear it and repopulate it. Then you still get the spead of having a cached query and can update it anytime you need