Re: How to test for null in a query object

2005-12-28 Thread James Holmes
You could do a Query of Queries to select rows where the chosen column IS NULL. On 12/28/05, Chris Velevitch [EMAIL PROTECTED] wrote: I have a query object created from a left outer join of 2 tables and I want to test to see if the values in the join result are null. How do I do this? --

Re: Flash Forms..is there a verdict?

2005-12-28 Thread Wayne Putterill
To be fair, when 7 was launched that was the impression we were given about flash forms, that they were a no-brainer addition to CF. As you say, that is certainly not the case, they require a considerable time investment to learn. On 12/28/05, dave [EMAIL PROTECTED] wrote: I think if you use

Re: Flash Forms..is there a verdict?

2005-12-28 Thread James Holmes
I tried the form at that site; on IE it did nothing when a search was typed, showing no records, while on FF it showed all records and wouldn''t allow me to type anything at all. Then I installed Flash Player 8, restarted both browser sessions and tried it again; it works in IE and still doesn't

Re: How to test for null in a query object

2005-12-28 Thread Chris Velevitch
On 12/28/05, James Holmes [EMAIL PROTECTED] wrote: You could do a Query of Queries to select rows where the chosen column IS NULL. Actually, I'm looping through each row in the query object and building a structure. The join is a one-to-many relationship where there can be 0 or more rows in

RE: Java substring

2005-12-28 Thread Snake
Yea, but I would have thought you would need to create an object first to access those methods, I didn't realise you should us ethem as though they are native CFML functions. But I guess this is considered undocumented and unsupported right just like calling the java runtime or service factory.

open source CF Contact Manager

2005-12-28 Thread Katz, Dov B \(IT\)
Does anyone have a recommendation for an open source CF(and sql) based contact manager? I know there's the ajax based one, but I'm looking for something a bit more category based Any ideas? Thanks Dov NOTICE: If received in error,

Re: Favorite CF books

2005-12-28 Thread Cutter (CF-Talk)
I would also suggest the Deitel Dietel title Java How To Program. Great book for beginning to intermediate Java Programmers, including a step by step small game programming project with primer for OOD with UML and Design Patterns. Cutter Yves Arsenault wrote: My personal favorite was the CF

RE: How to test for null in a query object

2005-12-28 Thread Dawson, Michael
CF does not know nulls. If your query object, you can look for an empty string. However, if you have valid results that are empty strings, in addition to valid nulls, in your database, you can use a NULL function to return a placeholder value. In certain DBs, the function is isNull(). In

EBSIDIC Conversion

2005-12-28 Thread Tim Claremont
For my latest project, I need to convert a portion of my output into EBSIDIC format and submit the result as a text file to a legacy (duh) system. Any EBSIDIC converters out there or any suggestions on how to go about this? As crazy as it sounds, only SOME of the fields in this delimited text

RE: EBSIDIC Conversion

2005-12-28 Thread Dawson, Michael
First, for clarification, the acronym is EBCDIC. http://www.google.com/search?hl=enlr=q=convert+ebcdic+to+asciibtnG=Se arch M!ke -Original Message- From: Tim Claremont [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 28, 2005 7:19 AM To: CF-Talk Subject: EBSIDIC Conversion For my

RE: Java substring

2005-12-28 Thread Rich Kroll
I stumbled onto a site that had a few of these undocumented features of CF. The URL for any that are interested is http://www.activsoftware.com/mx/undocumentation/ Rich Kroll Application Developer -Original Message- From: Snake [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 27, 2005

Re: free community mx fyi

2005-12-28 Thread Zaphod Beeblebrox
Maybe this was a server stress testand it seems to be failing currently. On 12/27/05, Adrian Lynch [EMAIL PROTECTED] wrote: 3 days, 1400 articles to read... WHAT ARE YOU DOING STILL READING THIS?! :OD -Original Message- From: dave [mailto:[EMAIL PROTECTED] Sent: 28

Re: free community mx fyi

2005-12-28 Thread Ray Champagne
I just noticed that while trying to see more of an article. Grrr...maybe Mikey D. should post an article on server configuartion for them. :) Zaphod Beeblebrox wrote: Maybe this was a server stress testand it seems to be failing currently. On 12/27/05, Adrian Lynch [EMAIL

Re: EBSIDIC Conversion

2005-12-28 Thread Tim Claremont
Naturally, I did the google search, but the listings that I saw, and the companies I contacted all claim that they can convert the entire file, but not individual fields. Since a table is readilly available containing the codes, I could perform a parsing of the string and then a lookup of each

CF/JS (Invalid Argument)

2005-12-28 Thread Adkins, Randy
Using IE 6.0 and the following JS, generates an error of Invalid Argument. In Firefox 1.0.7 it runs fine. function popCodes(vRowID){ alert(Row Counter = +vRowID); var urlCodePage = 'popFindCode.cfm?ID='+vRowID; alert(url = +urlCodePage); var newwin =

RE: CF/JS (Invalid Argument)

2005-12-28 Thread Snake
What line does it say the error is on. -Original Message- From: Adkins, Randy [mailto:[EMAIL PROTECTED] Sent: 28 December 2005 15:30 To: CF-Talk Subject: CF/JS (Invalid Argument) Using IE 6.0 and the following JS, generates an error of Invalid Argument. In Firefox 1.0.7 it runs fine.

Re: How to test for null in a query object

2005-12-28 Thread Claude Schneegans
You could do a Query of Queries to select rows where the chosen column IS NULL. I don't think QofQ can handle null values, only empty strings, which are not the same. -- ___ REUSE CODE! Use custom tags; See

Re: How to test for null in a query object

2005-12-28 Thread Claude Schneegans
The join is a one-to-many relationship where there can be 0 or more rows in the outer join to the main table. I think in your case, you could just test for empty strings. -- ___ REUSE CODE! Use custom tags; See

RE: CF/JS (Invalid Argument)

2005-12-28 Thread Adkins, Randy
Line: var newwin = window.open(urlCodePage,Code Selection,HEIGHT=200,WIDTH=450,scrollbars=yes,resizable=yes); At first I was thinking okay, IE chokes on the scollbars or resizable but that is not the case, Nor the height and width attributes. -Original Message- From: Snake

Re: CF/JS (Invalid Argument)

2005-12-28 Thread Ken Ferguson
It's the title. It can't handle the space. Try Code_Selection and I bet it works. I had this trouble recently too. --Ferg Adkins, Randy wrote: Line: var newwin = window.open(urlCodePage,Code Selection,HEIGHT=200,WIDTH=450,scrollbars=yes,resizable=yes); At first I was thinking okay, IE chokes

RE: CF/JS (Invalid Argument)

2005-12-28 Thread Adkins, Randy
Doh!! Smacks myself in the head!! Thanks Ken! -Original Message- From: Ken Ferguson [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 28, 2005 11:04 AM To: CF-Talk Subject: Re: CF/JS (Invalid Argument) It's the title. It can't handle the space. Try Code_Selection and I bet it works.

SSL Noob

2005-12-28 Thread John Wilker
I've searched and read, but all the conversations start at a point I'm not at yet :) I've never had to implement SSL before, and now need to set up my dev machine for SSL. I'm running CF 7, Jrun Any one point me in the right direction? Thanks! J -- John Wilker Writer/Web Consultant

Re: EBSIDIC Conversion

2005-12-28 Thread Paul Hastings
Tim Claremont wrote: this on a field by field basis. I have found converters that will convert the entire file, but field by field on the fly sounds a bit more challenging. see the code in: http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=7threadid=1086101

Re: SSL Noob

2005-12-28 Thread Anthony Prato
SSL requires a secure certificate to be setup on the web server. Are you trying to set one up for development or a site/app? Which web server are you using? On 12/28/05, John Wilker [EMAIL PROTECTED] wrote: I've searched and read, but all the conversations start at a point I'm not at yet :)

Re: SSL Noob

2005-12-28 Thread John Wilker
Development. Not sure if I can have one on my server that I use for multiple purposes or if each site on my dev machine needs one? jruns's web server On 12/28/05, Anthony Prato [EMAIL PROTECTED] wrote: SSL requires a secure certificate to be setup on the web server. Are you trying to set one

RE: SSL Noob

2005-12-28 Thread Dave Watts
I've never had to implement SSL before, and now need to set up my dev machine for SSL. If this is just for development, and you're using the built-in JRun web server: http://www.bpurcell.org/blog/index.cfm?mode=entryentry=1064 If you're using another web server, you can easily create

Re: SSL Noob

2005-12-28 Thread John Wilker
Brandon's blog is having trouble accepting comments :) That helped a great deal Dave thanks! One follow up question. I have my machine set up with multiple servers. ie https://localhost:8102/Clients_cfusion https://localhost:8101/cfusionflex etc. the project I'm working on is in the 8102

Re: SSL Noob

2005-12-28 Thread John Wilker
oops, obviously those URLs shoulda been http, not https :) ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http://www.houseoffusion.com/banners/view.cfm?bannerid=48 Message:

RE: SSL Noob

2005-12-28 Thread Dave Watts
That helped a great deal Dave thanks! One follow up question. I have my machine set up with multiple servers. ie https://localhost:8102/Clients_cfusion https://localhost:8101/cfusionflex etc. the project I'm working on is in the 8102 server, I'm not sure how to do the SSL thing

free mail server preferences

2005-12-28 Thread Ray Champagne
Setting up a new dev server, and I need a mail server that is free and easy to set up. It'll only be handling light loads for testing purposes mostly. Box is running Windows 2003. What are your preferences? Ray -- = Ray

Re: free mail server preferences

2005-12-28 Thread Bryan Stevenson
ArgoSoft Mail Server...damn simple!! 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

RE: free mail server preferences

2005-12-28 Thread Snake
I presume u want windows products. Hmail, smartermail and mailenable are all available in free versions. Russ -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: 28 December 2005 17:45 To: CF-Talk Subject: free mail server preferences Setting up a new dev server,

RE: free mail server preferences

2005-12-28 Thread Jim Davis
-Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 28, 2005 12:45 PM To: CF-Talk Subject: free mail server preferences Setting up a new dev server, and I need a mail server that is free and easy to set up. It'll only be handling light loads

Re: SSL Noob

2005-12-28 Thread John Wilker
suppose I shoulda done a bit more expirementing before posting. That worked just fine. https on 9100 and regular on 8102, Thanks! J On 12/28/05, Dave Watts [EMAIL PROTECTED] wrote: That helped a great deal Dave thanks! One follow up question. I have my machine set up with multiple

HoF archive search

2005-12-28 Thread Bryan Stevenson
Hey all, I tried the HoF Google search and only turned up 142 posts for myself...and I know that's WAY low ;-) So I guess if I tell folks to search the archives for my name and a subject keyword (hmmm...image manip CFC comes to mind..hehe...or the unfortunate dubbing of The Disruptor...hehe)

Re: HoF archive search

2005-12-28 Thread Michael Dinowitz
I'm writing an extension to the lists so you can select a person and see their latest X posts. This should solve the problem. :) Google is not the best way to search the archives as they tend to index the first X number of bytes and if you post lower down on a large thread, they don't 'see'

Re: HoF archive search

2005-12-28 Thread Bryan Stevenson
Swt! Thanks for the inside scoop Mike ;-) 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

Re: Favorite CF books

2005-12-28 Thread Dustin Tinney
it's not only CF but more on theory and it is one of the best books out there for software development.. a must read for any one who wants to swim The Pragmatic Programmer: From Journeyman to Master (Paperback) http://www.amazon.com/gp/product/020161622X/ref=pd_kar/104-3619649-4062328?n=283155

Re: HoF archive search

2005-12-28 Thread Michael Dinowitz
Any time. These are the features I'm looking at. Add any you feel I've missed: Search by poster name Search by poster email Show latest 20 posts from searched for person if exact or one person found Show names (never emails) for search where more than one result is found Allow for scanning for

RE: HoF archive search

2005-12-28 Thread Jim Davis
-Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 28, 2005 1:18 PM To: CF-Talk Subject: Re: HoF archive search Any time. These are the features I'm looking at. Add any you feel I've missed: Search by poster name Search by poster email

Re: Java substring

2005-12-28 Thread Barney Boisvert
Yea, but I would have thought you would need to create an object first to access those methods, The object is already created; you just know it as a CF object. I didn't realise you should us ethem as though they are native CFML functions. They are NOT CFML functions. Function take

Re: HoF archive search

2005-12-28 Thread Bryan Stevenson
Thanks again Mike. I'm not sure it's in your list...but a total number of posts for a specific poster would be nice. Not tooting my own horn or anything, but I see a benefit in landing contracts if I could point a potential client to HoF and say search for my name. I've posted my fair

DW: Unable to generate a proxy

2005-12-28 Thread John Wilker
In my ever more maddenning attempts to work with PayPals API I tried plugging the WSDL into DW. This is the first time I've ever triend that and I get an error about unable to Generate Proxy Is that something I can remedy or something in the WSDL that ain't kosher? Here's the WSDL I'm playing

Re: free community mx fyi

2005-12-28 Thread Ray Champagne
Wow, we must have really done a number on the server. It's still down 4 hours later. And here I am stuck on page two of a three page article! Dammit. Zaphod Beeblebrox wrote: Maybe this was a server stress testand it seems to be failing currently. On 12/27/05, Adrian Lynch [EMAIL

Re: free community mx fyi

2005-12-28 Thread John Wilker
ha ha ha, same here. taking me forever to get through an article on web services and SOAP. about every 5th refresh gets a page :) Guess it proves the popularity. On 12/28/05, Ray Champagne [EMAIL PROTECTED] wrote: Wow, we must have really done a number on the server. It's still down 4 hours

Re: free community mx fyi

2005-12-28 Thread dave
it works fine 4 me also they are upgrading their server, I have noticed at night when they release the days new articles the server goes down Server Upgrade! We will be upgrading the CMX servers over this holiday weekend. We will try to keep downtime to a minimum and we apologize if this

Re: HoF archive search

2005-12-28 Thread dave
oh w/e bryan, you just want them to know that you gave me my nickname lol ~Dave the disruptor~ google will pay you money to getting rid of ie :) http://explorerdestroyer.com/ http://www.killbillsbrowser.com/ From: Bryan Stevenson [EMAIL PROTECTED] Sent:

Re: HoF archive search

2005-12-28 Thread Bryan Stevenson
oh w/e bryan, you just want them to know that you gave me my nickname lol hehe...at the time given the rather heated threads that were going on I thought the list was going to string me up by my pinkie toesbut I was lucky ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development

Re: free mail server preferences

2005-12-28 Thread John Paul Ashenfelter
On 12/28/05, Bryan Stevenson [EMAIL PROTECTED] wrote: ArgoSoft Mail Server...damn simple!! I'll add my vote for ArgoSoft as well. If memory serves though, the free one requires you to be logged in to use it (doesn't run as a service). Newer versions may be different than the one running on a

A Contractor or Two

2005-12-28 Thread [EMAIL PROTECTED]
I figured I'd move this to cf-talk and hear some comments=2E Anyone care t= o discuss=3F Original Message: - From: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Wed, 28 Dec 2005 14:47:00 -0500 To: [EMAIL PROTECTED] Subject: RE: Needed: A Contractor or Two Original Message:

Re: free community mx fyi

2005-12-28 Thread Duncan
I got a bit bored of trying so I hit page one and then print - saves the lottery of trying to make it to page 3! On 12/29/05, dave [EMAIL PROTECTED] wrote: it works fine 4 me also they are upgrading their server, I have noticed at night when they release the days new articles the server goes

Re: more of my SQL issues :)

2005-12-28 Thread John Wilker
Not too horrible no. there are five, for now :) It's not likely to grow too big. Was hoping for something a little more dynamic. I'd have to do a lot of list sorting to find which values are in each result set. I only want things that are in all N types. On 12/26/05, Sean Corfield [EMAIL

RE: free mail server preferences

2005-12-28 Thread Kevin Aebig
hMailServer... great product and MySQL based. !K -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: December 28, 2005 11:45 AM To: CF-Talk Subject: free mail server preferences Setting up a new dev server, and I need a mail server that is free and easy to set up.

cfxml/cffile character set?

2005-12-28 Thread Anthony Prato
I'm assuming character set doesn't matter internally when you use CFXML, but when converting it to string in generates the xml start for you. I've read about the charset attribute on the cffile tag, I'm guessing this will work, but for the xml do I have to use regex or something to add the

Re: A Contractor or Two

2005-12-28 Thread Matt Robertson
If the issue is whether or not you can quote a standardized rate to a client, my answer is an emphatic yes, and no, don't be greedy as in set the price on a job-specific basis. Often my clients hear me say that there are only two types of jobs: Brain surgery and Legwork. Brain surgery equates

isolating transaction - inside loops? or not?

2005-12-28 Thread Michel Deloux
Hi all, I`m developing an application with several table inserts/updates with relational data with. No problem. But I need your help about this: Please look this code: First query - father table: cfset CommitOK = true cftransaction action=begin cftry cfloop collection=#form#

Running a DTS package with CF

2005-12-28 Thread Mickael Elmalem
Hello All, I am hoping that someone help me with this one. We have a server in our local network that synchronizes to a remote website. This is done by a DTS package running on a machine in our network at scheduled intervals. The issue is for what ever reason the DTS package that is

RE: free mail server preferences

2005-12-28 Thread Rick Faircloth
Hi, Kevin... I've been running the free version of SmarterMail, which supports only one domain and want to be able to send mail from multiple domains, but that requires the $200 version of SmarterMail. I went and checked out hMailServer on the website, and while it looks good from the MySQL

Re: free mail server preferences

2005-12-28 Thread Bryan Stevenson
*ahem* I'd like to once again offer up ArgoSoft Mail Server as an option -free -multi-domain -doesn't require MySQL -an untrained chimp could set it up -did I mentioin it's free -oh ya it's free BTW OK..I'm done...ignore me at you peril ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce

Re: Running a DTS package with CF

2005-12-28 Thread Bryan Stevenson
Yes you can...no I don't know howI'd bet it's via CFEXECUTE though. I'd look into why it's not running as that may be the bigger issue. I've seen daily SQl Server backups not run (nor throw a warning when scheduled) because one of the required MS SQL Server services was not running.

Re: A Contractor or Two

2005-12-28 Thread John C. Bland II
I would agree. To be honest, I teach anyone who will listen not to work with people who have packages setup for custom work. Now, a prebuilt CMS or whatever is fine but to say You get 10 pages + 1 swf for $750 is a terrible deal. (that's only an example) We either work hourly or estimate the

RE: free mail server preferences

2005-12-28 Thread Rick Faircloth
Hi, Bryan... I assume your *subtle* hint was directed at me... :o), so...where do I find ArgoSoft Mail Server... Rick -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 28, 2005 6:25 PM To: CF-Talk Subject: Re: free mail server preferences

RE: free mail server preferences

2005-12-28 Thread Dave Watts
I assume your *subtle* hint was directed at me... :o), so...where do I find ArgoSoft Mail Server... http://www.google.com/search?q=ArgoSoft+Mail+Server http://www.argosoft.com/mailserver/ Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber

Re: Running a DTS package with CF

2005-12-28 Thread Anthony Prato
try searching google for DTS and asp, I think I saw a solution that way that may be applicable to CF too. On 12/28/05, Mickael Elmalem [EMAIL PROTECTED] wrote: Hello All, I am hoping that someone help me with this one. We have a server in our local network that synchronizes to a remote

Re: free mail server preferences

2005-12-28 Thread Bryan Stevenson
Hi, Bryan... I assume your *subtle* hint was directed at me... :o), so...where do I find ArgoSoft Mail Server... Rick LOL...I've never been accused of being subtle ;-) http://www.argosoft.com/mailserver/ tough URL eh ;-) For Dev environment it does the trick Cheers Bryan Stevenson

Re: free mail server preferences

2005-12-28 Thread Bryan Stevenson
http://www.google.com/search?q=ArgoSoft+Mail+Server http://www.argosoft.com/mailserver/ Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Yeah I was just gonna say hit Google too..hehe Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc.

RE: free mail server preferences

2005-12-28 Thread Rick Faircloth
Thanks, Dave (and now Bryan)... I guessed the domain and went straight to it, but thought I'd ask Bryan to encourage the dialogue... ;o) Now...about ArgoSoft... I see in the version comparison chart that all versions do support multiple domains...that's good...really all I need to do is to be

Re: free mail server preferences

2005-12-28 Thread Matt Robertson
On 12/28/05, Bryan Stevenson [EMAIL PROTECTED] wrote: -an untrained chimp could set it up Glad you said 'untrained' otherwise I would have taken offense. :-) As much as I agree that Argosoft is EZ-PZ, I think everyone has forgotten that iMS_SE has recently come out with a freebie version as

RE: free mail server preferences

2005-12-28 Thread Snake
I haven't used hmail, but it is supported by HELM, which is a windows only control panel. So I don't think there are any PHP requirements. -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: 28 December 2005 23:12 To: CF-Talk Subject: RE: free mail server preferences

Re: free mail server preferences

2005-12-28 Thread Bryan Stevenson
I guessed the domain and went straight to it, but thought I'd ask Bryan to encourage the dialogue... ;o) Figured ya knew better ;-) No need to encourage me to talkjust ask the lads in the office here...I think shut him up may be their reply!! I notice the free version doesn't run as a

Re: free mail server preferences

2005-12-28 Thread Bryan Stevenson
As much as I agree that Argosoft is EZ-PZ, I think everyone has forgotten that iMS_SE has recently come out with a freebie version as well. Ahhhthat's the lite version of what this list runs on right? Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems

Re: free mail server preferences

2005-12-28 Thread Matt Robertson
On 12/28/05, Bryan Stevenson [EMAIL PROTECTED] wrote: Ahhhthat's the lite version of what this list runs on right? yep. http://coolfusion.com/imslite/ I've played with IMS_SE off and on for some time and finally had occasion to buy it not so long ago. It worked great to solve some really

RE: free mail server preferences

2005-12-28 Thread Rick Faircloth
Hello, Matt... Are you referring to iMS-Lite? (Their comparison chart says that the developer edition of iMS-SE is the only one that's free...) Is that just for sending email from multiple domains? It's not a full-scale email server...is it? My client's email addresses are forwarded addresses

RE: free mail server preferences

2005-12-28 Thread Snake
U know that windows 2003 server has mail built in right ? -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: 29 December 2005 00:17 To: CF-Talk Subject: RE: free mail server preferences Hello, Matt... Are you referring to iMS-Lite? (Their comparison chart says

RE: free mail server preferences

2005-12-28 Thread Rick Faircloth
Nope...mine auto-starts (a preference I think)although I do seem to recall a need to login for it to kick into gear (old fuzzy info though...never tested if I recall correctly) I wouldn't like that too much...the server would need to start if Windows 2000 Server just came back to the

Re: free mail server preferences

2005-12-28 Thread Bryan Stevenson
I wouldn't like that too much...the server would need to start if Windows 2000 Server just came back to the login screen if power went off and the server came back up following battery backup drainage...have to go to the Plus version ($49) for that feature...which is still ok...

Re: free mail server preferences

2005-12-28 Thread Matt Robertson
Howdy Rick, I am actually using iMS_SE for one client. If you click on the products page you see the price is $0.00. As I understand it the two products are essentially the same except for their respective capacity. http://coolfusion.com/Commerce/index.cfm?category=7 And no, this is not a

Re: A Contractor or Two

2005-12-28 Thread Ali Awan
Matt, I've been asking a similar question to no avail. I'm glad someone started this thread over here. As it seems from your post that you have quite some experience doing this on your own. I just wanted to ask some advice of you. Do you suggest having a set hourly rate, set in stone? Like

RE: free mail server preferences

2005-12-28 Thread Rick Faircloth
Windows 2000 Server here... -Original Message- From: Snake [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 28, 2005 7:24 PM To: CF-Talk Subject: RE: free mail server preferences U know that windows 2003 server has mail built in right ?

RE: free mail server preferences

2005-12-28 Thread Rick Faircloth
I don't know anything about PHP except that I don't want to know anything about PHP from the looks of some of the code... :oP http://coolfusion.com/Commerce/index.cfm?category=7 Yeah, that's iMS-Lite...I want a full mail server to handle my own mail, perhaps run a list server, etc... Here's a

RE: free mail server preferences

2005-12-28 Thread Rick Faircloth
Anyone know for sure about having to restart the ArgoSoft free version manually each reboot? (I'd give it a try just to find out, but I'd have to shut down my current email server, etc...I'm too lazy) Rick -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent:

is this thing on?

2005-12-28 Thread Anthony Prato
I've posted a few questions in the past month, some were out there, but one was easy (i think) and I'm not sure if my mail is getting to the list. Can you see this? My question was, how do you tell the default jvm charset when using cffile action=write? Thanks, Anthony

Re: A Contractor or Two

2005-12-28 Thread Bryan Stevenson
I know ya asked Mattbut I've also been through the contracting ringer I'm trying to establish a loyal customer base, in baby steps. I'll sometimes do small projects for free, or for a very low flat-fee, to start. I'm hoping that once they are blown away by the results, I'll get

RE: free mail server preferences

2005-12-28 Thread Snake
Might I suggest a subscription to the Microsoft Action Pack. It only costs £200 per year, and for that you get several grands worth of software, including win2k3, sql server, Small business Server, and even Exchange server i think. russ -Original Message- From: Rick Faircloth

Re: is this thing on?

2005-12-28 Thread John Wilker
I've noticed the same thing, figured my questions weren't worthy :) or maybe just too hard to anyone to answer :) Obviously I saw your post. Don't know the answer to your question though. On 12/28/05, Anthony Prato [EMAIL PROTECTED] wrote: I've posted a few questions in the past month, some

RE: is this thing on?

2005-12-28 Thread Rick Faircloth
I got your message, but have no idea how to answer your questionsorry... Rick -Original Message- From: Anthony Prato [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 28, 2005 7:51 PM To: CF-Talk Subject: is this thing on? I've posted a few questions in the past month,

RE: free mail server preferences

2005-12-28 Thread Rick Faircloth
Thanks for the tip, Russ... Anyone know the conversion rate for pounds to dollars? :o) Rick -Original Message- From: Snake [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 28, 2005 7:56 PM To: CF-Talk Subject: RE: free mail server preferences Might I suggest a subscription to

Re: free mail server preferences

2005-12-28 Thread John Paul Ashenfelter
On 12/28/05, Rick Faircloth [EMAIL PROTECTED] wrote: Anyone know for sure about having to restart the ArgoSoft free version manually each reboot? Yes, the free version is NOT a service, so you have to start it on a reboot. That means you put it in your startup folder and login (and stay logged

Re: free mail server preferences

2005-12-28 Thread John Paul Ashenfelter
On 12/28/05, Snake [EMAIL PROTECTED] wrote: Might I suggest a subscription to the Microsoft Action Pack. It only costs £200 per year, and for that you get several grands worth of software, including win2k3, sql server, Small business Server, and even Exchange server i think. I would strongly

RE: free mail server preferences

2005-12-28 Thread Rick Faircloth
Wasn't seriously considering it for now, but thought I might have use of Server 2003 or Small Business Server for later... -Original Message- From: John Paul Ashenfelter [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 28, 2005 8:27 PM To: CF-Talk Subject: Re: free mail server

Re: free mail server preferences

2005-12-28 Thread John Paul Ashenfelter
On 12/28/05, Snake [EMAIL PROTECTED] wrote: U know that windows 2003 server has mail built in right ? And windows 2000 has SMTP relay built in I'm pretty surprised that you're not considering sending test email through the production mail server. Assuming you can get access to relay mail

RE: free mail server preferences

2005-12-28 Thread Dave Watts
I notice the free version doesn't run as a service...does that mean I have to manually enable the program every time the computer is rebooted? Yes. However, there's a utility in the Windows 2000 Resource Kit which will allow you to run an application as a service. Dave Watts, CTO, Fig Leaf

Re: A Contractor or Two

2005-12-28 Thread Matt Robertson
Hi Ali, I set a single rate in stone. If I am talking on the telephone to a client, or writing them an email that is an assessment of a series of site mods they are requesting (billed 2 hrs of that this morning) or setting up a server or ... *whatever*. My time is worht X and that is what I

RE: free mail server preferences

2005-12-28 Thread Rick Faircloth
The $49 is no problem...just seeing some extra features in the ArgoSoft Pro version that I'd like to have and wondering if other software which costs $137 or less would have all the features I might want to use at some point...list server, autoresponders, Mailbag Domains for domain relay (why

Re: A Contractor or Two

2005-12-28 Thread John Paul Ashenfelter
On 12/28/05, Ali Awan [EMAIL PROTECTED] wrote: Matt, I've been asking a similar question to no avail. I'm glad someone started this thread over here. As it seems from your post that you have quite some experience doing this on your own. I just wanted to ask some advice of you. Do you

Re: HoF archive search

2005-12-28 Thread Will Tomlinson
oh w/e bryan, you just want them to know that you gave me my nickname lol I still think dave The Disruptured fits you better. :) ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application

Re: How to test for null in a query object

2005-12-28 Thread James Holmes
I always test these things before I post. A QoQ with an IS NULL condition correctly returns rows with a null in the column in CF 6.1 On 12/28/05, Claude Schneegans [EMAIL PROTECTED] wrote: You could do a Query of Queries to select rows where the chosen column IS NULL. I don't think QofQ can

Re: A Contractor or Two

2005-12-28 Thread John C. Bland II
lol John pro bono yourself into the poor house. Excellent quote. :-) Someone, I think Matt or Bryan said it best. Be firm (aka confident) in your rate. I once was shy about my rate but I'm well worth it in many arenas so now I DO NOT budge my rate for anyone. What I will do is shave hours down

Re: How to test for null in a query object

2005-12-28 Thread Claude Schneegans
A QoQ with an IS NULL condition correctly returns rows with a null in the column in CF 6.1 Hmmm, since AFAIK CF doesn't know the difference between a NULL and an empty column in a query, I'm not sure if it correctly returns rows with a null in the column or if it uncorrectly returns rows with

Re: How to test for null in a query object

2005-12-28 Thread James Holmes
CF is mostly typeless and mostly doesn't have a null. This all changes in the Query Object, which keeps track of nulls and column types. Test it for yourself; set up a table with a few rows; give each row a PK and in a second column leave some cells null and for others insert some strings or

  1   2   >