Re: Server names

2005-06-29 Thread Jochem van Dieten
Kay Smoljak wrote:
 On 6/29/05, S. Isaac Dealey [EMAIL PROTECTED] wrote:
 
 You named your server Inferno? I name mine after philosophers... 
 
 Transformers here :)
 
 OptimusPrime for internal... Megatron for the Windows hosting server...

Private my computers are named after Companions.

In the office workstations have numbers and servers are named 
after Loony Tunes: Tweety, Sylvester, Granny, Hector, Spike, 
Elmer and the new Windows system will be named Bugs :)

Jochem

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210861
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Server names

2005-06-29 Thread dave
I been trying to hold my tongue on this one but this is just to damn funny :)
 new Windows system will be named Bugs

~Dave the disruptor~
A criminal is a person with predatory instincts who has not sufficient capital 
to form a corporation. 


From: Jochem van Dieten [EMAIL PROTECTED]
Sent: Wednesday, June 29, 2005 2:39 AM
To: CF-Talk cf-talk@houseoffusion.com
Subject: Re: Server names 

Kay Smoljak wrote:
 On 6/29/05, S. Isaac Dealey  wrote:
 
 You named your server Inferno? I name mine after philosophers... 
 
 Transformers here :)
 
 OptimusPrime for internal... Megatron for the Windows hosting server...

Private my computers are named after Companions.

In the office workstations have numbers and servers are named 
after Loony Tunes: Tweety, Sylvester, Granny, Hector, Spike, 
Elmer and the new Windows system will be named Bugs :)

Jochem



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210862
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: cffile: read in excel file

2005-06-29 Thread daniel kessler
What's a CSV file?

If you read an CSV file.. you can see directly the output
If you don't , you need to use one of the CFX_ tags to read excel 
Using Java or COM Objects.

David Manriquez 
[EMAIL PROTECTED] 
(+56-2) 43 00 155

   

-Mensaje original-
De: Daniel Kessler [mailto:[EMAIL PROTECTED] 
Enviado el: Martes, 28 de Junio de 2005 14:55
Para: CF-Talk
Asunto: cffile: read in excel file

I'm trying to read in an excel file and it does so, but the output is 
crap.  Well the data is in there, but there's alot of extraneous data 
which shows up as unrecognizable characters.  I thought that excel 
was tab delimited with char returns at the end of each line.  Maybe 
I'm wrong for assuming this.
Is there a way to read this in where it just shows up in that way? 
Should I export it differently first?  Here's the code that I'm using.

cftry
  cffile
   action=read
   file=#form.db_file#
   variable=file_contents
   cfcatch type=Any
#cfcatch.message#
   /cfcatch
/cftry

file_contents:br#file_contents#

thanks!

-- 
Daniel Kessler

Department of Public and Community Health
University of Maryland
Suite 2387 Valley Drive
College Park, MD  20742-2611
301-405-2545 Phone
www.phi.umd.edu

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210863
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: cffile: read in excel file

2005-06-29 Thread daniel kessler
OK CSV is some type of file format.  I can export this file however I need to 
get the job done.  I exported two ways:  1 - as a tab delimeted text file and 2 
- as a CSV.  They appear to be similar.  Neither one of them seem to display 
line breaks on the web but they do break on rows when I view the files in a 
text editing program.  Seem like I should be able to listtoarray() these if I 
could figure out the end-of-line and format the data first.

While it would be nice to not have to export and make this a more general use 
tool, the important thing at the moment is to get the data in the db without 
typing it all again.

All thoughts on this are welcome.

If you read an CSV file.. you can see directly the output
If you don't , you need to use one of the CFX_ tags to read excel 
Using Java or COM Objects.

David Manriquez 
[EMAIL PROTECTED] 
(+56-2) 43 00 155

   

-Mensaje original-
De: Daniel Kessler [mailto:[EMAIL PROTECTED] 
Enviado el: Martes, 28 de Junio de 2005 14:55
Para: CF-Talk
Asunto: cffile: read in excel file

I'm trying to read in an excel file and it does so, but the output is 
crap.  Well the data is in there, but there's alot of extraneous data 
which shows up as unrecognizable characters.  I thought that excel 
was tab delimited with char returns at the end of each line.  Maybe 
I'm wrong for assuming this.
Is there a way to read this in where it just shows up in that way? 
Should I export it differently first?  Here's the code that I'm using.

cftry
  cffile
   action=read
   file=#form.db_file#
   variable=file_contents
   cfcatch type=Any
#cfcatch.message#
   /cfcatch
/cftry

file_contents:br#file_contents#

thanks!

-- 
Daniel Kessler

Department of Public and Community Health
University of Maryland
Suite 2387 Valley Drive
College Park, MD  20742-2611
301-405-2545 Phone
www.phi.umd.edu

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210864
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFUnited Presentations

2005-06-29 Thread Deanna Schneider
So, my question is - what's with all the .net freebies for CF-United?
I mean, I'm not opposed to learning something new, but the goodie bag
would make me think this is a Microsoft conference

On 6/28/05, Marlon Moyer [EMAIL PROTECTED] wrote:
 Tis a shame.  I've been watching some Microsoft sponsered .Net
 presentations and I was commenting to my coworkers how inconvenient
 the system was since you loaded up Live Meeting to view the video and
 then you needed to call in to get the audio or you could open an audio
 stream with Real Player or Media Player.  Of course, the audio stream
 was a few seconds off of the video.  Breeze really shines when it
 comes to live meetings and I thought CFUnited would be a great way to
 show off the tech.
 
 
 
 On 6/28/05, Sean Corfield [EMAIL PROTECTED] wrote:
  On 6/28/05, Marlon Moyer [EMAIL PROTECTED] wrote:
   I saw that Joe Rinehart is breezing his presentation on Model-Glue
   from CFUnited, are there any other presenters doing the same?
 
  That's a special case because it was arranged with the AZCFUG prior to
  CFUNITED. I don't expect other sessions will be Breezed.
  --
  Sean A Corfield -- http://corfield.org/
  Team Fusebox -- http://fusebox.org/
  Got Gmail? -- I have 50, yes 50, invites to give away!
 
  If you're not annoying somebody, you're not really alive.
  -- Margaret Atwood
 
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210865
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Shopping carts hosting

2005-06-29 Thread Cutter (CF-Talk)
CFWebstore - low cost, easily configured, can be hosted by most any cf 
host running mx 6.1 and up (and even bd). Easy to update through the 
back-end editor.

Dirk Sieber wrote:

My apologies  in advance - I know this has been answered before, but of 
course, I didn't need the information then...

Anyway, I'm looking for two things:

1) A shopping cart written in CF - This would be for a fairly low-traffic 
site, at least at this point.  I know I could write one, but at this point, I 
don't think it's worth re-inventing the wheel - I'm sure there's something out 
there that'd work.  Desired features:

-easy to update by people who aren't terribly computer knowledgeable

-simple to feature items, put items or classes of them on sale, etc.

-easy to integrate into an existing site.

-on-line credit card payment acceptance would be a big plus, with validation 
against some on-line processor.

-Free or low cost would be a plus.

2) A good place to host #1. :-)

Any advice, pointers, etc would be appreciated!  

Thanks,

Dirk

 





~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210866
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Macromedia Using CFPoP?

2005-06-29 Thread Sean Corfield
On 6/21/05, Paul Hastings [EMAIL PROTECTED] wrote:
 we've been exercising this thing all day  it hasn't blown up in our
 faces yet. so it's probably a keeper for us depending on the client.

The primary bounce back failure was due to a mail alias configuration
error and has been fixed (June 24th). Please let me know if you see
any more failures with the wish submission process.
-- 
Sean A Corfield -- http://corfield.org/
Team Fusebox -- http://fusebox.org/
Got Gmail? -- I have 50, yes 50, invites to give away!

If you're not annoying somebody, you're not really alive.
-- Margaret Atwood

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210867
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CF7 - 16 character limit on SQL passwords

2005-06-29 Thread Chase Seibert
lastMessage.Bump()  #newContent#
 
Ok, no love on this question. If this is a look in the archives, you idiot 
question, please let me know. I DID google the crap out of this to no avail. So 
here we are in round two...
 
1. I assume this is part of the JDBC implementation, correct? Anyone know if I 
can get around this by editing some XML files directly? Where would I look for 
said files?
2. Would ODBC get around this limitation? What kind of benefits would I be 
negating if I use ODBC rather than JDBC?
3. Is there som legitimate reason for this 16 character limit?

 

 -Chase

Chase Seibert |  Network and Systems Engineer |  Bullhorn Inc.  |  617.464.2440 
x119  |  www.bullhorn.com


 
-Original Message-
From: [EMAIL PROTECTED] 
To: CF-Talk ;
Sent: Jun 28, 2005 02:26:23 PM
Subject: CF7 - 16 character limit on SQL passwords
Hey guys, 

Our main site runs CF5.5, but we will be upgrading to CF7 at some point this 
summer. I have been writing some integration code with CF7 on my dev machine 
for about a month, and had everything working great. Now I'm trying to push 
that code to the production system. I love the fact that you can create a WAR 
file and just copy it down. The only things I needed to change were the 
passwords on the datasources... 

Ouch. Looks like CF7 has a 16 character limit on SQL Server 2000 passwords. Not 
sure if this effects all datasources or not. In any case, while our development 
SQL Server is bellow that threshhold, our production server password is 18 
characters. What are my options here. Does anyone have a work-around, either in 
CF or in SQL? 

Before you say just change the password. That is not an option. We are 
talking about 30 different SQL Servers, and the password is probablly hardcoded 
in a bunch of places. Not our actual site code, but doubtless many little 
utilities we have written over the years. 

Ideas? 


-Chase 

Chase Seibert | Network and Systems Engineer | Bullhorn Inc. | 617.464.2440 
x119 | www.bullhorn.com 




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210868
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CF7 - 16 character limit on SQL passwords

2005-06-29 Thread Robertson-Ravo, Neil (RX)
Isn't the 16 char limit for Oracle databases and not SQL Server?   I am sure
the JDBC driver limit would match the Database limit.  If it is the
DataDirect driver which CF uses consider using the Microsoft JDBC driver - I
would doubt it has this limit.  If it is CF itself which had the error then
it's a bug which would need to be logged.

2. not sure, but you would no doubt get performance problems.

3. Not in SQL Server no, and if it does restrict, it's a bug.



-Original Message-
From: Chase Seibert [mailto:[EMAIL PROTECTED] 
Sent: 29 June 2005 14:00
To: CF-Talk
Subject: RE: CF7 - 16 character limit on SQL passwords

lastMessage.Bump()  #newContent#
 
Ok, no love on this question. If this is a look in the archives, you idiot
question, please let me know. I DID google the crap out of this to no avail.
So here we are in round two...
 
1. I assume this is part of the JDBC implementation, correct? Anyone know if
I can get around this by editing some XML files directly? Where would I look
for said files?
2. Would ODBC get around this limitation? What kind of benefits would I be
negating if I use ODBC rather than JDBC?
3. Is there som legitimate reason for this 16 character limit?

 

 -Chase

Chase Seibert |  Network and Systems Engineer |  Bullhorn Inc.  |
617.464.2440 x119  |  www.bullhorn.com


 
-Original Message-
From: [EMAIL PROTECTED] 
To: CF-Talk ;
Sent: Jun 28, 2005 02:26:23 PM
Subject: CF7 - 16 character limit on SQL passwords
Hey guys, 

Our main site runs CF5.5, but we will be upgrading to CF7 at some point this
summer. I have been writing some integration code with CF7 on my dev machine
for about a month, and had everything working great. Now I'm trying to push
that code to the production system. I love the fact that you can create a
WAR file and just copy it down. The only things I needed to change were the
passwords on the datasources... 

Ouch. Looks like CF7 has a 16 character limit on SQL Server 2000 passwords.
Not sure if this effects all datasources or not. In any case, while our
development SQL Server is bellow that threshhold, our production server
password is 18 characters. What are my options here. Does anyone have a
work-around, either in CF or in SQL? 

Before you say just change the password. That is not an option. We are
talking about 30 different SQL Servers, and the password is probablly
hardcoded in a bunch of places. Not our actual site code, but doubtless many
little utilities we have written over the years. 

Ideas? 


-Chase 

Chase Seibert | Network and Systems Engineer | Bullhorn Inc. | 617.464.2440
x119 | www.bullhorn.com 






~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210869
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Fusebox Methadology Question

2005-06-29 Thread Robert Nichols
Okay, I have a question, a how would you do it? kind of question.  Keep in 
mind that I am designing for and using Fusebox 4.

I have a table called tblSection that contains a record for each section on a 
web page I want to display.  For example, if I wanted to find out what was on a 
certain webpage, call it A, I would do a query on that web page A's PageID and 
receive back a number of SectionID's.

Now, I want to have my application build these sections placing the html 
results in their own content variable (easy to do in CF4).

I know that I could build all the sections and then only use those content 
variables that the query of tblSection tells the application to include, but I 
want to avoid the overhead of building all those superfluous sections.

Here's one way:

Do the query and check for each section in result, set some Boolean variable 
for that section to True/False based on show/do not show.
In the fusebox, check value of Boolean with if/if tag.  Inside the if tag 
execute the fuse to build the content variable.

But that seems awkward and unwieldy.  But it is the only way I can think of.  
Please tell you can think of something better.

Bobby Nichols

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210870
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Server names

2005-06-29 Thread S . Isaac Dealey
 I been trying to hold my tongue on this one but this is
 just to damn funny :)
  new Windows system will be named Bugs

Well it was either that or Daffy apparently. :)


s. isaac dealey 954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210871
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Fusebox Methadology Question

2005-06-29 Thread S . Isaac Dealey
Given your description, I'd probably handle it this way:

prefuseaction
include template=dsp_sections.cfm
/prefuseaction

Fetch the query and generate your request variables within
dsp_sections.cfm using the CFSAVECONTENT tag.


s. isaac dealey 954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210872
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


CFGrid issue.

2005-06-29 Thread Jeff Waris
Has anyone seen this in CFMX 6.1???

coldfusion.util.RuntimeWrapper Exception 
Context validation error for tag CFGRID


This is the grid call.

cfgrid name=test height=300 width=550 query=getanimals
selectmode=browse autowidth=true /cfgrid

No matter how simple I make the grid (or complex for that matter), the above
error still occurs and its driving me nuts.. Is there something I'm missing?

Thanks.
Jeff


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210873
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFUnited Presentations

2005-06-29 Thread S . Isaac Dealey
It's just 'cause they paid a bunch to sponsor the event... Their way
of trying to insinuate themselves into the competition's media in an
attempt to detract from our developer community. You could say it's
just another way for them to advertise -- except that in order for me
to believe that, I'd have to believe they actually need the extra
advertising, and I don't.

 So, my question is - what's with all the .net freebies for
 CF-United?
 I mean, I'm not opposed to learning something new, but the
 goodie bag
 would make me think this is a Microsoft conference

 On 6/28/05, Marlon Moyer [EMAIL PROTECTED] wrote:
 Tis a shame.  I've been watching some Microsoft sponsered
 .Net
 presentations and I was commenting to my coworkers how
 inconvenient
 the system was since you loaded up Live Meeting to view
 the video and
 then you needed to call in to get the audio or you could
 open an audio
 stream with Real Player or Media Player.  Of course, the
 audio stream
 was a few seconds off of the video.  Breeze really shines
 when it
 comes to live meetings and I thought CFUnited would be a
 great way to
 show off the tech.


 On 6/28/05, Sean Corfield [EMAIL PROTECTED] wrote:
  On 6/28/05, Marlon Moyer [EMAIL PROTECTED]
  wrote:
   I saw that Joe Rinehart is breezing his
   presentation on Model-Glue
   from CFUnited, are there any other presenters doing
   the same?
 
  That's a special case because it was arranged with the
  AZCFUG prior to
  CFUNITED. I don't expect other sessions will be
  Breezed.
  --
  Sean A Corfield -- http://corfield.org/
  Team Fusebox -- http://fusebox.org/
  Got Gmail? -- I have 50, yes 50, invites to give away!
 
  If you're not annoying somebody, you're not really
  alive.
  -- Margaret Atwood


s. isaac dealey 954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210874
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFUnited Presentations

2005-06-29 Thread Charlie Griefer
where do we find URLs to the MS sponsored events (assuming there are more)?

On 6/28/05, Marlon Moyer [EMAIL PROTECTED] wrote:
 Tis a shame.  I've been watching some Microsoft sponsered .Net
 presentations and I was commenting to my coworkers how inconvenient
 the system was since you loaded up Live Meeting to view the video and
 then you needed to call in to get the audio or you could open an audio
 stream with Real Player or Media Player.  Of course, the audio stream
 was a few seconds off of the video.  Breeze really shines when it
 comes to live meetings and I thought CFUnited would be a great way to
 show off the tech.
 
 
 
 On 6/28/05, Sean Corfield [EMAIL PROTECTED] wrote:
  On 6/28/05, Marlon Moyer [EMAIL PROTECTED] wrote:
   I saw that Joe Rinehart is breezing his presentation on Model-Glue
   from CFUnited, are there any other presenters doing the same?
 
  That's a special case because it was arranged with the AZCFUG prior to
  CFUNITED. I don't expect other sessions will be Breezed.
  --
  Sean A Corfield -- http://corfield.org/
  Team Fusebox -- http://fusebox.org/
  Got Gmail? -- I have 50, yes 50, invites to give away!
 
  If you're not annoying somebody, you're not really alive.
  -- Margaret Atwood
 
 
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210875
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Server names

2005-06-29 Thread Robertson-Ravo, Neil (RX)
In that order?

;-)

-Original Message-
From: Mike Kear [mailto:[EMAIL PROTECTED] 
Sent: 29 June 2005 06:42
To: CF-Talk
Subject: Re: Server names

My servers are named after some of the most frustrating experiences of
my life, so I never get too complacent.  They always remind me to pay
attention to detail.

Mine are called Perl, Golf and Annette.

Cheers
Mike Kear
Windsor, NSW, Australia
Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month




On 6/29/05, David Delbridge [EMAIL PROTECTED] wrote:
 You might conclude that Windows has made me cynical:
 
 HAL, Terminator, Proteus, Locutious, Vaal, Box
 
 Dave
 
 
 Jim Davis wrote:
 - Original Message -
 From: Kay Smoljak [EMAIL PROTECTED]
 To: CF-Talk cf-talk@houseoffusion.com
 Sent: Tuesday, June 28, 2005 7:02 PM
 Subject: Re: Server names
 
 
 



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210876
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Form variables Application.cfc

2005-06-29 Thread Andy
I've just started converting my application from application.cfm to
Application.cfc.  Now none of my form variables are making to the action
page.  What am I doing wrong?

 

 

 




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210877
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CF7 - 16 character limit on SQL passwords

2005-06-29 Thread Chase Seibert
Thanks for the good suggestion. I did indeed install the Microsoft JDBC driver, 
using the instructions at:
 
http://www.macromedia.com/cfusion/knowledgebase/index.cfm?event=viewid=KC.tn_18652extid=tn_18652dialogID=48544472iterationID=1sessionID=48303fb989f57d426352stateID=0+0+11018907mode=advanced
 
However, this did not solve my issue. ColdFusion appears to be truncating the 
password at 16 characters before it passes is to JDBC, regardless of the driver 
used. When I configure this new driver to use the sa username/password (which 
is under 16 chars), it works great. When I change just the username and 
password to our regular login (bullhorn1), I get a Login failed error. It's 
not saying the password is too long, or that JDBC is rejecting the password due 
to length, it's saying login failed. This leads to the assumption on my part 
that CF is truncating or otherwise altering the password before it hands it off 
to the driver. 
 
Here is the exact error:
 
Connection verification failed for data source: BULLHORN_MASTER
java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for 
JDBC][SQLServer]Login failed for user 'bullhorn1'.
The root cause was that: java.sql.SQLException: [Microsoft][SQLServer 2000 
Driver for JDBC][SQLServer]Login failed for user 'bullhorn1'.
 
FYI - I also tried jDTS. Exact same result; my sa login worked, but the regular 
login did not. Also interesting to note is that even when using custom JDBC 
drivers and specifying the other driver type, it warns you on that definition 
screen that there is a 16 character limit. 
 
I'm ready to call bullshit on the CF development team. True, it's documented 
right there in the app, but this could very well throw a huge monkey wrench 
into our CF7 plans, for a very stupid issue. Please, anyone else have an ideas?

 

 -Chase

Chase Seibert |  Network and Systems Engineer |  Bullhorn Inc.  |  617.464.2440 
x119  |  www.bullhorn.com


 
-Original Message-
From:Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] 
To: CF-Talk ;
Sent: Jun 29, 2005 09:19:05 AM
Subject: RE: CF7 - 16 character limit on SQL passwords
Isn't the 16 char limit for Oracle databases and not SQL Server? I am sure 
the JDBC driver limit would match the Database limit. If it is the 
DataDirect driver which CF uses consider using the Microsoft JDBC driver - I 
would doubt it has this limit. If it is CF itself which had the error then 
it's a bug which would need to be logged. 

2. not sure, but you would no doubt get performance problems. 

3. Not in SQL Server no, and if it does restrict, it's a bug. 



-Original Message- 
From: Chase Seibert [mailto:[EMAIL PROTECTED] 
Sent: 29 June 2005 14:00 
To: CF-Talk 
Subject: RE: CF7 - 16 character limit on SQL passwords 

lastMessage.Bump()  #newContent# 

Ok, no love on this question. If this is a look in the archives, you idiot 
question, please let me know. I DID google the crap out of this to no avail. 
So here we are in round two... 

1. I assume this is part of the JDBC implementation, correct? Anyone know if 
I can get around this by editing some XML files directly? Where would I look 
for said files? 
2. Would ODBC get around this limitation? What kind of benefits would I be 
negating if I use ODBC rather than JDBC? 
3. Is there som legitimate reason for this 16 character limit? 



-Chase 

Chase Seibert | Network and Systems Engineer | Bullhorn Inc. | 
617.464.2440 x119 | www.bullhorn.com 



-Original Message- 
From: [EMAIL PROTECTED] 
To: CF-Talk ; 
Sent: Jun 28, 2005 02:26:23 PM 
Subject: CF7 - 16 character limit on SQL passwords 
Hey guys, 

Our main site runs CF5.5, but we will be upgrading to CF7 at some point this 
summer. I have been writing some integration code with CF7 on my dev machine 
for about a month, and had everything working great. Now I'm trying to push 
that code to the production system. I love the fact that you can create a 
WAR file and just copy it down. The only things I needed to change were the 
passwords on the datasources... 

Ouch. Looks like CF7 has a 16 character limit on SQL Server 2000 passwords. 
Not sure if this effects all datasources or not. In any case, while our 
development SQL Server is bellow that threshhold, our production server 
password is 18 characters. What are my options here. Does anyone have a 
work-around, either in CF or in SQL? 

Before you say just change the password. That is not an option. We are 
talking about 30 different SQL Servers, and the password is probablly 
hardcoded in a bunch of places. Not our actual site code, but doubtless many 
little utilities we have written over the years. 

Ideas? 


-Chase 

Chase Seibert | Network and Systems Engineer | Bullhorn Inc. | 617.464.2440 
x119 | www.bullhorn.com 








~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: 

OT: Gene 6 FTP Server vs Serv-U Secure?

2005-06-29 Thread Damien McKenna
I'm looking for a secure FTP server and was wondering if anyone had
experience with either Gene 6 FTP Server (Standard) or Serv-U Secure?
I've noticed that some things are easier in one over another, e.g. G6FTP
does virtual directories easily.
 
-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED] 
The Limu Company - http://www.thelimucompany.com/
http://www.thelimucompany.com/  - 407-804-1014
#include stdjoke.h
 


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210879
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CF7 - 16 character limit on SQL passwords

2005-06-29 Thread Robertson-Ravo, Neil (RX)
Dude, if it is a bug it, is a bug and no messingtry and log it or add
your weight into the official MM forums.






-Original Message-
From: Chase Seibert [mailto:[EMAIL PROTECTED] 
Sent: 29 June 2005 15:35
To: CF-Talk
Subject: RE: CF7 - 16 character limit on SQL passwords

Thanks for the good suggestion. I did indeed install the Microsoft JDBC
driver, using the instructions at:
 
http://www.macromedia.com/cfusion/knowledgebase/index.cfm?event=viewid=KC.t
n_18652extid=tn_18652dialogID=48544472iterationID=1sessionID=48303fb989f
57d426352stateID=0+0+11018907mode=advanced
 
However, this did not solve my issue. ColdFusion appears to be truncating
the password at 16 characters before it passes is to JDBC, regardless of the
driver used. When I configure this new driver to use the sa
username/password (which is under 16 chars), it works great. When I change
just the username and password to our regular login (bullhorn1), I get a
Login failed error. It's not saying the password is too long, or that JDBC
is rejecting the password due to length, it's saying login failed. This
leads to the assumption on my part that CF is truncating or otherwise
altering the password before it hands it off to the driver. 
 
Here is the exact error:
 
Connection verification failed for data source: BULLHORN_MASTER
java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for
JDBC][SQLServer]Login failed for user 'bullhorn1'.
The root cause was that: java.sql.SQLException: [Microsoft][SQLServer 2000
Driver for JDBC][SQLServer]Login failed for user 'bullhorn1'.
 
FYI - I also tried jDTS. Exact same result; my sa login worked, but the
regular login did not. Also interesting to note is that even when using
custom JDBC drivers and specifying the other driver type, it warns you on
that definition screen that there is a 16 character limit. 
 
I'm ready to call bullshit on the CF development team. True, it's documented
right there in the app, but this could very well throw a huge monkey wrench
into our CF7 plans, for a very stupid issue. Please, anyone else have an
ideas?

 

 -Chase

Chase Seibert |  Network and Systems Engineer |  Bullhorn Inc.  |
617.464.2440 x119  |  www.bullhorn.com


 
-Original Message-
From:Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] 
To: CF-Talk ;
Sent: Jun 29, 2005 09:19:05 AM
Subject: RE: CF7 - 16 character limit on SQL passwords
Isn't the 16 char limit for Oracle databases and not SQL Server? I am sure 
the JDBC driver limit would match the Database limit. If it is the 
DataDirect driver which CF uses consider using the Microsoft JDBC driver - I

would doubt it has this limit. If it is CF itself which had the error then 
it's a bug which would need to be logged. 

2. not sure, but you would no doubt get performance problems. 

3. Not in SQL Server no, and if it does restrict, it's a bug. 



-Original Message- 
From: Chase Seibert [mailto:[EMAIL PROTECTED] 
Sent: 29 June 2005 14:00 
To: CF-Talk 
Subject: RE: CF7 - 16 character limit on SQL passwords 

lastMessage.Bump()  #newContent# 

Ok, no love on this question. If this is a look in the archives, you idiot

question, please let me know. I DID google the crap out of this to no avail.

So here we are in round two... 

1. I assume this is part of the JDBC implementation, correct? Anyone know if

I can get around this by editing some XML files directly? Where would I look

for said files? 
2. Would ODBC get around this limitation? What kind of benefits would I be 
negating if I use ODBC rather than JDBC? 
3. Is there som legitimate reason for this 16 character limit? 



-Chase 

Chase Seibert | Network and Systems Engineer | Bullhorn Inc. | 
617.464.2440 x119 | www.bullhorn.com 



-Original Message- 
From: [EMAIL PROTECTED] 
To: CF-Talk ; 
Sent: Jun 28, 2005 02:26:23 PM 
Subject: CF7 - 16 character limit on SQL passwords 
Hey guys, 

Our main site runs CF5.5, but we will be upgrading to CF7 at some point this

summer. I have been writing some integration code with CF7 on my dev machine

for about a month, and had everything working great. Now I'm trying to push 
that code to the production system. I love the fact that you can create a 
WAR file and just copy it down. The only things I needed to change were the 
passwords on the datasources... 

Ouch. Looks like CF7 has a 16 character limit on SQL Server 2000 passwords. 
Not sure if this effects all datasources or not. In any case, while our 
development SQL Server is bellow that threshhold, our production server 
password is 18 characters. What are my options here. Does anyone have a 
work-around, either in CF or in SQL? 

Before you say just change the password. That is not an option. We are 
talking about 30 different SQL Servers, and the password is probablly 
hardcoded in a bunch of places. Not our actual site code, but doubtless many

little utilities we have written over the years. 

Ideas? 


-Chase 

Chase Seibert | Network and Systems Engineer | Bullhorn Inc. | 

Re: Fusebox Methadology Question

2005-06-29 Thread Robert Nichols
Fetch the query and generate your request variables within
dsp_sections.cfm using the CFSAVECONTENT tag.


Interesting.  But what if the various sections to be displayed on the web page 
alread have fuse(s) that create them.

For example, suppose one the sections is Useful Links.  A query has to be 
done to get the useful links, then the links have to be formatted into whatever 
style.

So I guess what it comes down to is Can you, should you, and how would you set 
a fuseaction within CF code?

Please tell me if I am not explaining this clearly enough.

Bobby

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210881
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


listtoArray blank entries

2005-06-29 Thread Daniel Kessler
!--- 17 entries ---
cfset myvar = 'Produce|Apples |green, bagged|1.23/lb3 lb|1|0 
g|0 mg|0 mg|22 g|5 g|16 g|0 g|2%'
cfset myAr = listToArray(myVar,|)
!--- outputs ---
#arrayLen(myAr)#

How do I make it an array that includes all the entries?  This messes 
up my indexing.  I only want it to keep an empty entry or empty 
quotes.  I'll be lining up 1 through 17 for manipulation and then 
inserting into a db and it's all by index.
-- 
Daniel Kessler

Department of Public and Community Health
University of Maryland
Suite 2387 Valley Drive
College Park, MD  20742-2611
301-405-2545 Phone
www.phi.umd.edu

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210882
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CF7 - 16 character limit on SQL passwords

2005-06-29 Thread Robertson-Ravo, Neil (RX)
Dude, if it is a bug it, is a bug and no messingtry and log it or add
your weight into the official MM forums - see if an engineer gets back or
call support and use the free installation support MM provides stating you
cannot log on with SQL password longer than 16 chars


-Original Message-
From: Chase Seibert [mailto:[EMAIL PROTECTED] 
Sent: 29 June 2005 15:35
To: CF-Talk
Subject: RE: CF7 - 16 character limit on SQL passwords

Thanks for the good suggestion. I did indeed install the Microsoft JDBC
driver, using the instructions at:
 
http://www.macromedia.com/cfusion/knowledgebase/index.cfm?event=viewid=KC.t
n_18652extid=tn_18652dialogID=48544472iterationID=1sessionID=48303fb989f
57d426352stateID=0+0+11018907mode=advanced
 
However, this did not solve my issue. ColdFusion appears to be truncating
the password at 16 characters before it passes is to JDBC, regardless of the
driver used. When I configure this new driver to use the sa
username/password (which is under 16 chars), it works great. When I change
just the username and password to our regular login (bullhorn1), I get a
Login failed error. It's not saying the password is too long, or that JDBC
is rejecting the password due to length, it's saying login failed. This
leads to the assumption on my part that CF is truncating or otherwise
altering the password before it hands it off to the driver. 
 
Here is the exact error:
This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions.
Visit our website at http://www.reedexpo.com

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210883
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


CFMX 6.1 Getting Flaky

2005-06-29 Thread russ
I'm running CFMX 6.1 on Linux and really just recently--and very much out
of the blue, I might add--it's started to get a little flaky.

The first thing I've noticed is that a pretty simple RSS grab and parse
snippet caused the entire server to reboot--it hangs and cannot pull down,
but when running on a test server there are absolutely no issues.

The next thing I've noticed is that a site that's been in place for ages
suddenly breaks, and the only CF code on the page is a cfform/cfform.

Suffice it to say, I'm concerned, and I'm not exactly ready to upgrade to
7 yet--this shouldn't be happening anyway, so my miserable financials
shouldn't really be a factor just yet.

Has anyone seen this kind of breaking and is there any advice?  I'm
hoping I don't need to re-install, but if that's what I've got to do,
well, that's what I've got to do.

Thanks,

Russ

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210884
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: listtoArray blank entries

2005-06-29 Thread Robertson-Ravo, Neil (RX)
CFLIB is your friend.

http://www.cflib.org/udf.cfm?ID=1022





-Original Message-
From: Daniel Kessler [mailto:[EMAIL PROTECTED] 
Sent: 29 June 2005 15:44
To: CF-Talk
Subject: listtoArray blank entries

!--- 17 entries ---
cfset myvar = 'Produce|Apples |green, bagged|1.23/lb3 lb|1|0 
g|0 mg|0 mg|22 g|5 g|16 g|0 g|2%'
cfset myAr = listToArray(myVar,|)
!--- outputs ---
#arrayLen(myAr)#

How do I make it an array that includes all the entries?  This messes 
up my indexing.  I only want it to keep an empty entry or empty 
quotes.  I'll be lining up 1 through 17 for manipulation and then 
inserting into a db and it's all by index.
-- 

Daniel Kessler

Department of Public and Community Health
University of Maryland
Suite 2387 Valley Drive
College Park, MD  20742-2611
301-405-2545 Phone
www.phi.umd.edu



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210885
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFMX 6.1 Getting Flaky

2005-06-29 Thread Jim Davis
 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, June 29, 2005 10:46 AM
 To: CF-Talk
 Subject: CFMX 6.1 Getting Flaky
 
 I'm running CFMX 6.1 on Linux and really just recently--and very much out
 of the blue, I might add--it's started to get a little flaky.
 
 The first thing I've noticed is that a pretty simple RSS grab and parse
 snippet caused the entire server to reboot--it hangs and cannot pull down,
 but when running on a test server there are absolutely no issues.

With no test issues and no changes now resulting in issues my (substantial)
gut reaction is to check your hardware (especially memory).

If you can take the box down for a day or two there are PC Stress testers
(that run from boot disks) that will pound your memory and drive sub-systems
and should expose any marginal hardware.

You might also check drive space, but I doubt that's it.  Although it could
be drive integrity (a random failed read or write might cause such errors).

If you really think it's CF and you're sure of your hardware you could wrap
up your app in a CAR file, reinstall the server and reapply your app.

Jim Davis






~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210886
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CF7 - 16 character limit on SQL passwords

2005-06-29 Thread Chase Seibert
FYI - I did just that. Thanks for another good suggestion. Here is the link to 
that post if anyone wants to track it:
http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=6threadid=1020481enterthread=y
 
I'll come back and post the solution here, if I find one.


 -Chase

Chase Seibert |  Network and Systems Engineer |  Bullhorn Inc.  |  617.464.2440 
x119  |  www.bullhorn.com


 
-Original Message-
From:Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] 
To: CF-Talk ;
Sent: Jun 29, 2005 10:47:47 AM
Subject: RE: CF7 - 16 character limit on SQL passwords
Dude, if it is a bug it, is a bug and no messingtry and log it or add 
your weight into the official MM forums - see if an engineer gets back or 
call support and use the free installation support MM provides stating you 
cannot log on with SQL password longer than 16 chars 


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210887
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF7 - 16 character limit on SQL passwords

2005-06-29 Thread Marlon Moyer
I can verify that the same behavior exists on CFMX6.1 also with MSSql.
 I did the hard route and changed to shorter passwords.


On 6/29/05, Robertson-Ravo, Neil (RX)
[EMAIL PROTECTED] wrote:
 Dude, if it is a bug it, is a bug and no messingtry and log it or add
 your weight into the official MM forums.
 
 
 
 
 
 
 -Original Message-
 From: Chase Seibert [mailto:[EMAIL PROTECTED]
 Sent: 29 June 2005 15:35
 To: CF-Talk
 Subject: RE: CF7 - 16 character limit on SQL passwords
 
 Thanks for the good suggestion. I did indeed install the Microsoft JDBC
 driver, using the instructions at:
 
 http://www.macromedia.com/cfusion/knowledgebase/index.cfm?event=viewid=KC.t
 n_18652extid=tn_18652dialogID=48544472iterationID=1sessionID=48303fb989f
 57d426352stateID=0+0+11018907mode=advanced
 
 However, this did not solve my issue. ColdFusion appears to be truncating
 the password at 16 characters before it passes is to JDBC, regardless of the
 driver used. When I configure this new driver to use the sa
 username/password (which is under 16 chars), it works great. When I change
 just the username and password to our regular login (bullhorn1), I get a
 Login failed error. It's not saying the password is too long, or that JDBC
 is rejecting the password due to length, it's saying login failed. This
 leads to the assumption on my part that CF is truncating or otherwise
 altering the password before it hands it off to the driver.
 
 Here is the exact error:
 
 Connection verification failed for data source: BULLHORN_MASTER
 java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for
 JDBC][SQLServer]Login failed for user 'bullhorn1'.
 The root cause was that: java.sql.SQLException: [Microsoft][SQLServer 2000
 Driver for JDBC][SQLServer]Login failed for user 'bullhorn1'.
 
 FYI - I also tried jDTS. Exact same result; my sa login worked, but the
 regular login did not. Also interesting to note is that even when using
 custom JDBC drivers and specifying the other driver type, it warns you on
 that definition screen that there is a 16 character limit.
 
 I'm ready to call bullshit on the CF development team. True, it's documented
 right there in the app, but this could very well throw a huge monkey wrench
 into our CF7 plans, for a very stupid issue. Please, anyone else have an
 ideas?
 
 
 
  -Chase
 
 Chase Seibert |  Network and Systems Engineer |  Bullhorn Inc.  |
 617.464.2440 x119  |  www.bullhorn.com
 
 
 
 -Original Message-
 From:Robertson-Ravo, Neil (RX) [EMAIL PROTECTED]
 To: CF-Talk ;
 Sent: Jun 29, 2005 09:19:05 AM
 Subject: RE: CF7 - 16 character limit on SQL passwords
 Isn't the 16 char limit for Oracle databases and not SQL Server? I am sure
 the JDBC driver limit would match the Database limit. If it is the
 DataDirect driver which CF uses consider using the Microsoft JDBC driver - I
 
 would doubt it has this limit. If it is CF itself which had the error then
 it's a bug which would need to be logged.
 
 2. not sure, but you would no doubt get performance problems.
 
 3. Not in SQL Server no, and if it does restrict, it's a bug.
 
 
 
 -Original Message-
 From: Chase Seibert [mailto:[EMAIL PROTECTED]
 Sent: 29 June 2005 14:00
 To: CF-Talk
 Subject: RE: CF7 - 16 character limit on SQL passwords
 
 lastMessage.Bump()  #newContent#
 
 Ok, no love on this question. If this is a look in the archives, you idiot
 
 question, please let me know. I DID google the crap out of this to no avail.
 
 So here we are in round two...
 
 1. I assume this is part of the JDBC implementation, correct? Anyone know if
 
 I can get around this by editing some XML files directly? Where would I look
 
 for said files?
 2. Would ODBC get around this limitation? What kind of benefits would I be
 negating if I use ODBC rather than JDBC?
 3. Is there som legitimate reason for this 16 character limit?
 
 
 
 -Chase
 
 Chase Seibert | Network and Systems Engineer | Bullhorn Inc. |
 617.464.2440 x119 | www.bullhorn.com
 
 
 
 -Original Message-
 From: [EMAIL PROTECTED]
 To: CF-Talk ;
 Sent: Jun 28, 2005 02:26:23 PM
 Subject: CF7 - 16 character limit on SQL passwords
 Hey guys,
 
 Our main site runs CF5.5, but we will be upgrading to CF7 at some point this
 
 summer. I have been writing some integration code with CF7 on my dev machine
 
 for about a month, and had everything working great. Now I'm trying to push
 that code to the production system. I love the fact that you can create a
 WAR file and just copy it down. The only things I needed to change were the
 passwords on the datasources...
 
 Ouch. Looks like CF7 has a 16 character limit on SQL Server 2000 passwords.
 Not sure if this effects all datasources or not. In any case, while our
 development SQL Server is bellow that threshhold, our production server
 password is 18 characters. What are my options here. Does anyone have a
 work-around, either in CF or in SQL?
 
 Before you say just change the password. That is not an option. We are
 talking 

RE: Gene 6 FTP Server vs Serv-U Secure?

2005-06-29 Thread Jeremy Bunton
I've used serv-U in the past and really liked it, now I am using Titan and
WS_FTP Server, WS is good but I seem to recall serv U had more options.

JLB

-Original Message-
From: Damien McKenna [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 29, 2005 10:35 AM
To: CF-Talk
Subject: OT: Gene 6 FTP Server vs Serv-U Secure?

I'm looking for a secure FTP server and was wondering if anyone had
experience with either Gene 6 FTP Server (Standard) or Serv-U Secure?
I've noticed that some things are easier in one over another, e.g. G6FTP
does virtual directories easily.
 
-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED] 
The Limu Company - http://www.thelimucompany.com/
http://www.thelimucompany.com/  - 407-804-1014
#include stdjoke.h
 




~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210889
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Fusebox Methadology Question

2005-06-29 Thread S . Isaac Dealey
Fetch the query and generate your request variables within
dsp_sections.cfm using the CFSAVECONTENT tag.

 Interesting.  But what if the various sections to be
 displayed on the web page alread have fuse(s) that create
 them.

 For example, suppose one the sections is Useful Links.
 A query has to be done to get the useful links, then the
 links have to be formatted into whatever style.

 So I guess what it comes down to is Can you, should you,
 and how would you set a fuseaction within CF code?

 Please tell me if I am not explaining this clearly enough.

Well I believe the way the xml is parsed that it is technically
possible to use variables in many of the xml elements, i.e.

(forgive me if I mangle the XML, I haven't been working with FB
recently)

fuseaction name=x
set variable=request.FA value=someFuseAction /
do action=#request.FA# /
/fuseaction

If the XML dialect for FB's configuration provides the ability to
perform a loop, that might solve the issue for you, since you could
set a request variable and use the xml to loop over the ones you want
to build.

Otherwise AFAIK you can still call FB as a custom tag, so within
dsp_sections.cfm you could loop over your the desired sections and
call FB as a custom tag to generate the content:

cfloop index=sect list=#sectionlist#
cfsavecontent variable=request.#sect#
cfmodule template=../index.cfm
fuseaction=circuit.#sect#
/cfsavecontent
/cfloop

This is an admittedly crude example. The disadvantage to this of
course is that it's not as mechanically efficient.

Though I don't have the impression that Fusebox is really designed in
general with the idea of using a database to determine what
fuseactions will execute, so I believe it's rather outside the realm
of what was really intended. Of course, you could go the other way
with it and create a db-driven tool to generate the XML files for your
FB app, similar to the way that some code-generators like PLUM work
(generalization I know).


s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210890
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: listtoArray blank entries

2005-06-29 Thread Rodney Enke
You'll have to loop through the list and append each value to the array if 
you want to capture empty list elements.

The following code should work, but I haven't tested it so it might not.

cfset myAr = ArrayNew(1)
cfset myVar = 'Produce|Apples |green, bagged|1.23/lb3 lb|1|0 g|0 mg|0 
mg|22 g|5 g|16 g|0 g|2%'
cfloop index=tempVar list=#myVar# delimiters=|
cfset result = ArraryAppend(myAr, tempVar)
/cfloop

cfoutput#arrayLen(myAr)#/cfoutput

-
Rod Enke
PracticeMatch, Inc.
www.practicematch.com http://www.practicematch.com

On 6/29/05, Daniel Kessler [EMAIL PROTECTED] wrote:
 
 !--- 17 entries ---
 cfset myvar = 'Produce|Apples |green, bagged|1.23/lb3 lb|1|0
 g|0 mg|0 mg|22 g|5 g|16 g|0 g|2%'
 cfset myAr = listToArray(myVar,|)
 !--- outputs ---
 #arrayLen(myAr)#
 
 How do I make it an array that includes all the entries? This messes
 up my indexing. I only want it to keep an empty entry or empty
 quotes. I'll be lining up 1 through 17 for manipulation and then
 inserting into a db and it's all by index.
 --
 Daniel Kessler
 
 Department of Public and Community Health
 University of Maryland
 Suite 2387 Valley Drive
 College Park, MD 20742-2611
 301-405-2545 Phone
 www.phi.umd.edu http://www.phi.umd.edu
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210891
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: listtoArray blank entries

2005-06-29 Thread S . Isaac Dealey
 !--- 17 entries ---
 cfset myvar = 'Produce|Apples |green,
 bagged|1.23/lb3 lb|1|0
 g|0 mg|0 mg|22 g|5 g|16 g|0 g|2%'
 cfset myAr = listToArray(myVar,|)
 !--- outputs ---
 #arrayLen(myAr)#

 How do I make it an array that includes all the entries?
 This messes
 up my indexing.  I only want it to keep an empty entry or
 empty
 quotes.  I'll be lining up 1 through 17 for manipulation
 and then
 inserting into a db and it's all by index.

cfset mylist = replace(mylist,||,| |,ALL)
cfset mylist = replace(mylist,||,| |,ALL)
cfset myAr = listToArray(mylist,|)

Then trim the value.

This doesn't accomodate an empty element at the beginning or end of
the list, and there are more complicated methods for lists with
multiple delimiters, but I imagine this will probably accomplish what
you need.

s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210892
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Form variables Application.cfc

2005-06-29 Thread S . Isaac Dealey
 I've just started converting my application from
 application.cfm to Application.cfc.  Now none of
 my form variables are making to the action page.
 What am I doing wrong?

You might want to post the code from your Application.cfc to the list.


s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210893
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Clinton and Bush best buddies

2005-06-29 Thread Bryan Stevenson
 This was sent personally to me and though I'm not gay, it makes me wanna 
 puke.

 I hope an admin steps up and kicks this asshole off the list.

 Disgusted,

 Kevin
 www.keslabs.com

I've had offensive offline mail from this individual as well.something 
along the lines of leftist pot smoking tree hugging Canadian fag if memory 
serves


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 


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210894
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF7 - 16 character limit on SQL passwords

2005-06-29 Thread Jochem van Dieten
Chase Seibert wrote:
  
 Looks like CF7 has a 16 character limit on SQL Server 2000 passwords.

Does it? I remember running into the problem in the CF Admin when 
using a non-IE browser. It had to do something with the default 
settings for processing a form and the fact that passwords get 
longer when hashed. I think I filed a bug for that one, but I 
can't find it in my records.

If the administrator has the limitation, that does not 
necessarily mean the Admin API has the limitation too.

Jochem

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210895
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT: Gene 6 FTP Server vs Serv-U Secure?

2005-06-29 Thread Phill B
I used both. Serv-u was ok in the beginning but I began to hate it
pretty quick. I moved to G6FTP last year and have ZERO regrets. It
kicks some major a$$.

G6FTP gives so much more control over user accounts, idiot proof
virtual directories, great logging, .. I can't say enough good
things about G6FTP.

*uses Jedi powers* 
Serv-U is not the ftp server you are looking for. 


-- 
Philthy
www.labwrk.com
www.myspace.com/labwrk/

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210896
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: listtoArray blank entries

2005-06-29 Thread daniel kessler
This is an ok solution and should work - thanks!

 !--- 17 entries ---
 cfset myvar = 'Produce|Apples |green,
 bagged|1.23/lb3 lb|1|0
 g|0 mg|0 mg|22 g|5 g|16 g|0 g|2%'
 cfset myAr = listToArray(myVar,|)
 !--- outputs ---
 #arrayLen(myAr)#

 How do I make it an array that includes all the entries?
 This messes
 up my indexing.  I only want it to keep an empty entry or
 empty
 quotes.  I'll be lining up 1 through 17 for manipulation
 and then
 inserting into a db and it's all by index.

cfset mylist = replace(mylist,||,| |,ALL)
cfset mylist = replace(mylist,||,| |,ALL)
cfset myAr = listToArray(mylist,|)

Then trim the value.

This doesn't accomodate an empty element at the beginning or end of
the list, and there are more complicated methods for lists with
multiple delimiters, but I imagine this will probably accomplish what
you need.

s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210897
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Clinton and Bush best buddies

2005-06-29 Thread Matthew Small
He did that to a few people on CF-Community a while back.  We've joked about
it a few times. People have the right to believe what they want to, but this
guy should hope he never interviews with people on these lists.

 
Matthew Small
Web Developer
American City Business Journals
704-973-1045
[EMAIL PROTECTED]
 

-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 29, 2005 11:33 AM
To: CF-Talk
Subject: Re: Clinton and Bush best buddies

 This was sent personally to me and though I'm not gay, it makes me wanna 
 puke.

 I hope an admin steps up and kicks this asshole off the list.

 Disgusted,

 Kevin
 www.keslabs.com

I've had offensive offline mail from this individual as well.something 
along the lines of leftist pot smoking tree hugging Canadian fag if memory

serves


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 




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210898
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT: Gene 6 FTP Server vs Serv-U Secure?

2005-06-29 Thread Phill B
I forgot to mention that Serv-U is used in some trojans so you may get
false positives with you anti virus scans.
http://vil.mcafeesecurity.com/vil/content/v_99901.htm


On 6/29/05, Phill B [EMAIL PROTECTED] wrote:
 I used both. Serv-u was ok in the beginning but I began to hate it
 pretty quick. I moved to G6FTP last year and have ZERO regrets. It
 kicks some major a$$.
 
 G6FTP gives so much more control over user accounts, idiot proof
 virtual directories, great logging, .. I can't say enough good
 things about G6FTP.
 
 *uses Jedi powers*
 Serv-U is not the ftp server you are looking for.
 
 
 --
 Philthy
 www.labwrk.com
 www.myspace.com/labwrk/
 


-- 
Philthy
www.labwrk.com
www.myspace.com/labwrk/

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210899
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: listtoArray blank entries

2005-06-29 Thread S . Isaac Dealey
 This is an ok solution and should work - thanks!

Welcome, glad I could help...
The afforementioned udf from cflib was also worthwhile.


s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210900
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CF7 - 16 character limit on SQL passwords

2005-06-29 Thread Chase Seibert
Another good suggestion. I have that a shot, following directions on:
http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentationfile=1734.htm
 
Unfortunately, datasources created programmatically exhibit the same behavior. 
I believe the issue is not setting the password; the admin interface I believe 
is storing the whole long version. The problem is when it passes that value to 
the JDBC driver, it truncates it.

 

 -Chase

Chase Seibert |  Network and Systems Engineer |  Bullhorn Inc.  |  617.464.2440 
x119  |  www.bullhorn.com


 
-Original Message-
From:Jochem van Dieten [EMAIL PROTECTED] 
To: CF-Talk ;
Sent: Jun 29, 2005 11:35:01 AM
Subject: Re: CF7 - 16 character limit on SQL passwords
Chase Seibert wrote: 
 
 Looks like CF7 has a 16 character limit on SQL Server 2000 passwords. 

Does it? I remember running into the problem in the CF Admin when 
using a non-IE browser. It had to do something with the default 
settings for processing a form and the fact that passwords get 
longer when hashed. I think I filed a bug for that one, but I 
can't find it in my records. 

If the administrator has the limitation, that does not 
necessarily mean the Admin API has the limitation too. 

Jochem 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210901
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Clinton and Bush best buddies

2005-06-29 Thread Dave Francis
I'd be pretty damn annoyed if someone called me Canadian too!

-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED]
Sent: Wednesday, June 29, 2005 11:33 AM
To: CF-Talk
Subject: Re: Clinton and Bush best buddies


 This was sent personally to me and though I'm not gay, it makes me wanna
 puke.

 I hope an admin steps up and kicks this asshole off the list.

 Disgusted,

 Kevin
 www.keslabs.com

I've had offensive offline mail from this individual as well.something
along the lines of leftist pot smoking tree hugging Canadian fag if memory
serves


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




~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210902
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CF7 - 16 character limit on SQL passwords

2005-06-29 Thread Chase Seibert
Ok, now I am really getting frustrated... may be time to call in Macromedia 
support. I just tried ODBC; no dice. The same exact 16 character password 
limitation exists. Again, I can login as sa but not my regular user. Again, the 
dialog warns you that only passwords 16 characters or less are supported. I 
also tried using a trusted connection, but that would involve re-installing SQL 
Server in a mixed authentication mode. That's even more work than just changing 
the passwords, hehe.
 
I thought for sure ODBC would work, given that it did in previous versions. 
That was my fall-back position. As of this second, my only remaining option is 
to reset all my database passwords. Yikes.

 

 -Chase

Chase Seibert |  Network and Systems Engineer |  Bullhorn Inc.  |  617.464.2440 
x119  |  www.bullhorn.com


 
-Original Message-
From: [EMAIL PROTECTED] 
To: CF-Talk ;
Sent: Jun 29, 2005 10:35:33 AM
Subject: RE: CF7 - 16 character limit on SQL passwords
Thanks for the good suggestion. I did indeed install the Microsoft JDBC driver, 
using the instructions at: 

http://www.macromedia.com/cfusion/knowledgebase/index.cfm?event=viewid=KC.tn_18652extid=tn_18652dialogID=48544472iterationID=1sessionID=48303fb989f57d426352stateID=0+0+11018907mode=advanced
 

However, this did not solve my issue. ColdFusion appears to be truncating the 
password at 16 characters before it passes is to JDBC, regardless of the driver 
used. When I configure this new driver to use the sa username/password (which 
is under 16 chars), it works great. When I change just the username and 
password to our regular login (bullhorn1), I get a Login failed error. It's 
not saying the password is too long, or that JDBC is rejecting the password due 
to length, it's saying login failed. This leads to the assumption on my part 
that CF is truncating or otherwise altering the password before it hands it off 
to the driver. 

Here is the exact error: 

Connection verification failed for data source: BULLHORN_MASTER 
java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for 
JDBC][SQLServer]Login failed for user 'bullhorn1'. 
The root cause was that: java.sql.SQLException: [Microsoft][SQLServer 2000 
Driver for JDBC][SQLServer]Login failed for user 'bullhorn1'. 

FYI - I also tried jDTS. Exact same result; my sa login worked, but the regular 
login did not. Also interesting to note is that even when using custom JDBC 
drivers and specifying the other driver type, it warns you on that definition 
screen that there is a 16 character limit. 

I'm ready to call bullshit on the CF development team. True, it's documented 
right there in the app, but this could very well throw a huge monkey wrench 
into our CF7 plans, for a very stupid issue. Please, anyone else have an ideas? 



-Chase 

Chase Seibert | Network and Systems Engineer | Bullhorn Inc. | 617.464.2440 
x119 | www.bullhorn.com 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210903
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


another cfdump bug?

2005-06-29 Thread Russ
I'm running into an issue with cfdump.  Here is the sample code that
reproduces the issue I'm having.  

 

cftry

cfset testStruct=StructNew()

cfoutput#testStruct[testKey]#/cfoutput

cfcatch type=any

cfdump var=#cfcatch# label=cfcatch

cfset myCatch=StructNew()

cfloop list=#structKeyList(cfcatch)# index=x

cfset
StructInsert(myCatch,x,Evaluate(cfcatch.#x#),false)

/cfloop

cfdump var=#myCatch# label=myCatch

/cfcatch

/cftry

 

 

The first cfdump just outputs cfcatch - object of
coldfusion.runtime.UndefinedElementException.  The second one outputs what
I'm expecting to see.  

Is there a bug in the way that cfdump dumps the cfcatch struct when it's an
underfinedElementException, or am I doing something wrong?  I might be a bit
behind in the hotfixes, are there any I should apply?

 

Russ



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210904
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Clinton and Bush best buddies

2005-06-29 Thread Bryan Stevenson
From: Dave Francis [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Wednesday, June 29, 2005 9:02 AM
Subject: RE: Clinton and Bush best buddies


 I'd be pretty damn annoyed if someone called me Canadian too!
 

Cute Dave...no maple syrup for you buddy ;-)

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

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210905
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: another cfdump bug?

2005-06-29 Thread Kerry
is this on 7?
works fine for me on 6.1+updater+hotfix hf56580_611.zip

-Original Message-
From: Russ [mailto:[EMAIL PROTECTED]
Sent: 29 June 2005 17:18
To: CF-Talk
Subject: another cfdump bug?


I'm running into an issue with cfdump.  Here is the sample code that
reproduces the issue I'm having.



cftry

cfset testStruct=StructNew()

cfoutput#testStruct[testKey]#/cfoutput

cfcatch type=any

cfdump var=#cfcatch# label=cfcatch

cfset myCatch=StructNew()

cfloop list=#structKeyList(cfcatch)# index=x

cfset
StructInsert(myCatch,x,Evaluate(cfcatch.#x#),false)

/cfloop

cfdump var=#myCatch# label=myCatch

/cfcatch

/cftry





The first cfdump just outputs cfcatch - object of
coldfusion.runtime.UndefinedElementException.  The second one outputs what
I'm expecting to see.

Is there a bug in the way that cfdump dumps the cfcatch struct when it's an
underfinedElementException, or am I doing something wrong?  I might be a bit
behind in the hotfixes, are there any I should apply?



Russ





~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210906
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CF7 - 16 character limit on SQL passwords

2005-06-29 Thread Dave Watts
 Ok, now I am really getting frustrated... may be time to call 
 in Macromedia support. I just tried ODBC; no dice. The same 
 exact 16 character password limitation exists. Again, I can 
 login as sa but not my regular user. Again, the dialog warns 
 you that only passwords 16 characters or less are supported. 
 I also tried using a trusted connection, but that would 
 involve re-installing SQL Server in a mixed authentication 
 mode. That's even more work than just changing the passwords,
 hehe.

Well, CF doesn't directly support trusted connections, but the latest
DataDirect drivers do support them, so there may be a way to get them going
by manually writing your JDBC URL.

However, if your SQL Server was installed using the mixed authentication
mode option, that means it can do both Windows authentication (trusted
connections) and native SQL logins (untrusted connections). You don't have
to reinstall it to use trusted connections!

 I thought for sure ODBC would work, given that it did in 
 previous versions. That was my fall-back position. As of this 
 second, my only remaining option is to reset all my database 
 passwords. Yikes.

I think that resetting the database passwords is your best option, actually.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized 
instruction at our training centers in Washington DC, Atlanta, 
Chicago, Baltimore, Northern Virginia, or on-site at your location. 
Visit http://training.figleaf.com/ for more information!


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210907
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Clinton and Bush best buddies

2005-06-29 Thread Kevin Aebig
I'm cutting you off from backbacon too eh!

!K

- Original Message - 
From: Dave Francis [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Wednesday, June 29, 2005 10:02 AM
Subject: RE: Clinton and Bush best buddies


 I'd be pretty damn annoyed if someone called me Canadian too!

 -Original Message-
 From: Bryan Stevenson [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, June 29, 2005 11:33 AM
 To: CF-Talk
 Subject: Re: Clinton and Bush best buddies


 This was sent personally to me and though I'm not gay, it makes me wanna
 puke.

 I hope an admin steps up and kicks this asshole off the list.

 Disgusted,

 Kevin
 www.keslabs.com

 I've had offensive offline mail from this individual as well.something
 along the lines of leftist pot smoking tree hugging Canadian fag if 
 memory
 serves


 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




 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210908
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Clinton and Bush best buddies

2005-06-29 Thread Dana
hey now :)

On 6/29/05, Dave Francis [EMAIL PROTECTED] wrote:
I'd be pretty damn annoyed if someone called me Canadian too!

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210910
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: listtoArray blank entries

2005-06-29 Thread daniel kessler
I've had trouble getting local UDFs to work on our server.  At the U here, they 
do everything their way and I often can't get things to work and there's no 
explanation - so often as I can, I self-roll my solution.

But it's another reason for me to get that changed.

 This is an ok solution and should work - thanks!

Welcome, glad I could help...
The afforementioned udf from cflib was also worthwhile.


s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210909
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Gene 6 FTP Server vs Serv-U Secure?

2005-06-29 Thread Damien McKenna
Never mind, I'm going with freeFTPd, a free SSH daemon :)

Thanks for the input.  For what its worth, in my evaluations I also
thought G6FTPServer was better than Serv-U.

-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
#include stdjoke.h


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210911
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Clinton and Bush best buddies

2005-06-29 Thread Damien McKenna
  ssh -l root inferno1.local.com

 You named your server Inferno?

http://www.vitanuova.com/inferno/
:-)

-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
#include stdjoke.h


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210912
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Clinton and Bush best buddies

2005-06-29 Thread Jim Campbell
Don't you mean Hey now, eh? :)

- Jim

Dana wrote:

hey now :)

On 6/29/05, Dave Francis [EMAIL PROTECTED] wrote:
  

   I'd be pretty damn annoyed if someone called me Canadian too!





~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210913
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Clinton and Bush best buddies

2005-06-29 Thread Dana
Also no listening to William Shatner sing! Oh... wait

nebber mind

Dana

On 6/29/05, Kevin Aebig [EMAIL PROTECTED] wrote:
 I'm cutting you off from backbacon too eh!
 
 !K
 
 - Original Message -
 From: Dave Francis [EMAIL PROTECTED]
 To: CF-Talk cf-talk@houseoffusion.com
 Sent: Wednesday, June 29, 2005 10:02 AM
 Subject: RE: Clinton and Bush best buddies
 
 
  I'd be pretty damn annoyed if someone called me Canadian too!
 
  -Original Message-
  From: Bryan Stevenson [mailto:[EMAIL PROTECTED]
  Sent: Wednesday, June 29, 2005 11:33 AM
  To: CF-Talk
  Subject: Re: Clinton and Bush best buddies
 
 
  This was sent personally to me and though I'm not gay, it makes me wanna
  puke.
 
  I hope an admin steps up and kicks this asshole off the list.
 
  Disgusted,
 
  Kevin
  www.keslabs.com
 
  I've had offensive offline mail from this individual as well.something
  along the lines of leftist pot smoking tree hugging Canadian fag if
  memory
  serves
 
 
  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
 
 
 
 
 
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210914
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Clinton and Bush best buddies

2005-06-29 Thread Dana
been here too long. Now I say hey now y'all, eh?
;)
Dana

On 6/29/05, Jim Campbell [EMAIL PROTECTED] wrote:
 Don't you mean Hey now, eh? :)
 
 - Jim
 
 Dana wrote:
 
 hey now :)
 
 On 6/29/05, Dave Francis [EMAIL PROTECTED] wrote:
 
 
I'd be pretty damn annoyed if someone called me Canadian too!
 
 
 
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210915
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Clinton and Bush best buddies

2005-06-29 Thread S . Isaac Dealey
  ssh -l root inferno1.local.com

 You named your server Inferno?

 http://www.vitanuova.com/inferno/
 :-)

Aha! Well now I know. :)

s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210916
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: another cfdump bug?

2005-06-29 Thread Russ
No, this is on 6.1... 

I have installed updater, and it gave me the undefined bug that was talked
about earlier, and after installing the hotfix, everything is working
properly.  

Thanks for your help. 

Russ

-Original Message-
From: Kerry [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 29, 2005 12:28 PM
To: CF-Talk
Subject: RE: another cfdump bug?

is this on 7?
works fine for me on 6.1+updater+hotfix hf56580_611.zip

-Original Message-
From: Russ [mailto:[EMAIL PROTECTED]
Sent: 29 June 2005 17:18
To: CF-Talk
Subject: another cfdump bug?


I'm running into an issue with cfdump.  Here is the sample code that
reproduces the issue I'm having.



cftry

cfset testStruct=StructNew()

cfoutput#testStruct[testKey]#/cfoutput

cfcatch type=any

cfdump var=#cfcatch# label=cfcatch

cfset myCatch=StructNew()

cfloop list=#structKeyList(cfcatch)# index=x

cfset
StructInsert(myCatch,x,Evaluate(cfcatch.#x#),false)

/cfloop

cfdump var=#myCatch# label=myCatch

/cfcatch

/cftry





The first cfdump just outputs cfcatch - object of
coldfusion.runtime.UndefinedElementException.  The second one outputs what
I'm expecting to see.

Is there a bug in the way that cfdump dumps the cfcatch struct when it's an
underfinedElementException, or am I doing something wrong?  I might be a bit
behind in the hotfixes, are there any I should apply?



Russ







~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210917
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


embedded loops, trouble with

2005-06-29 Thread mayo
I was asked to display financial calculations. It requires embedded
loops and I've been spinning my wheels on this project.
 
The first task is to keep going through a loop until one reaches an
inputted number.
 
EX: The mortgage will be paid off in [ 36 ] months.
 
So the loop is
 
cfloop from=1 to=#totalMonths# index=somethingAppropriate
 
/cfloop
 
Inside this loop there are several calculations. If at the end of
#totalMonths# one of the calculations isn't equal to 0 (or another
inputted number designated as p1) the loop has to be done again.
 
So, inside loop (same as above)
 
cfloop from=1 to=#totalMonths# index=somethingAppropriate
 
cfset p1=p1-myIndex
.
#p1#
/cfloop
 
cfif p1 GT 1  // If p1 doesn't equal 0 do again.
 
cfloop from=1 to=#totalMonths# index=somethingAppropriate
 
cfset p1=p1-myIndex
.
#p1#
/cfloop
 
/cfif
 
I hope this was understandable.
 
Thx
 
gil


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210918
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Canadian CF hosting CC processing?

2005-06-29 Thread Dirk Sieber
Okay, it seems to be a day for questions for me. :)  Can anyone
recommend a Canadian solution for:
A) CF hosting - CFMX prefered, if possible, and in Canada would be nice,
although not absolutely necessary.

B) A CF-friendly company that can handle Canadian on-line credit-card
authorizations - looking around on-line, seems all the big names are
geared to the US.  I'm new to this side of things, so I don't know if
that means they only deal in US currency transations, which would mean
two conversions for every sale (Cdn Customer-US $ charge-Cdn $ to the
company), or if it's an option to choose your currency.

I found an old reference to Pacific Online, but they don't seem to be
offering CF hosting anymore.  Also one for http://www.afpwebworks.com -
however, I'd prefer something a little closer to home, if possible, but
I'm checking them out - anyone have any comments on their service?

Thanks!
Dirk

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210919
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Canadian CF hosting CC processing?

2005-06-29 Thread CollicuttL
I use Crystaltech.com for hosting and love them.  I've been using e-xact.com
for cc transactions for about 5 years and have had no problems...they are
canadian and have a cf solution.

Lorne

-Original Message-
From: Dirk Sieber [mailto:[EMAIL PROTECTED] 
Sent: June 29, 2005 10:55
To: CF-Talk
Subject: Canadian CF hosting  CC processing?


Okay, it seems to be a day for questions for me. :)  Can anyone recommend a
Canadian solution for:
A) CF hosting - CFMX prefered, if possible, and in Canada would be nice,
although not absolutely necessary.

B) A CF-friendly company that can handle Canadian on-line credit-card
authorizations - looking around on-line, seems all the big names are geared
to the US.  I'm new to this side of things, so I don't know if that means
they only deal in US currency transations, which would mean two conversions
for every sale (Cdn Customer-US $ charge-Cdn $ to the company), or if it's
an option to choose your currency.

I found an old reference to Pacific Online, but they don't seem to be
offering CF hosting anymore.  Also one for http://www.afpwebworks.com -
however, I'd prefer something a little closer to home, if possible, but I'm
checking them out - anyone have any comments on their service?

Thanks!
Dirk



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210920
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Canadian CF hosting CC processing?

2005-06-29 Thread Tim Laureska
Take a look at experthost.com for hosting  - I believe their in Canada
(Ontario) and their now switching to CFMX for some of their servers at
least

-Original Message-
From: Dirk Sieber [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 29, 2005 1:55 PM
To: CF-Talk
Subject: Canadian CF hosting  CC processing?

Okay, it seems to be a day for questions for me. :)  Can anyone
recommend a Canadian solution for:
A) CF hosting - CFMX prefered, if possible, and in Canada would be nice,
although not absolutely necessary.

B) A CF-friendly company that can handle Canadian on-line credit-card
authorizations - looking around on-line, seems all the big names are
geared to the US.  I'm new to this side of things, so I don't know if
that means they only deal in US currency transations, which would mean
two conversions for every sale (Cdn Customer-US $ charge-Cdn $ to the
company), or if it's an option to choose your currency.

I found an old reference to Pacific Online, but they don't seem to be
offering CF hosting anymore.  Also one for http://www.afpwebworks.com -
however, I'd prefer something a little closer to home, if possible, but
I'm checking them out - anyone have any comments on their service?

Thanks!
Dirk



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210921
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Canadian CF hosting CC processing?

2005-06-29 Thread Damien McKenna
Try http://www.webhostingtalk.com/'s forums, they're particularly good.

-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
#include stdjoke.h


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210922
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Canadian CF hosting CC processing?

2005-06-29 Thread Kevin Aebig
http://www.blacksun.ca/

They're down the hall from my office and I know them quite well. They run 
new Dell racks and have an amazingly stable network.

!K

- Original Message - 
From: Dirk Sieber [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Wednesday, June 29, 2005 11:55 AM
Subject: Canadian CF hosting  CC processing?


 Okay, it seems to be a day for questions for me. :)  Can anyone
 recommend a Canadian solution for:
 A) CF hosting - CFMX prefered, if possible, and in Canada would be nice,
 although not absolutely necessary.

 B) A CF-friendly company that can handle Canadian on-line credit-card
 authorizations - looking around on-line, seems all the big names are
 geared to the US.  I'm new to this side of things, so I don't know if
 that means they only deal in US currency transations, which would mean
 two conversions for every sale (Cdn Customer-US $ charge-Cdn $ to the
 company), or if it's an option to choose your currency.

 I found an old reference to Pacific Online, but they don't seem to be
 offering CF hosting anymore.  Also one for http://www.afpwebworks.com -
 however, I'd prefer something a little closer to home, if possible, but
 I'm checking them out - anyone have any comments on their service?

 Thanks!
 Dirk

 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210923
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: apache and j2ee config with cfmx

2005-06-29 Thread Troy Simpson
I have been fighting with this issue myself off and on for about a year now.

I have the following configuration:  
Apache 2.0.52
JRun4/ColdFusionMX 6.1
Sun Solaris 8

Example senerio:
One Apache2 Instance with two virtual hosts and 3 JRun Instances using
ColdFusion MX 6.1.  All of this is configured on one server.

Apache2 Virtual Host are:
www.abc.org
www.xyz.org

JRun Instances running ColdFusion Applications are:
Name - Host - JNDI Port - HTTP Port - Proxy Port
app1 - localhost - 2911 - 8101 - 51001
app2 - localhost - 2912 - 8102 - 51002
app3 - localhost - 2913 - 8103 - 51003

Here are the URLs for each of the applications:
http://www.abc.org/app1/index.cfm
http://www.abc.org/app2/index.cfm
http://www.xyz.org/app3/index.cfm

app3 appears to work find, but app1 and app2 appears to have issues.

The closes solution I found to my problem in the JRun documentation is
Connector-based clustering.  But this solution does not appear to
support my configuration.  It appears to only support cases where each
virtual host has it's own JRun Connector or used the default global
JRun connector if one is not defined in the Virtual Host directive. 
This would mean that I would have to install app1 and app2 in one JRun
instances with ColdFusion MX and set the context root to \.

I have not found a way to have one virtual host manage multiple JRun
Instances in which each JRun Instance is running a different
application.

Here are the directives in the Apache http.conf file for virtual host
www.abc.org.
  IfModule mod_jrun20.c
  JRunConfig Verbose true
  JRunConfig Apialloc false
  #JRunConfig Ssl false
  JRunConfig Ignoresuffixmap false
  JRunConfig Serverstore /opt/websites/www.abc.org/conf/jrunserver.store
  JRunConfig Bootstrap 127.0.0.1:51001
  #JRunConfig Errorurl optionally redirect to this URL on errors
  AddHandler jrun-handler .cfm .cfml .cfc
  /IfModule

jrunserver.store looks like this:
proxyservers=127.0.0.1:51001;127.0.0.1:51002

The JRunConfig Bootstrap directive looks for a JRun Instance Listening
to 127.0.0.1:51001 in order to initialize.  What if that JRun
instances is not running, what happens next?

Anybody have any ideas?

-- 
Troy Simpson
  Applications Analyst/Programmer, OCPDBA, MCSE, SCSA
North Carolina State University Libraries
Campus Box 7111 | Raleigh | North Carolina
ph.919.515.3855 | fax.919.513.3330
E-mail: [EMAIL PROTECTED]

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210924
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Working Code

2005-06-29 Thread Donna French
cfquery name=getDolls datasource=dsn
select * 
from subcategories
/cfquery

cfif isDefined(form.btn)
cfdump var=#form#
/cfif

cfform action=#cgi.script_name# format=flash

cfgrid name=dollGrid query=getDolls rowheaders=false
cfgridcolumn name=subcategory
cfgridcolumn name=subcategoryid
cfgridcolumn name=description
cfgridcolumn name=categoryid
/cfgrid

cfinput type=text name=subcategory label=Subcategory
bind={dollGrid.selectedItem.subcategory}

cfinput type=text name=subcategoryid label=Subcategory ID
bind={dollGrid.selectedItem.subcategoryID}

cfinput type=text name=description label=Description
bind={dollGrid.selectedItem.description}

cfinput type=text name=categoryid label=Category ID
bind={dollGrid.selectedItem.categoryID}

cfinput type=submit name=btn value=submit

/cfform 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210925
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: working code

2005-06-29 Thread Donna French
I got it working with this code:

cfquery name=getDolls datasource=dsn
select * 
from subcategories
/cfquery

cfif isDefined(form.btn)
cfdump var=#form#
/cfif

cfform action=#cgi.script_name# format=flash

cfgrid name=dollGrid query=getDolls rowheaders=false
cfgridcolumn name=subcategory
cfgridcolumn name=subcategoryid
cfgridcolumn name=description
cfgridcolumn name=categoryid
/cfgrid

cfinput type=text name=subcategory label=Subcategory
bind={dollGrid.selectedItem.subcategory}

cfinput type=text name=subcategoryid label=Subcategory ID
bind={dollGrid.selectedItem.subcategoryID}

cfinput type=text name=description label=Description
bind={dollGrid.selectedItem.description}

cfinput type=text name=categoryid label=Category ID
bind={dollGrid.selectedItem.categoryID}

cfinput type=submit name=btn value=submit

/cfform 


 well I know that this works...
 
 cfform format=flash width=500 
   cfformgroup type=panel label=My Grid
  cfgrid name=myGrid query=stuff selectmode=row 
 colheaders=no 
  cfgridcolumn name=faqType header=FAQ Type 
  cfgridcolumn name=faqQuestion header=Question 
  cfgridcolumn name=faqAnswer header=Answer 
  cfgridcolumn name=faqCatagory header=Category 
  cfgridcolumn name=faqGroup header=Group 
  /cfgrid 
   /cfformgroup
   cfformgroup type=panel label=Edit me here
   cfinput type=text name=faqType label=FAQ Type 
 bind={myGrid.
 selectedItem.faqType} / 
   cfinput type=text name=faqQuestion label=Question 
 bind={myGrid.selectedItem.faqQuestion} / 
   cfinput type=text name=faqAnswer label=Answer 
 bind={myGrid.
 selectedItem.faqAnswer}  
   cfinput type=text name=faqCatagory label=Category 
 bind={myGrid.selectedItem.faqCatagory} / 
   cfinput type=text name=faqGroup label=Group 
 bind={myGrid.
 selectedItem.faqGroup} / 
   /cfformgroup
   cfinput type=submit name=edit value=Edit Me /
 /cfform 
 
 I just post and catch changes there based on the form var that track 
 the grid row changes.
 Hope this helps. 
 
 :)
Gryphn

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210926
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: embedded loops, trouble with

2005-06-29 Thread Eddie
On 6/29/05, mayo [EMAIL PROTECTED] wrote:
 I was asked to display financial calculations. It requires embedded
 loops and I've been spinning my wheels on this project.
 
 The first task is to keep going through a loop until one reaches an
 inputted number.
 
 EX: The mortgage will be paid off in [ 36 ] months.
 
 So the loop is
 
 cfloop from=1 to=#totalMonths# index=somethingAppropriate
 
 /cfloop
 
 Inside this loop there are several calculations. If at the end of
 #totalMonths# one of the calculations isn't equal to 0 (or another
 inputted number designated as p1) the loop has to be done again.
 
 So, inside loop (same as above)
 
 cfloop from=1 to=#totalMonths# index=somethingAppropriate
 
 cfset p1=p1-myIndex
.
#p1#
 /cfloop
 
 cfif p1 GT 1  // If p1 doesn't equal 0 do again.
 
 cfloop from=1 to=#totalMonths# index=somethingAppropriate
 
 cfset p1=p1-myIndex
.
#p1#
 /cfloop
 
 /cfif

I think a cfloop condition is more appropriate in your situation
than cfloop index. Something like this:

cfset x = 36
cfloop condition=x gt 0 
cfoutput#x#/cfoutput
cfset x = x - 1
/cfloop

You can add your calculation/condition inside the loop. Basically,
whenever x hits 0, the loop ends. So, if you do not make sure that x
will hit zero somehow, your loop will keep on looping until the end of
days. HTH.

-- 
Eddie.
http://awads.net/

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210928
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CF7 - 16 character limit on SQL passwords

2005-06-29 Thread Peter Farrell
I think that resetting the database passwords is your best option, actually.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

I agree with Dave.  Bad situations - but hard coded passwords/dsns/etc can 
cause that.

Best,
...Peter

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210927
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: embedded loops, trouble with

2005-06-29 Thread Dave Francis
The way I understand it, a cfloop condition...  is right, but he needs the
cfloop from=1 to=#totalMonths# index=somethingAppropriate inside it.

cfloop condition=p1 gt 0
cfloop from=1 to=#totalMonths# index=somethingAppropriate

/cfloop
cfset p1 = p1 - whatever !-- or inside the inner loop maybe?? --
/cfloop


-Original Message-
From: Eddie [mailto:[EMAIL PROTECTED]
Sent: Wednesday, June 29, 2005 4:19 PM
To: CF-Talk
Subject: Re: embedded loops, trouble with


On 6/29/05, mayo [EMAIL PROTECTED] wrote:
 I was asked to display financial calculations. It requires embedded
 loops and I've been spinning my wheels on this project.

 The first task is to keep going through a loop until one reaches an
 inputted number.

 EX: The mortgage will be paid off in [ 36 ] months.

 So the loop is

 cfloop from=1 to=#totalMonths# index=somethingAppropriate

 /cfloop

 Inside this loop there are several calculations. If at the end of
 #totalMonths# one of the calculations isn't equal to 0 (or another
 inputted number designated as p1) the loop has to be done again.

 So, inside loop (same as above)

 cfloop from=1 to=#totalMonths# index=somethingAppropriate

 cfset p1=p1-myIndex
.
#p1#
 /cfloop

 cfif p1 GT 1  // If p1 doesn't equal 0 do again.

 cfloop from=1 to=#totalMonths# index=somethingAppropriate

 cfset p1=p1-myIndex
.
#p1#
 /cfloop

 /cfif

I think a cfloop condition is more appropriate in your situation
than cfloop index. Something like this:

cfset x = 36
cfloop condition=x gt 0 
cfoutput#x#/cfoutput
cfset x = x - 1
/cfloop

You can add your calculation/condition inside the loop. Basically,
whenever x hits 0, the loop ends. So, if you do not make sure that x
will hit zero somehow, your loop will keep on looping until the end of
days. HTH.

--
Eddie.
http://awads.net/



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210929
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Canadian CF hosting CC processing?

2005-06-29 Thread Trevor Holm-Laursen
www.servercop.com

We have a dedicated box there and have been happy so far.  They also offer
6.1 shared and soon to have 7.

Trevor Holm-Laursen
eBusiness Developer, FCS
FCS (Fundy Computer Services Ltd.)
Phone:  (902)463-5953

Tel: 877-993-8636

Fax: 902-484-5887

[EMAIL PROTECTED]

http://www.fcs.ca

The information transmitted is intended only for the person or entity to
which it is addressed and may contain confidential and/or privileged
material.  Re-transmission, dissemination or other use of, or taking of any
action in reliance upon, this information by persons or entities other than
the intended recipient is prohibited.   If received in error, please accept
my apologies, contact the sender and delete the material from any computer.


-Original Message-
From: Dirk Sieber [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 29, 2005 2:55 PM
To: CF-Talk
Subject: Canadian CF hosting  CC processing?

Okay, it seems to be a day for questions for me. :)  Can anyone
recommend a Canadian solution for:
A) CF hosting - CFMX prefered, if possible, and in Canada would be nice,
although not absolutely necessary.

B) A CF-friendly company that can handle Canadian on-line credit-card
authorizations - looking around on-line, seems all the big names are
geared to the US.  I'm new to this side of things, so I don't know if
that means they only deal in US currency transations, which would mean
two conversions for every sale (Cdn Customer-US $ charge-Cdn $ to the
company), or if it's an option to choose your currency.

I found an old reference to Pacific Online, but they don't seem to be
offering CF hosting anymore.  Also one for http://www.afpwebworks.com -
however, I'd prefer something a little closer to home, if possible, but
I'm checking them out - anyone have any comments on their service?

Thanks!
Dirk



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210930
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


print to pdf

2005-06-29 Thread dan martin
What are people using for printing to pdf for cfmx7?

I am in the process of upgrading from cf5 to cfmx7 and just finished migrating 
all the broken cfgraphs to cfcharts only to find out that cfdocument doesnt 
support cfchart. So, I need an external solution to printing the screen to PDF. 
Any suggestions?

The solution I am using on cf5 works great, but is not supported on the latest 
version of windows.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210931
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


AutoTab Through Forms?

2005-06-29 Thread Claremont, Timothy
Our data entry operator would like the screen to auto tab to the next
field when finished inputting data. This is especially true of date
fields. So, once two digits are entered into the month field, auto tab
to the day field, etc.


Barring that, what is the best way to set up a date field for data
entry, like the forms where the / marks between the month/day, and the
day/year are pre-populated?

When I set the format of the field to date, it objects when I enter
120504 or 12-05-04. It only wants 12/05/04. Speed of data entry is the
objective here.

Is there a clean way to do this?

CFMX6.1 is the platform.

TIA,
Tim

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please delete it from 
your system.

This footnote also confirms that this email message has been swept for
the presence of computer viruses.

Thank You,
Viahealth
**


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210932
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: AutoTab Through Forms?

2005-06-29 Thread Web Specialist
Hi Timothy

please look this JS related sites:

http://www.mattkruse.com/javascript/autotab/

http://javascript.internet.com/forms/auto-tab.html

Could help you.

Cheers

2005/6/29, Claremont, Timothy [EMAIL PROTECTED]:
 Our data entry operator would like the screen to auto tab to the next
 field when finished inputting data. This is especially true of date
 fields. So, once two digits are entered into the month field, auto tab
 to the day field, etc.
 
 Barring that, what is the best way to set up a date field for data
 entry, like the forms where the / marks between the month/day, and the
 day/year are pre-populated?
 
 When I set the format of the field to date, it objects when I enter
 120504 or 12-05-04. It only wants 12/05/04. Speed of data entry is the
 objective here.
 
 Is there a clean way to do this?
 
 CFMX6.1 is the platform.
 
 TIA,
 Tim
 
 **
 This email and any files transmitted with it are confidential and
 intended solely for the use of the individual or entity to whom they
 are addressed. If you have received this email in error please delete it from 
 your system.
 
 This footnote also confirms that this email message has been swept for
 the presence of computer viruses.
 
 Thank You,
 Viahealth
 **
 
 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210933
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


re: search on house of fusion broken

2005-06-29 Thread dan martin
Mike, 
You asked for an example of search not working right. Well try finding my 
original post from a week ago. I cant.

Perhaps you could have a separate search that queries your db directly like you 
used to have at one time, so we can find stuff? Like searching by author or 
subject or message. The current search seems to be filtering out a lot, 
returning no hits most of the time.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210934
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: search on house of fusion broken

2005-06-29 Thread mayo
Mike,

First of all -- thank you for creating and moderating this listserv. I
have to second the point that the searches are not very useful.

It would be great to do searches on

-- subject line
-- from line
-- date range

I know you have tons on your plate but I'm sure you'll have tons of
volunteers to help with something like this. Count me in. At the very
least I'll bring the pizza.

Gil




-Original Message-
From: dan martin [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 29, 2005 6:45 PM
To: CF-Talk
Subject: re: search on house of fusion broken

Mike, 
You asked for an example of search not working right. Well try finding
my original post from a week ago. I cant.

Perhaps you could have a separate search that queries your db directly
like you used to have at one time, so we can find stuff? Like searching
by author or subject or message. The current search seems to be
filtering out a lot, returning no hits most of the time.



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210935
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: AutoTab Through Forms?

2005-06-29 Thread Matthew Walker
Check this out too:
http://www.pengoworks.com/workshop/js/mask/


-Original Message-
From: Claremont, Timothy [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 30 June 2005 9:41 a.m.
To: CF-Talk
Subject: AutoTab Through Forms?

Our data entry operator would like the screen to auto tab to the next
field when finished inputting data. This is especially true of date
fields. So, once two digits are entered into the month field, auto tab
to the day field, etc.


Barring that, what is the best way to set up a date field for data
entry, like the forms where the / marks between the month/day, and the
day/year are pre-populated?

When I set the format of the field to date, it objects when I enter
120504 or 12-05-04. It only wants 12/05/04. Speed of data entry is the
objective here.

Is there a clean way to do this?

CFMX6.1 is the platform.

TIA,
Tim

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please delete it
from your system.

This footnote also confirms that this email message has been swept for
the presence of computer viruses.

Thank You,
Viahealth
**




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210936
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: print to pdf

2005-06-29 Thread Pete Ruckelshaus
I'm using cfdocument for now, but it's really not ready for prime
time.  IMO it never should have made it to a release version of the
product.

In other words, I'd love to head what other people are using also.

Pete

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210937
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: print to pdf

2005-06-29 Thread Douglas Knudsen
but cfdocument does support images does it not? eh? And you can have chchart 
export to png or jpeg, eh? Me thinks you can use this to get what you need.
 DK

 On 6/29/05, dan martin [EMAIL PROTECTED] wrote: 
 
 What are people using for printing to pdf for cfmx7?
 
 I am in the process of upgrading from cf5 to cfmx7 and just finished 
 migrating all the broken cfgraphs to cfcharts only to find out that 
 cfdocument doesnt support cfchart. So, I need an external solution to 
 printing the screen to PDF. Any suggestions?
 
 The solution I am using on cf5 works great, but is not supported on the 
 latest version of windows.
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210938
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: embedded loops, trouble with

2005-06-29 Thread mayo
My fault for not explaining myself well -- I understand what my client
wants to do but I'm not a financial analyst so I'm not able to describe
it well.

What needs to be done is more than simply find 0, it is to arrive at
0 at the end of the loop. Dummy me, but I haven't looked to see if
there are any CFCs that do exactly this.

-- gil

My code is below. 

cfset P1=#P1#
cfset payment=#payment#
cfset R=#rate#
cfset I=P1*R/12
cfset Prin=payment-I
cfset P2=P1-Prin


table border cellpadding=3
tr
thP1/th
thR/th
thI/th
thPrin/th

/tr

cfloop condition=p1 gt 0
cfloop from=1 to=360 index=myIndex

cfset p1=p1-myIndex
tr
td#numberFormat(P1,9,999.99)#/td
td#numberFormat(R,9,999.99)#/td
td#numberFormat(I,9,999.99)#/td
td#numberFormat(Prin,9,999.99)#/td
td#numberFormat(p1,9,999.99)#/td
/tr

cfset p1 = p1 - 1
/cfloop

/cfloop

/table
/cfoutput



-Original Message-
From: Dave Francis [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 29, 2005 4:43 PM
To: CF-Talk
Subject: RE: embedded loops, trouble with

The way I understand it, a cfloop condition...  is right, but he needs
the
cfloop from=1 to=#totalMonths# index=somethingAppropriate inside
it.

cfloop condition=p1 gt 0
cfloop from=1 to=#totalMonths#
index=somethingAppropriate

/cfloop
cfset p1 = p1 - whatever !-- or inside the inner loop maybe??
--
/cfloop


-Original Message-
From: Eddie [mailto:[EMAIL PROTECTED]
Sent: Wednesday, June 29, 2005 4:19 PM
To: CF-Talk
Subject: Re: embedded loops, trouble with


On 6/29/05, mayo [EMAIL PROTECTED] wrote:
 I was asked to display financial calculations. It requires embedded
 loops and I've been spinning my wheels on this project.

 The first task is to keep going through a loop until one reaches an
 inputted number.

 EX: The mortgage will be paid off in [ 36 ] months.

 So the loop is

 cfloop from=1 to=#totalMonths# index=somethingAppropriate

 /cfloop

 Inside this loop there are several calculations. If at the end of
 #totalMonths# one of the calculations isn't equal to 0 (or another
 inputted number designated as p1) the loop has to be done again.

 So, inside loop (same as above)

 cfloop from=1 to=#totalMonths# index=somethingAppropriate

 cfset p1=p1-myIndex
.
#p1#
 /cfloop

 cfif p1 GT 1  // If p1 doesn't equal 0 do again.

 cfloop from=1 to=#totalMonths# index=somethingAppropriate

 cfset p1=p1-myIndex
.
#p1#
 /cfloop

 /cfif

I think a cfloop condition is more appropriate in your situation
than cfloop index. Something like this:

cfset x = 36
cfloop condition=x gt 0 
cfoutput#x#/cfoutput
cfset x = x - 1
/cfloop

You can add your calculation/condition inside the loop. Basically,
whenever x hits 0, the loop ends. So, if you do not make sure that x
will hit zero somehow, your loop will keep on looping until the end of
days. HTH.

--
Eddie.
http://awads.net/





~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210939
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF7 - 16 character limit on SQL passwords

2005-06-29 Thread Paul Hastings
Dave Watts wrote:
 Well, CF doesn't directly support trusted connections, but the latest
 DataDirect drivers do support them, so there may be a way to get them going
 by manually writing your JDBC URL.

if i'm not mistaken, i think the latest cf hotfix updated the db drivers 
to support trusted connections.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210940
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CF7 - 16 character limit on SQL passwords

2005-06-29 Thread Dave Watts
 if i'm not mistaken, i think the latest cf hotfix updated the 
 db drivers to support trusted connections.

I know that the latest DataDirect drivers do support trusted connections.
However, there's no setting in the CF Admin to enable that instead of a
native SQL login. I'm too lazy right now to try to get it working, though.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized 
instruction at our training centers in Washington DC, Atlanta, 
Chicago, Baltimore, Northern Virginia, or on-site at your location. 
Visit http://training.figleaf.com/ for more information!


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210941
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Fusebox Methadology Question

2005-06-29 Thread Sean Corfield
On 6/29/05, S. Isaac Dealey [EMAIL PROTECTED] wrote:
 (forgive me if I mangle the XML, I haven't been working with FB
 recently)
 
 fuseaction name=x
 set variable=request.FA value=someFuseAction /
 do action=#request.FA# /
 /fuseaction

do is a compile-time construct so you cannot use a variable there.
-- 
Sean A Corfield -- http://corfield.org/
Team Fusebox -- http://fusebox.org/
Got Gmail? -- I have 50, yes 50, invites to give away!

If you're not annoying somebody, you're not really alive.
-- Margaret Atwood

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210942
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54