Apache Worker MPM w/ JRun

2010-09-29 Thread Joe Gooch
I've been all around mod_jrun22 in the last couple days, and I know way more than I want to. However, I can't get it to work quite right. Environment: Debian Lenny 5.0.6 Apache 2.2.9, Worker MPM (ideally) JRun4 build 108673 CF 8.0.1 Enterprise in multiserver config I've compiled the connector

RE: Bandwidth Throttler

2005-01-05 Thread Joe Gooch
Netlimiter works well, and can limit bandwidth to specific applications instead of the entire machine. www.netlimiter.com Joe -Original Message- From: Robert Everland III [mailto:[EMAIL PROTECTED] Sent: Monday, January 03, 2005 10:55 AM To: CF-Talk Subject: Bandwidth Throttler I

Datasource Question

2005-01-04 Thread Joe Gooch
I have to interface one of my Coldfusion applications with a dBase IV database. Since CF doesn't have a dBase IV JDBC driver, I'm guessing the only way it's going to work is by using the Datadirect ODBC bridge (sequelink server) with the MS Jet dBase ODBC driver. Unfortunately, the data is not

RE: Turn this into 1 query?

2004-09-29 Thread Joe Gooch
SELECT DISTINCT b.id, b.qnum, b.firstname, b.lastname, b.ssn, c.phase, c.disbursed_date FROM faLoans a INNER JOIN abIdentity b ON a.IdentityID = b.ID INNER JOIN Import_Cap_Status c ON b.SSN=c.SSN AND c.phase=1 and c.Branch = 0001 and (c.Disbursed_date between @date2 [EMAIL PROTECTED]) LEFT JOIN

RE: CFStoredProc vs CFQuery

2004-09-29 Thread Joe Gooch
I think the best part of CFSTOREDPROC is the ability to return multiple recordsets.You could run a stored procedure that runs 4 queries and keep track of them separately. Joe _ From: Duane Boudreau [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 29, 2004 2:59 PM To: CF-Talk Subject:

RE: Currently running page requests

2004-09-15 Thread Joe Gooch
I concur. I've modified the code to show the exception, it seems endPoint.getRequestURI(),endPoint.getRemoteHost(), and endPoint.getServerName() all return nulls. I get a java.lang.NullPointerException. Ideas? Joe -Original Message- From: Douglas Knudsen [mailto:[EMAIL PROTECTED]

RE: JS checkboxes

2004-09-10 Thread Joe Gooch
I'm assuming f is your form name. Firefox uses document.f to reference the form, instead of just the form name.I believe this is one of many things IE does that doesn't conform to standards. If I were you I'd use this.form instead, since it'll always reference the right object when called from

RE: SQL calculating question

2004-09-09 Thread Joe Gooch
SELECT 10.0 / 20 * 12 = 6 SELECT CAST(10 as numeric(9,4))/20 * 12 = 6 A normal constant is treated as an integer, I believe, for which it is doing integer / integer = integer result.If you make one a numeric, it knows numeric / integer = numeric. Joe -Original Message- From: Eric

RE: reference in cfc

2004-09-08 Thread Joe Gooch
I believe simple values are always passed by value.(Boolean, strings, etc)Complex values are passed by reference.You'd have to use something like StructCopy or Duplicate to make a copy if that's what you wanted. http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/functa91.htm Joe

CFMX6.1+ Cookie Eccentricity

2004-09-01 Thread Joe Gooch
, and I'm back in a world of hurt. This worked before the updater. Is this a bug or a feature?Is anyone else running into something like this? Joe Gooch K12 Systems, Inc [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: Login a User Problem - code not in email body....couldn't post message with it...

2004-08-25 Thread Joe Gooch
On line 10, it would make more sense to do: cfif not session.allowin If you're going to use Boolean values, you might as well go all the way. Line 11 will never evaluate true, since you're using listlast with / as a delimiter, and testing against a string with the same delimiter. cfif