RE: cfapplication Error or what?

2003-07-21 Thread Mosh Teitelbaum
John: If you're using session or client variables to track login status, then you're problem probably has to do with session or client timeouts. The CF Administrator allows you to set maximum timeouts and the CFAPPLICATION tag allows you to configure those settings (not to exceed the maximum

RE: ergonomics

2003-07-21 Thread Mosh Teitelbaum
I've never tried one of these but, with the arthritis in my knees (damn sports injuries), I'm not allowed to sit with my legs anywhere under my butt. My legs have to be extended out in front of me or I risk further screwing up my knees. -- Mosh Teitelbaum evoch, LLC Tel: (301) 942-5378 Fax:

Re: read-only SQL transactions

2003-07-21 Thread Matt Liotta
It just seems like it wouldn't be in anyone's interest to formally specify the connection behavior of cfquery since that would mean it couldn't change in the future. Basically what I am saying is that if you are willing to give up control over the connections then you shouldn't expect the

RE: Secure File Manager

2003-07-21 Thread Matt Robertson
I think this issue came up in last week's cfcontent discussion. FYI Here's my code: cfset variables.FileToPush=attributes.FilePathattributes.FileName cfif FileExists(variables.FileToPush) cfheader name=Content-Disposition value=attachment;

Re: read-only SQL transactions

2003-07-21 Thread Jochem van Dieten
Matt Liotta wrote: It just seems like it wouldn't be in anyone's interest to formally specify the connection behavior of cfquery since that would mean it couldn't change in the future. Basically what I am saying is that if you are willing to give up control over the connections then you

RE: read-only SQL transactions

2003-07-21 Thread Barney Boisvert
Specifying that the behaviour is undefined is a perfectly valid end, and I'd then have to make the choice about managing the connections directly or some other solution. But if I don't have to, that'd be great. I'm a lazy bitch, after all ;) Being able to rely on CF's behaviour (or even knowing

RE: Problem with CFFILE

2003-07-21 Thread Nathan Smith
Check the user that the coldFusion Service is running under - default is system. If it is something else, that user should have rights to the diretories in question. -Original Message- From: Christopher J. Sills [mailto:[EMAIL PROTECTED] Sent: Monday, July 21, 2003 3:26 PM To: CF-Talk

Re: Fusebox Redux

2003-07-21 Thread Calvin Ward
Just as an interesting side... I've done this before: cfinclude businesslogic cfsavecontentunique content cfinclude header_footer.cfm - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, July 18, 2003 2:46 PM Subject: Fusebox Redux Well, with FB,

Re: Cons to Fusebox

2003-07-21 Thread Calvin Ward
Brain, I appreciate that, however, I've already had experience with Fusebox, and decided it wasn't worth the additional overhead of complexity 'for me' ;) - Calvin - Original Message - From: Brian Kotek [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, July 18, 2003 2:54 PM

RE: ergonomics

2003-07-21 Thread Ben Doom
Those are pretty comfy. A friend had one at his PC in HS. Unfortunately, after about a year, because of the wierd stresses on the kneepad and seat, the apholstery started coming off and the pad started disintegrating. Of course, that may not have been a very high quality one. When I was at

Re: Cons to Fusebox

2003-07-21 Thread Calvin Ward
Matt, I'm with you on that, I even incorporated a good portion of Sean's guidelines into our guidelines :) They be good stuff! - Calvin - Original Message - From: Matt Robertson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, July 18, 2003 3:00 PM Subject: RE: Cons to

Invoice, letter and report printing

2003-07-21 Thread Andrew Tyrone
Hi everyone, I've got a project that requires mass-printing of letters, invoices, reports and more. What does everyone use to handle this? I found a few open-source programs that look promising, but I am not to the stage yet where I can start working on this functionality. Here are the links

Month/Year Queries

2003-07-21 Thread Jim McAtee
I've got a table with 'year' and 'month' columns used to track quantities (of widgets sold, doughnuts eaten - doesn't really matter) for certain objects in a given month. The reason that only monthly totals are kept instead of creating a record for every transaction is that the table would

Re: ergonomics

2003-07-21 Thread Brrrian
I've spent many years in one now... chiropractor had me get it when years of slouching killed my back. Now I prefer it... though it takes time to get used to. The forces on your lower bones... fibula I think... are odd and take some getting used to if you want to sit for hours at a time...

defaults in Access

2003-07-21 Thread Barney Boisvert
Anyone know how to add a default constraint to a field in MS Access using only SQL? I've tried a bunch of variations on the SQL Server syntax and none of them work. thanks, barneyb --- Barney Boisvert, Senior Development Engineer AudienceCentral [EMAIL PROTECTED] voice : 360.756.8080 x12 fax

Re: Problem with CFFILE

2003-07-21 Thread Christopher J. Sills
Nathan, The service was set up for the system, I changed it to the Administrator on the file server and it seemed to work. Do you know if there are any security issues with doing this. Thanks. - Original Message - From: Nathan Smith [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED]

RE: Problem with CFFILE

2003-07-21 Thread Barney Boisvert
Running as administrator is horribly insecure. If anyone manages to run illicit code on your CF server, it will have complete access to everything, rather than being sandboxed to only what a low-level user account has access to. Using the System account is better, but a separate account for only

CFMX Exam

2003-07-21 Thread Michael T. Tangorre
Does the CFMX exam stay the same for the life of the exam or is it too updated when things change or get fixed? ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: CFMX Exam

2003-07-21 Thread John Wilker
My understanding is that it doesn't. I haven't heard anything about it changing over time. -Original Message- From: Michael T. Tangorre [mailto:[EMAIL PROTECTED] Sent: Monday, July 21, 2003 3:48 PM To: CF-Talk Subject: CFMX Exam Does the CFMX exam stay the same for the life of the exam

re: ergonomics

2003-07-21 Thread Tony Weeg
what about desks...my doc said to look into one that had the keyboard pointing down, and to use a trackball type mouse, that was bolted to the keyboard tray... this is all so much to change...WOW! at home i have my hands on the top of the desk, its an ikea efektiv desk, but at work i have one of

RE: ergonomics

2003-07-21 Thread Barney Boisvert
i used to have a microsoft ergonomic keyboard that had feet to give it a negative tilt. That was great, but the split key areas drive me friggin mad when I was one-handing the keyboard and using the mouse with the other, so I got rid of it. I like the negative tilt, and although it makes hitting

RE: Month/Year Queries

2003-07-21 Thread Matthew Walker
You could write AND ( vyear #begyear# OR ( Vyear = #begyear# AND vmonth = begmonth ) ) AND ( vyear #endyear# OR ( Vyear = #endyear# AND vmonth = endmonth ) ) but it's bit hard on

ergonomics

2003-07-21 Thread Kay Smoljak
Ah, the slouch - my favorite no-no. Does anybody have experiences to share about those kneeling chairs that stick your legs at 45-degree angles, supposedly the optimal angles for your legs/back? I'm sitting on one right now - it's good, but you have to be disciplined - no slouching, get up

RE: ergonomics

2003-07-21 Thread Tony Weeg
well, ive seen one of those @ staples, some years back...but dont recall seeing one in awhilei wonder? tony -Original Message- From: Kay Smoljak [mailto:[EMAIL PROTECTED] Sent: Monday, July 21, 2003 7:29 PM To: CF-Talk Subject: ergonomics Ah, the slouch - my favorite no-no. Does

Re: Problem with CFFILE

2003-07-21 Thread Christopher J. Sills
Barney, I created a new user on my file server named 'ColdFusion'. The only group that will allow me to restart the ColdFusion Application Server is the 'Domain Admin' group. If I use any other group I get an error. How unsecure is the 'Domain Admin' group regarding your previous comments.

A License Exception has been thrown.

2003-07-21 Thread Buddy
Hi Guys, I installed MX on a box that I am using to test applications for migrations about a month ago. I have a licensed upgrade version of MX, and a legit version of 5 that I am upgrading from. Now today I am getting the error you see below when I try to log in to the administrator. What could I

RE: Problem with CFFILE

2003-07-21 Thread Barney Boisvert
I don't know, I'm a Linux guy, but it sounds powerful. Certainly better than Administrator though. barneyb --- Barney Boisvert, Senior Development Engineer AudienceCentral [EMAIL PROTECTED] voice : 360.756.8080 x12 fax : 360.647.5351 www.audiencecentral.com -Original Message-

Re: A License Exception has been thrown.

2003-07-21 Thread Bryan Stevenson
That's the error message you get when you try and connect to the developer edition from an IP other than the one you first connected to it with. So did you ever have the developer edition installed? If so it may be a leftover (though it shouldn't happen) from before you upgraded to a licenced

RE: A License Exception has been thrown.

2003-07-21 Thread Stacy Young
You should be able to re-enter your serial in the version screen (link top right) in the admin. Stace -Original Message- From: Buddy [mailto:[EMAIL PROTECTED] Sent: Monday, July 21, 2003 7:43 PM To: CF-Talk Subject: A License Exception has been thrown. Hi Guys, I installed MX on a box

RE: A License Exception has been thrown.

2003-07-21 Thread Jim Davis
Aren't the two versions the same however? I mean if you install the full version with no serial number won't it does this as well? And if you add a serial number to the evaluation doesn't it become full? Jim Davis -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED]

Re: Posting data via SSL - help please

2003-07-21 Thread Bud
Hi, I've been banging my head for several days on this problem and need some help/advice. Using CFMX, Updater 3 I need to upload a file to one of our vendors for payment processing. They require three form fields in enctype=multipart/form-data format; login, pass, filename. The URL I'm posting

Re: A License Exception has been thrown.

2003-07-21 Thread Bryan Stevenson
Well ya...but we don't know what Buddy did ;-) 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

RE: Invoice, letter and report printing

2003-07-21 Thread Ciliotta, Mario
Andy, If you find out any info on this tools can you let the list know. I also just today have been asked to implement a system in CFMX that will require printing of reports and graphs in PDF format (must have correct page breaks for upper management to look at) and I was looking at these as

Re: OT: anyone take a MySQL training class from mysql.com?

2003-07-21 Thread S. Allen
dan martin wrote: Thanks for the link Steve. I checked the mysql demos out, they look pretty good. I'm going to order it. I appreciate your help! You're quite welcome - I'm sure you'll find it's $ well spent. -- Best Regards, Steve

RE: Problem with CFFILE

2003-07-21 Thread Dave Watts
I created a new user on my file server named 'ColdFusion'. The only group that will allow me to restart the ColdFusion Application Server is the 'Domain Admin' group. If I use any other group I get an error. How unsecure is the 'Domain Admin' group regarding your previous comments.

RE: Problem with CFFILE

2003-07-21 Thread Dave Watts
Running as administrator is horribly insecure. If anyone manages to run illicit code on your CF server, it will have complete access to everything, rather than being sandboxed to only what a low-level user account has access to. Using the System account is better, but a separate account

<    1   2