Resolved: Re:CFMX and Fedora

2003-11-30 Thread Brandon Harper
 
 Of course, this tells me nothing. 
 
 I tried recompiling the connector several times, once when I initially encountered the problem, once early this morning, and also about an hour ago. After the third recompile, ColdFusion started working.
 
 The only thing I have noticed that seems odd about the system right now is that sendmail takes almost 10 minutes to start since installing ColdFusion.
 
 M
 

Something to check for the Sendmail problem... make sure you can 
actually do nslookups from the DNS servers which you have in 
/etc/resolv.conf

I'm used to FreeBSD now so I'm not sure if that is the correct path. If 
you can't find that file, use the command 'locate resolv.conf' as root 
to find it.

- Brandon

http://booms.net

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




5d array ( counting number of elements )

2003-11-30 Thread Dan Farmer
Hi Everyone, I'm new to the list.

First question.. I have a five dimensional array... I want to get the number 
of items located in the last array element. How do I do this..?

in the example below you see there are three elements at the last position. 
I've tried ArrayLen(aExample[1][2][1][1]) but that throws errors after the 
third array element.

aExample[1][2][1][1][1] = blah
aExample[1][2][1][1][2] = blah2
aExample[1][2][1][1][3] = blah3

_ __
Daniel Farmer
Web Developer Consultant
P: 613.284.1684


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: 5d array ( counting number of elements )

2003-11-30 Thread Michael T. Tangorre
Quick question what are you using a 5 dimensional array for?

_

From: Dan Farmer [mailto:[EMAIL PROTECTED] 
Sent: Sunday, November 30, 2003 12:55 PM
To: CF-Talk
Subject: 5d array ( counting number of elements )

Hi Everyone, I'm new to the list.

First question.. I have a five dimensional array... I want to get the number

of items located in the last array element. How do I do this..?

in the example below you see there are three elements at the last position. 
I've tried ArrayLen(aExample[1][2][1][1]) but that throws errors after the

third array element.

aExample[1][2][1][1][1] = blah
aExample[1][2][1][1][2] = blah2
aExample[1][2][1][1][3] = blah3

_ __
Daniel Farmer
Web Developer Consultant
P: 613.284.1684

_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: 5d array ( counting number of elements )

2003-11-30 Thread Dan Farmer
Your question made me realize that perhaps I don't even need to use the 
array...no wonder my app was so slow...

oh well thanks :)

Hi Everyone, I'm new to the list.

First question.. I have a five dimensional array... I want to get the 
number

of items located in the last array element. How do I do this..?

in the example below you see there are three elements at the last position.
I've tried ArrayLen(aExample[1][2][1][1]) but that throws errors after 
the

third array element.

aExample[1][2][1][1][1] = blah
aExample[1][2][1][1][2] = blah2
aExample[1][2][1][1][3] = blah3

_ __
Daniel Farmer
Web Developer Consultant
P: 613.284.1684


_



 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: 5d array ( counting number of elements )

2003-11-30 Thread Jim Davis
Welcome to the list!More information on your problem would be useful.

 
How did you nest your arrays to get five dimensional arrays (CF only
supports 3 dimensional arrays directly)?What version of CF are we
talking about?

 
What error are you getting?Are you sure that the last element is, in
fact, an array (have you run an IsArray() on it to be sure)?

 
I would do that first (test for the existence of the array) first - also
you may try CFDUMPing the array to examine how it's being
constructed/viewed by CF.

 
I'm curious tho' - why use a 5 dimensional array?I've just never heard
of a problem that needed one.

 
(You'll find this helpful. but we're also downright inquisitive.)

 
Jim Davis

 
-Original Message-
From: Dan Farmer [mailto:[EMAIL PROTECTED] 
Sent: Sunday, November 30, 2003 12:55 PM
To: CF-Talk
Subject: 5d array ( counting number of elements )

 
Hi Everyone, I'm new to the list.

First question.. I have a five dimensional array... I want to get the
number 
of items located in the last array element. How do I do this..?

in the example below you see there are three elements at the last
position. 
I've tried ArrayLen(aExample[1][2][1][1]) but that throws errors after
the 
third array element.

aExample[1][2][1][1][1] = blah
aExample[1][2][1][1][2] = blah2
aExample[1][2][1][1][3] = blah3

_ __
Daniel Farmer
Web Developer Consultant
P: 613.284.1684

_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: 5d array ( counting number of elements )

2003-11-30 Thread Dan Farmer
I'm not really getting any errors... just I find my application really slow. 
( now I realize that perhaps I could forego using the array at all ). So now 
( I'm going to redesign this part of the app )... but what if I did want to 
count the number of elements?

BTW I did a CFDUMP on the array and was suprised to see that CFMX created a 
3d array with two structures!!!

Here's how I did it..



Welcome to the list!More information on your problem would be useful.

How did you nest your arrays to get five dimensional arrays (CF only
supports 3 dimensional arrays directly)?What version of CF are we
talking about?

What error are you getting?Are you sure that the last element is, in
fact, an array (have you run an IsArray() on it to be sure)?

I would do that first (test for the existence of the array) first - also
you may try CFDUMPing the array to examine how it's being
constructed/viewed by CF.

I'm curious tho' - why use a 5 dimensional array?I've just never heard
of a problem that needed one.

(You'll find this helpful. but we're also downright inquisitive.)

Jim Davis

-Original Message-
From: Dan Farmer [mailto:[EMAIL PROTECTED]
Sent: Sunday, November 30, 2003 12:55 PM
To: CF-Talk
Subject: 5d array ( counting number of elements )

Hi Everyone, I'm new to the list.

First question.. I have a five dimensional array... I want to get the
number
of items located in the last array element. How do I do this..?

in the example below you see there are three elements at the last
position.
I've tried ArrayLen(aExample[1][2][1][1]) but that throws errors after
the
third array element.

aExample[1][2][1][1][1] = blah
aExample[1][2][1][1][2] = blah2
aExample[1][2][1][1][3] = blah3

_ __
Daniel Farmer
Web Developer Consultant
P: 613.284.1684



_



 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: 5d array ( counting number of elements )

2003-11-30 Thread Tom Kitta
BTW I did a CFDUMP on the array and was suprised to see that CFMX created a 
3d array with two structures!!!

Yes, this is what you get when trying to create a 5D array on CFMX. It will create for you structures automatically.

TK

Welcome to the list!More information on your problem would be useful.

How did you nest your arrays to get five dimensional arrays (CF only
supports 3 dimensional arrays directly)?What version of CF are we
talking about?

What error are you getting?Are you sure that the last element is, in
fact, an array (have you run an IsArray() on it to be sure)?

I would do that first (test for the existence of the array) first - also
you may try CFDUMPing the array to examine how it's being
constructed/viewed by CF.

I'm curious tho' - why use a 5 dimensional array?I've just never heard
of a problem that needed one.

(You'll find this helpful. but we're also downright inquisitive.)

Jim Davis

-Original Message-
From: Dan Farmer [mailto:[EMAIL PROTECTED]
Sent: Sunday, November 30, 2003 12:55 PM
To: CF-Talk
Subject: 5d array ( counting number of elements )

Hi Everyone, I'm new to the list.

First question.. I have a five dimensional array... I want to get the
number
of items located in the last array element. How do I do this..?

in the example below you see there are three elements at the last
position.
I've tried ArrayLen(aExample[1][2][1][1]) but that throws errors after
the
third array element.

aExample[1][2][1][1][1] = blah
aExample[1][2][1][1][2] = blah2
aExample[1][2][1][1][3] = blah3

_ __
Daniel Farmer
Web Developer Consultant
P: 613.284.1684



_



 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re:Access 97 with CFMX 6.0 unacceptably slow

2003-11-30 Thread Don
Thanks, everyone, for your input.Here's the deal.Running on CF5.0, speed is acceptable.I haven't used Access for a few years now, vaguely remember that one needs to set Buffer to some parameter.The guy who's running the application on his own server didn't complain about the speed, so, it doesn't seem critical.

* MDAC does not seem to be directly related to the performance issue;
* Unicode ODBC driver is not available for CFMX 6.0 Prof. for Windows;
* I applied the three updaters for the CFMX 6.0 when they came out.

Don Li
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Register Trial version of CFMX...

2003-11-30 Thread Dave Watts
 Well when I installed from the 150MB 6.1 installer, it 
 installed JRun as a seperate entity which I hadn't seen 
 before. It also required me to set up javaclasspaths etc. 
 and deployed as a java application on the Jrun server etc. 

It sounds like you chose the second installation option. There are three
ways you can install CFMX. The first option is to install it as a
standalone product: CFMX Enterprise or Professional, depending on the
license number you provided, if any. The second option is to install JRun 4
with one additional instance beyond the default, and to immediately install
CFMX on top of that (the install does all of this for you). The third option
is to generate an EAR or WAR file for deployment on an existing J2EE server.

 Are you saying that after the trial version, if I entered a 
 CFMX Pro serial number that things would have reverted to the 
 standard CFMX Pro installation that I was accustomed to? With 
 CFMX running as CFMX server instead of a seperate JRUN CFMX 
 Server instance etc. ?

No, I don't think that'll happen. However, if you select the first
installation option, you should be able to switch between CFMX Enterprise
and Professional by changing the serial number.

 I just can't see that happening. It was my first experience 
 with running CFMX as a Java app on Jrun and the entire 
 configuration and setup process was very different. 

Yes, it is quite different. However, you can always do the first
installation option, which is nearly identical to CFMX 6.0 in how it works.
I recommend looking into running CFMX on JRun, though, if you've purchased a
CFMX Enterprise license, because it's free for two-processor servers and it
has all kinds of goodies in it - running multiple CFMX/JRun instances, using
JRun clustering, using the J2EE API, and so on.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




fix cflogin cache

2003-11-30 Thread Brian LeRoux
The cflogin cache thing is really screwing up my app. Is there a
workaround?
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: fix cflogin cache

2003-11-30 Thread Raymond Camden
What cflogin cache thing? You mean it not ending when you close the browser?
If so, try changing to the session scope storage if you are running 6.1.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: fix cflogin cache

2003-11-30 Thread Brian LeRoux
Yes exactly the problem... I do have that set too. Wonder if the host's
administrator settings take precedence?

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED] 
Sent: November 30, 2003 8:32 PM
To: CF-Talk
Subject: RE: fix cflogin cache

What cflogin cache thing? You mean it not ending when you close the
browser?
If so, try changing to the session scope storage if you are running 6.1.

_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]