RE: I need a host. Intermedia testimonials

2000-08-08 Thread Tom Nunamaker

I have a Shanje account and it's marginally OK.  If you have a low
volume site and don't mind it being offline briefly twice per day when
he re-sync's his servers, and don't mind not being able to install
CFX tags and don't mind sharing a box with 13,000 domains that can
give 4000-5000 ms query times with Access databases, and don't mind
not having SQL server, then it's OK.   (Remember I said LOW volume
web sites).  For development with Access, it's great.  For email, it's
normally OK but I've had reports of people trying to send me email that
gets bounced.  

Overall, you get what you pay for.  If you can live with these 
restrictions, then it makes sense.  It's really great for domain
parking.

Tom Nunamaker
[EMAIL PROTECTED]


In article [EMAIL PROTECTED], you 
say...
 I was pretty amazed when i checked out what they're offering.  After i
 picked my chin up off my keyboard and backspaced over all the spaces it
 caused i had wondered about their reliability.  Has anyone used these guys?
 How reliable are they?  Being that all supportis via email, how good is the
 response time?
 
 -Original Message-
 From: paul smith [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, August 08, 2000 1:30 AM
 To: [EMAIL PROTECTED]
 Subject: RE: I need a host. Intermedia testimonials
 
 
 No I don't use them.  But I will in the future.
 I am constantly impressed with Shiloh and the
 technology he's developed to deliver reliability.
 And the price is super.
 
 best,  paul
 
 At 01:30 AM 8/8/00 -0400, you wrote:
 paul... do you use shanje?  how are they?
 
 -Original Message-
 From: paul smith [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, August 08, 2000 12:56 AM
 To: [EMAIL PROTECTED]
 Subject: Re: I need a host. Intermedia testimonials
 
 
 Check out http://www.shanje.com/
 
 best,  paul
 
 At 09:04 PM 8/7/00 -0500, you wrote:
  I need a host. and I gather from cftalk that Intermedia is the winner. I
 am
  interested in hearing testimonials or other alternatives.
  
  1 client, 10 domains and growing.
  
  Thanks
  Eric Dawson
 
 ---
 -
 --
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Urgent: Sql 6.5 Guru Question

2000-08-08 Thread Ryan Hill

Follow-up... nevermind... I decided to go with the second option of using
bcp to import the data into a temp table and then updating the appropriate
fields in the master table.  I received only one response from someone on
the list, thanks for your reccomendations - I received the bcp suggestion
from a few other people as well, it was easier to implement than I thought.

Thanks,
Ryan

-Original Message-
From: Ryan Hill 
Sent: Monday, August 07, 2000 1:53 PM
To: '[EMAIL PROTECTED]'
Subject: Urgent: Sql 6.5 Guru Question


Hello everyone,

Got a problem here that I can't seem to figure out.  I have a tab-delimited
text file containing 3 cols, (can_id, votes, % votes) that I need to import
into a SQL 6.5 table containing these three columns (and others) that needs
to be updated on a regular basis - updating existing records, not inserting
new ones.

My first guess would have been bcp, but as near as I can tell, this only
works on data copying operations, so it won't allow me to perform an UPDATE
type of action on the table I want to update.  I'm used to working with SQL
7.0, which would let me save this as a DTS package, so my t-sql stored proc
syntax is a little rough.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Allaire logos

2000-08-08 Thread Brian Mitter

Has anyone got the url where I can download the Allaire logos in eps format
from their site please? I had it bookmarked a while ago but seem to have
lost it and searching the site has turned up nothing.
Thanks


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Allaire logos

2000-08-08 Thread Erki Esken

http://www.allaire.com/handlers/index.cfm?ID=9359Method=Full

Erki


 Has anyone got the url where I can download the Allaire logos in
 eps format from their site please? I had it bookmarked a while
 ago but seem to have lost it and searching the site has turned
 up nothing.
 Thanks



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Multiple value Select

2000-08-08 Thread Mark Armendariz

I did this sort of thing for an intranet i'm working on with selected
company newsgroups... The best way to do it is with a database of your
finance types.  This will allow you to updae the select statement without
changing the hard coding.  So the form will always be right.  Query that
database and the user database.  In the user database, you will want to save
a comma delimited list of the finance types they are assigned for.  When you
bring up the select, you can scroll through all the finance types, and if
the user had any in his/her list, they will set the FinanceSelected variable
to 'selected.'  if they're not in the list, FinanceSelected will be blank.

Hope this helps...

CFQuery Name="GetFinances" datasource="#Application.datasource#"
  SELECTFinanceName
  FROM  tblFinances
  ORDER By  FinanceName
/CFQuery

CFQuery Name="GetCustomer" datasource="#Application.datasource#"
  SELECTCustomerName,
Address,
Finances!--- This Field is a comma delimited list of the 
user's
finances ---
  FROM  tblCustomers
  WHERE CustomerID = #Attributes.CustomerID#
/cfgquery


Finances:br

Select Name="Finances" size="#GetFinances.RecordCount#" multiple
  CFLoop query="Finances"
CFIF ListContains(GetCustomer.Finances,#FinanceName#)
  CFSET FinanceSelected = "Selected"
CFELSE
  CFSET FinanceSelected = ""
/cfif
Option #FiannceSelected# value="#FinanceName#"#FinanceName#/option
  /cfloop
/select



Mark Armendariz
Righteous Design
www.sorighteous.com
[EMAIL PROTECTED]


-Original Message-
From: Gieseman, Athelene [mailto:[EMAIL PROTECTED]]
Sent: Monday, August 07, 2000 6:34 PM
To: [EMAIL PROTECTED]
Subject: Multiple value Select


I'm trying to set up a CFSELECT using the SELECTED option.  I need to have
the CFSELECT set up as multiple since more than one option is permitted.
However, I can never seem to get the SELECTED option to properly highlight
the options that are already stored in the record.  (In other words, I want
to create an edit screen where the previously stored values are preselected
in this control.)  Any thoughts on what I may be doing wrong?  The code for
my select follows:  (Note that ViewGrid is a grid from which the user
previously selected this record.  I've also tried doing this from a query
with the same result - nothing is selected.)

cfselect name="FinanceType" size="2" selected="#ViewGrid.FinanceType#"
multiple
option value="Single Family Housing"Single Family Housing/option
option value="501(c)(3)"501(c)(3)/option
option value="Hospital Revenue"Hospital Revenue/option
option value="Leasehold Revenue"Leasehold Revenue/option
option value="Multifamily Housing"Multifamily Housing/option
option value="General Obligation"General Obligation/option
option value="NID"NID/option
option value="Special Obligation"Special Obligation/option
option value="Industrial Development"Industrial Development/option
option value="TIF"TIF/option
option value="TDD/TC"TDD/TC/option
option value="Other"Other/option
/cfselect

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Frames

2000-08-08 Thread James Taavon

Art,

I must have missed something...

I cut and paste the script, made the changes to include the frame name
and cfm file. No changes. The BODY onload tag goes inthe frame i wish to
refresh, correct?

James


Art Broussard wrote:
 
 How do I refresh the contents of one frame while performing an action in
 another? I am updating a column in my database in one frame and I have a
 list of data in another frame. When updating the data I want the other
 frame to reflect the change. Does that make sense?
 --
 
 
 I am doing the very same thing.
 
 Try this.
 
 SCRIPT LANGUAGE="JavaScript"
 !-- Begin
 function refreshFrame() {
 top.frames['name_of_frame'].window.location.href = "page_to_load.cfm";
 }
 //  End --
 /script
 
 body onload="refreshFrame()"
 
 
 Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
 
 --
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Nested CFOUTPUTs

2000-08-08 Thread Philip Arnold - ASP

 Right. That would work. I can
 put an open CFOUTPUT at the top and a close /CFOUTPUT
 at the bottom,
 remove any CFOUTPUT /CFOUTPUT that already exist in
 the middle,
 and fix any CFOUTPUT QUERY='queryname to be
 /CFOUTPUTCFOUTPUT QUERY='queryname.

 Inside CFINCLUDE files will I be inside a CFOUTPUT or not?
 ie:
 CFOUTPUT ... CFINCLUDE TEMPLATE="insidefile" ... /CFOUTPUT

 is insidefile inside a CFOUTPUT or not?

 Has anybody had experience with the efficiency of having the
 entire file be substituted inside a CFOUTPUT as compared to a
 hundred open close
 CFOUTPUT../CFOUTPUT...CFOUTPUT.../CFOUTPUT...etc...?

OK, this would slow down the page as CF has to interpret the who template
rather than just the bits you want

For some strange reason, CFInclude seems to ignore CFOutput rules, I've
tested outputting some stuff, then CFInclude a template with a CFOutput and
/CFOutput in it and it ran properly, so I really don't know how the logic
works

Also,
 and fix any CFOUTPUT QUERY='queryname to be
 /CFOUTPUTCFOUTPUT QUERY='queryname.
Why not just use a CFLoop? they work within CFOutput

The other big thing about CFOutputting the whole template is white-space -
it'd waste an awful lot if you're doing calculations, and before it's
raised, I prefer to keep the auto-white space remover off, it slows down the
server!

Philip Arnold
ASP Multimedia Limited
T: +44 (0)20 8680 1133

"Websites for the real world"

**
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 notify
the system manager.
**


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: How to check a password is only alpha characters?

2000-08-08 Thread Deanna L. Schneider

Michael,
There's a nifty custom tag in the allaire gallery called restricttextinput
that will do what you're needing with javascript prior to their even
submitting the form. You can indicate alpha, numeric, or alphanumeric, as
well as indicating additional allowed characters.

-Deanna




Deanna Schneider
Interactive Media Developer
UWEX Cooperative Extension Electronic Publishing Group
103 Extension Bldg
432 N. Lake Street
Madison, WI 53706
(608) 265-7923



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: CFTRANSACTION

2000-08-08 Thread Rick Osborne

See your Transact-SQL reference for BEGIN TRAN and END TRAN.

Basically, it's a way to make sure that either *everything* in your batch of
(a dozen, two dozen, 2, whatever) SQL statements gets correctly executed, or
the db makes it look like nothing ever happened.

For instance, say I have to insert rows into 4 different tables every time I
want to add new products to my db.However, because of the way the schema
is arranged, I really need to have it all happen at once, instead of 4
seperate updates.  (Say you have keys that rely on eachother or something
silly like that.)  Also, if you are working in a multithreaded environment,
you have to worry about concurrency.

So, if one of my inserts fails for any of those reasons (or whatever other
reason) I need to remove the rows I added in the previous inserts so that my
db stays in a consistent state.  This is why I would use a transaction.  If
an error occurs while you are in the middles of a transaction, you can just
tell the db to pretend like you never even started the entire transaction.
Poof.  Gone like magic.  You don't have to manually remove the rows.
(Indeed, they aren't even there to be removed.)

Does that help?

-Rick

-Original Message-
From: Chad [mailto:[EMAIL PROTECTED]]
Sent: Monday, August 07, 2000 3:05 PM
To: [EMAIL PROTECTED]
Subject: CFTRANSACTION


Can someone explain what the book means by "CFTRANSACTION implements
transaction,and rollback processing."???

What is roll back processing?

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: How to check a password is only alpha characters?

2000-08-08 Thread Rick Osborne

!---
  Eliminate anything that isn't alphanumeric, then check to see if it's the
same thing
---
CFIF REReplace(newpassword1,"[^a-zA-Z0-9]","","ALL") IS newpassword1
  !--- ... ---
/CFIF

But, as Perl says, there's more than one way to do it ...

-Rick

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
Behalf Of Michael Kear
Sent: Tuesday, August 08, 2000 12:54 AM
To: [EMAIL PROTECTED]
Subject: How to check a password is only alpha characters?


Uh oh. I just bit off more than I can chew here I think.

I'm checking a submitted password for validity before updating my user
database. One of the requirements is that the password be made up of only
the characters a-z, A-Z and 0-9.  In other words, no punctuation, dashes,
underscores, spaces etc.

Can someone please tell me what code to use to test variable newpassword1
for this?

Thanks,

Mike Kear
AFP Web Development
Windsor, NSW, Australia.





--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Multiple value Select

2000-08-08 Thread Larry Juncker

If you are going to list them each manually like you have below, You could
do something like:

cfselect name="FinanceType" size="2" multiple
option value="Single Family Housing" CFIF
ListContains(Viewgrid.FinanceType, "Single Family
Housing")SELECTED/CFIFSingle Family Housing/option
option value="501(c)(3)"CFIF ListContains(Viewgrid.FinanceType,
"501(c)(3)")SELECTED/CFIF501(c)(3)/option
option value="Hospital Revenue"CFIF ListContains(Viewgrid.FinanceType,
"Hospital Revenue")SELECTED/CFIFHospital Revenue/option
option value="Leasehold Revenue"CFIF ListContains(Viewgrid.FinanceType,
"Leasehold Revenue")SELECTED/CFIFLeasehold Revenue/option
option value="Multifamily Housing" CFIF ListContains(Viewgrid.FinanceType,
"Multifamily Housing")SELECTED/cfifMultifamily Housing/option
option value="General Obligation" CFIF ListContains(Viewgrid.FinanceType,
"General Obligation")SELECTED/cfifGeneral Obligation/option
option value="NID" CFIF ListContains(Viewgrid.FinanceType,
"NID")SELECTED/cfifNID/option
option value="Special Obligation" CFIF ListContains(Viewgrid.FinanceType,
"Special Obligation")SELECTED/cfifSpecial Obligation/option
option value="Industrial Development" CFIF
ListContains(Viewgrid.FinanceType, "Industrial
Development")SELECTED/cfifIndustrial Development/option
option value="TIF" CFIF ListContains(ViewGrid.FinanceType,
"TIF")Selected/cfifTIF/option
option value="TDD/TC" CFIF ListContains(Viewgrid.FinanceType,
"TDD/TC")SELECTED/cfifTDD/TC/option
option value="Other" CFIF ListContains(Viewgrid.FinanceType,
"Other")SELECTED/cfifOther/option
/cfselect

Hope this helps
H   Larry Juncker
 L  Senior Cold Fusion Programmer
  I Heartland Communications Group
  Internet Division

-Original Message-
From: Gieseman, Athelene [mailto:[EMAIL PROTECTED]]
Sent: Monday, August 07, 2000 5:34 PM
To: [EMAIL PROTECTED]
Subject: Multiple value Select


I'm trying to set up a CFSELECT using the SELECTED option.  I need to have
the CFSELECT set up as multiple since more than one option is permitted.
However, I can never seem to get the SELECTED option to properly highlight
the options that are already stored in the record.  (In other words, I want
to create an edit screen where the previously stored values are preselected
in this control.)  Any thoughts on what I may be doing wrong?  The code for
my select follows:  (Note that ViewGrid is a grid from which the user
previously selected this record.  I've also tried doing this from a query
with the same result - nothing is selected.)

cfselect name="FinanceType" size="2" selected="#ViewGrid.FinanceType#"
multiple
option value="Single Family Housing"Single Family Housing/option
option value="501(c)(3)"501(c)(3)/option
option value="Hospital Revenue"Hospital Revenue/option
option value="Leasehold Revenue"Leasehold Revenue/option
option value="Multifamily Housing"Multifamily Housing/option
option value="General Obligation"General Obligation/option
option value="NID"NID/option
option value="Special Obligation"Special Obligation/option
option value="Industrial Development"Industrial Development/option
option value="TIF"TIF/option
option value="TDD/TC"TDD/TC/option
option value="Other"Other/option
/cfselect

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: I need a host. Intermedia testimonials

2000-08-08 Thread Deanna L. Schneider

I just started using www.iarna.net. It's cheap and has been pretty reliable,
though so far I'm working with a pretty low volume site, that's still in
testing stage(www.etalers.com).

But, it might be worth checking out. (Caveat - I haven't used their email at
all.)

-Deanna




Deanna Schneider
Interactive Media Developer
UWEX Cooperative Extension Electronic Publishing Group
103 Extension Bldg
432 N. Lake Street
Madison, WI 53706
(608) 265-7923



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: OACFUG August Meeting Tonight (Sorry for late reminder!)

2000-08-08 Thread Sam Coe

Angelo - How are you?  Any interest in the Allaire SE role in Ohio?  High
travel, but interesting.

Sales Engineer, Ohio
Responsible for supporting Allaire's inside and field sales representatives,
demand generation partners and demand fulfillment partners. This will
include conducting on-site briefings, assisting with proof-of-concept
development, troubleshooting web database application development, and
providing general support and training on Allaire products. 

Bachelor's degree and 5+ years successful experience in field systems or
sales engineer capacity in software application development. Strong
technical proficiency in software programming, development life cycle, HTML,
web page design, and network architecture essential. Demonstrate excellent
communication and troubleshooting skills along with a proactive,
sales-oriented personality. Understanding of UNIX and Windows market. 

On vacation in August - keep in touch,
-Sam

Samuel Coe
IT Strategic Consultant,
Marketing Programs
617-219-2133
[EMAIL PROTECTED]


-Original Message-
From: Angelo McComis [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 9:28 AM
To: [EMAIL PROTECTED]
Subject: OACFUG August Meeting Tonight (Sorry for late reminder!)
Importance: High


Next Meeting: August 8, 2000 @ 6:30pm


On the agenda:

CF Advanced Security
Ever wonder about sandbox security? What about contexts and realms? Find out
all about how to secure your site and provide authentication and
authorization.

Goodies!
We got goodies... show up tonight if you'd like to get some!

Your CF Questions Answered
As always, we will have our roundtable of experts on hand to help you with
your toughest coding challenges.

Got Suggestions?
Send 'em here:  [EMAIL PROTECTED]


Regular meetings are held on the second Tuesday of each month, at 6:30 pm at
OARnet, 1480 W. Lane Ave.

About OACFUG
OACFUG was formed in September of 1997. Meetings started off being held at
the Chemical Abstracts building and later moved to OARnet. The volunteer
staff consists of local CF experts and local Allaire Alliance partners.

What We Do
OACFUG exists to provide a community environment to local CF developers. We
are not sponsored by Allaire, but we are listed as an official group on the
Allaire Web Site. We receive special discounts on third party products, such
as the Cold Fusion Developer Journal as well as special beta invitations.

About Our Meetings
Our meetings are held once a month, on the second Tuesday, at 6:30pm, and
are held at OARnet's facility on Lane Avenue. Meetings consist of timely
topics ranging from the latest security bulletins to new tricks to
discussions on the latest features, tags, and more. Also, we welcome all
members to use the meeting as a resource by bringing your CF questions for
our local experts to ponder. From time to time we will bring in a special
guest speaker. Admission and Parking are always FREE. Members are welcome to
submit topics in advance of the meeting, or if a member has something he/she
thinks would be beneficial to show the group, they are welcome to do a
presentation.
Driving Directions are on the web site.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Null Values check 2

2000-08-08 Thread Dempsey, Timothy F.

Aslam,

I think what you want is:

cfif NOT IsDefined("tempValue") ...  

I don't believe there is the equivalent of SQL's NULL in CF.

The above will determine if there is such an entity called tempValue
and if there is, there is stioll a possibility that it could be "" or 0.


-- Tim Dempsey


-Original Message-
From: aslam bajaria [mailto:[EMAIL PROTECTED]]
Sent: Monday, August 07, 2000 6:06 PM
To: [EMAIL PROTECTED]
Subject: Null Values check 2


When I used the statement :
cfif tempValue is NULL
...
/cfif

I got the following error. Is there a different way of
checking for NULL?!

Error Occurred While Processing Request
Error Diagnostic Information
Error resolving parameter NULL


ColdFusion was unable to determine the value of the
parameter. This problem is very likely due to the fact
that either: 

You have misspelled the parameter name, or 
You have not specified a QUERY attribute for a
CFOUTPUT, CFMAIL, or CFTABLE tag. 


--- Marcus [EMAIL PROTECTED] wrote:
  Hi All,
  
  I am getting an error when I write a code like:
  
  cfif tempValue eq null
  
  ...
  
  /cfif
  
  If I write
  
  cfif tempValue eq ""
  ...
  /cfif
 
 Null values can't use EQ or =, you need to ask 
 
 cfif tempValue is NULL


--
 Archives:

http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit

http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
 or send a message to
 [EMAIL PROTECTED] with 'unsubscribe'
 in the body.


__
Do You Yahoo!?
Kick off your party with Yahoo! Invites.
http://invites.yahoo.com/

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: I need a host. Intermedia testimonials

2000-08-08 Thread Jake Hileman

I know Shiloh, we both started our hosting business at the same time,
obviously he got much larger then we did at a much quicker pace.  He's a
great guy and has always helped me when I needed it, but you guys are
correct, over the last year his service has deteriorated greatly.   Such a
sad thing to see.

:-(

jake
- Original Message -
From: "Bud" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, August 08, 2000 6:10 AM
Subject: Re: I need a host. Intermedia testimonials


 On 8/7/00, Eric Dawson penned:
 I need a host. and I gather from cftalk that Intermedia is the winner. I
am
 interested in hearing testimonials or other alternatives.

 To be perfectly honest, when I signed on with them a year ago they
 were wonderful. Their tech support and their console are still among
 the best in the business, although to try and use it over the last 6
 months is enough to make you lose your hair. It occasionally takes me
 an hour just to set up an e-mail account. Click, go make a ham
 sandwich, come back, still spinning. Click again, go off on another
 project...

 Their servers are far too overloaded with CF sites. Where html pages
 will server right up sometimes, CF templates take anywhere from 30
 seconds to load up until just timing out. The performance, in my
 opinion, since around the first of the year has been abysmal at best.
 Although I never host new sites with them any more, I do work for a
 company it does. It's quite an embarassment when I have to walk a
 client through the administration of a site i build only to have them
 ask me "Why won't the pages load". I've gone so far as to finally
 tell the company that I won't build any more CF sites for them to be
 hosted there. I can't in good conscience lie to the customer and tell
 them that it's their connection, or I don't know what the problem is.
 I do know. Too many CF sites coupled with unlimited bandwidth and
 datasources.

 And although their 5.00 per month domains at unlimited bandwidth is a
 good deal, you don't get your own domain setip. All the 5.00 domains
 run off a main domain then are redirected to the site directory with
 an asp or CF script. Tough to do search engines. Cleints want to know
 why they have an additional directory tacked onto the end of their
 URL. After awhile, when you do a search for a site, your site will
 come up in the search engines... UNDER ONE OF THE OTHER DOMAINS ON
 THE SERVER! :)

 Just my experience. I still hear people saying they have good
 experiences with them. I went from having over 20 sites with them
 down to my current 2, and they'll be off of there soon.
 --

 Bud Schneehagen - Tropical Web Creations

 _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
 ColdFusion Solutions / eCommerce Development
 [EMAIL PROTECTED]
 http://www.twcreations.com/
 954.721.3452
 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Tab Pages

2000-08-08 Thread jeff tapper

Spectra has a custom tag to handle these natively.  Its certainly possible 
to create one in straight CFML, although I've not seen it.

At 02:38 PM 8/7/00 -0400, you wrote:
Does anybody know if I can create Tab Pages with CF and if there are any
code snippets for that puprose?

Natalie

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or 
send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
the body.

==
Jeff Tapper
[EMAIL PROTECTED]
Team Manager / Lead Applications Architect
http://www.gtriad.com
G. Triad
==

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



new worried

2000-08-08 Thread megan sherman

Hi,
I'm new to the list. Can somebody help me? I want to list the contents
of one table only where the primary key is paired with a client's
specific session variable from another table. It's like a real simple
shopping cart concept. I'm trying to understand "applications", and I
think when I use one I can spawn a session variable that is specific to
a client. I have listed some of the code for this below. In the
"mq_our_select.cfm" template a client can choose a mala (worry beads --
sort of a necklace) from a table in "data" called "mq_our". The next
template after making the choice should display the details of the
chosen mala as shown in the third file “m1_our_list.cfm.”. But I want
that third file to do more. I want it to search the second table called
“sessions”, which contains pairings of sessionID’s with previously
chosen malaID’s. If a sessionID match is found, it means the customer
chose some malas earlier in the session, and these should also be
displayed. How do I accomplish this? Essentially, the pseudo code for
the query I want for that third file would be something like
CFQUERY DATASOURCE="data" NAME="mq_our"
SELECT prod_num,bead
FROM mq_our FOR all malaID in the “sessions” table where the sessionID
matches this current sessionID
/CFQUERY

Thanks in advance for any help!
Megan

# application.cfm for malaquest 
# Define the application parameters 
cfapplication name="malaquest"
   clientmanagement="Yes"
   sessionmanagement="Yes"
   sessiontimeout="#CreateTimeSpan(0,0,30,0)#"
   applicationtimeout="#CreateTimeSpan(1,0,0,0)#"
# Initialize application variables 
cfif not isDefined("session.num")
 cfset session.num = 1
 cfset application.currentUser = iif(isDefined("client.clientName"),
"client.clientName", DE("guest from #CGI.REMOTE_ADDR#"))
/cfif
cfif not isDefined("session.addToken")
 cfset session.addToken = DE("#client.URLToken#")
/cfif

# mq_our_select.cfm 
CFQUERY DATASOURCE="data" NAME="mq_our"
 SELECT malaID, pic
 FROM mq_our
/CFQUERY
html
body
table width="100%"
tr
CFOUTPUT QUERY="mq_our"
td
A HREF="mq_our_list.cfm?malaID=#malaID#"
 img src="#pic#" border="0"/A
/td
/CFOUTPUT
/tr
/table
/body
/html

# mq_our_list.cfm 
CFQUERY DATASOURCE="data" NAME="mq_our"
SELECT prod_num,bead
FROM mq_our
WHERE malaID = #malaID#
/CFQUERY
html
body
CFOUTPUT QUERY="mq_our"
BProduct Number:/B #prod_num#BR
BBead:/B #bead#
/CFOUTPUT
/body
/html


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: new worried

2000-08-08 Thread Anthony Geoghegan

Hi Megan,

You said:
|CFQUERY DATASOURCE="data" NAME="mq_our"
|SELECT prod_num,bead
|FROM mq_our FOR all malaID in the “sessions” table where the sessionID
|matches this current sessionID
|/CFQUERY

You could try something like this.

# mq_our_list.cfm 
CFQUERY DATASOURCE="data" NAME="mq_our"
SELECT prod_num,bead
FROM mq_our
WHERE malaID IN (SELECT malaID FROM sessions WHERE SessionID =
'#SessionID#')
/CFQUERY

|Thanks in advance for any help!
|Megan

No bother.

Regards,
Anthony Geoghegan
Lead Developer
Ireland Film and Television Net
26 South Frederick Street
Dublin 2
Ireland
Tel: +353 1 671 3664
Fax: +353 1 671 0763
Web: www.iftn.ie www.wow.ie
mailto:[EMAIL PROTECTED]

NOTICE:
This communication is confidential.  The copyright in this communication
belongs to Ireland Film  Television Net (IFTN) or a third party.

If you are not the intended recipient of this communication please delete
and destroy all copies and telephone IFTN on +353 1 671 3664 immediately.
If you are the intended recipient of this communication you should not copy,
disclose or distribute this communication without the authority of IFTN.

Any views expressed in this communication are those of the individual sender
except where the sender specifically states those are of view of IFTN.

Except as required by law IFTN does not represent, warrant, and/guarantee
that the integrity of this communication has been maintained or that the
communication is free of virus, interception or interference.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRstsbodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Upgrading SQL 6.5 - 7.0?

2000-08-08 Thread c talk

Ben

Thanks for your comments. I feel more confident heading into this project.

Thanks,

* John *


--- "Benjamin S. Rogers" [EMAIL PROTECTED] wrote:
 All in all, it was one of the smoothest upgrades (of that relative
 magnitude) I've ever done. We upgraded about 20 or so databases of varying
 size and complexity. The only issues we ran into were the fault of bad
 programming on the developer's part.
 
 Some badly designed SQL Queries quit running after the upgrade. On the
 average, each query took only a moment to fix. For instance, the SQL Server
 7 syntax validator seems to be a little more judicious about what it will
 let pass: SQL Server 6.5 only seems to check whether or not a character,
 word or phrase is allowed but not necessarily the syntax in which it is used
 (e.g. stray semi-colons).
 
 The only other issue we had was also the fault of bad programming on the
 developer's side. Some of our developers got into the bad habit of using
 some reserved words. If I remember correctly, SQL Server prefixed an
 underscore to column names named after a word that SQL Server 7 put into use
 (e.g. "Date"). Where we got hit the hardest was with a table that was named
 "Logins." I don't believe "Logins" was on the reserved list, but SQL Server
 7 adds several more system tables to each database, one of which is called
 "Logins." In this instance, the data simply did not transfer. We had to
 import the data separately into a table of a different name, change a few
 foreign key constraints, and change the SQL queries that used the table.
 None of which was terribly difficult.
 
 Anyway, everything you need to perform the upgrade should be on the SQL
 Server 7 CD ROM. After the upgrade, you'll just have to test your sites and
 monitor the ColdFusion error logs to determine what errors are occurring
 because of the upgrade. The SQL Server upgrade utility will notify you upon
 completion if any data fails to transfer from SQL Server for whatever
 reason. I believe it pipes it out to a text file, if I remember correctly.
 
 In any case, go for it. In our collective opinion, SQL Server 7 is a vastly
 superior product. In our situation it solved far more problems than it
 caused.
 
 Benjamin S. Rogers
 Web Developer, c4.net
 voice: (508) 240-0051
 fax: (508) 240-0057
 
 -Original Message-
 From: JB Mentzer [mailto:[EMAIL PROTECTED]]
 Sent: Monday, August 07, 2000 3:59 PM
 To: [EMAIL PROTECTED]
 Subject: Upgrading SQL 6.5 - 7.0?
 
 
 Hi
 
 Has anyone on list overseen a project to upgrade a CF site's SQL backend
 from v6.5 to 7.0?
 
 I've been asked to quote a price for this project ... and haven't a clue
 what this entails (I'm familiar with SQL 7, but not 6.5)
 
 Any advice/related experience would be greatly appreciated.
 
 * john *
 
 
 --
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.
 

--
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in the
body.


__
Do You Yahoo!?
Kick off your party with Yahoo! Invites.
http://invites.yahoo.com/
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Frames and Session Management

2000-08-08 Thread Robert Everland

Is it impossible to have cookieless sessions in frames or is it
becuase I could be doing something wrong or is there a workaround. I have
asked this question for over a month now. Does anyone know? Dave?


Robert Everland III
Web Developer
Dixon Ticonderoga

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Query Delete?

2000-08-08 Thread Planet CF

Hi,

Is there a custom tag somewhere out there, that
deletes a column from  a query?

Thanks
Kedar Desai
Differential Technologies
Fairfax, VA


__
Do You Yahoo!?
Kick off your party with Yahoo! Invites.
http://invites.yahoo.com/
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



CF ODBC Admin

2000-08-08 Thread Duane Boudreau

Can anyone tell me the purpose of the long text buffer size field in the CF
admin?

I think its a work around for the CF 64k SQL string limitation. Am I
correct?

Duane Boudreau,
eMPower Project Manager
Director, Web Technologies
Ektron, Inc.
http://www.ektron.com
5 Northern Blvd, Suite 6
Amherst, NH 03031
Tel: 603-594-0249 x114
Fax: 603-594-0258

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: I need a host. Intermedia testimonials

2000-08-08 Thread Dan O'Keefe

- I like www.powersurge.net
- 
- I use them a lot and they're very good in all areas.
- 
- Rob


Rob,

This URL does not work.

--
Dan O'Keefe
TriPoint Technologies
[EMAIL PROTECTED]
954.501.3113 


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: I need a host. Intermedia testimonials

2000-08-08 Thread Gavin Myers

2 Months ago i would have said Interland... but they started to move crap
around and our database hasn't been put back on our server YET... its been
over a month now with no db, I'm pretty pissed at it, and maybe its just one
of those things. Their price is ok, the site is ok, they have sql.

-Original Message-
From: Eric Dawson [mailto:[EMAIL PROTECTED]]
Sent: Monday, August 07, 2000 9:04 PM
To: [EMAIL PROTECTED]
Subject: I need a host. Intermedia testimonials


I need a host. and I gather from cftalk that Intermedia is the winner. I am 
interested in hearing testimonials or other alternatives.

1 client, 10 domains and growing.

Thanks
Eric Dawson

Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: I need a host. Intermedia testimonials

2000-08-08 Thread Wayne, Kurt


Here's www.america.net .  They've had CF service since 1998, I believe, but
my wife and I are just now getting started with them on it for our personal
business, so I can't give you an eyewitness account of how easy it is to
work with them on this.


-Original Message-
From: Gavin Myers [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 10:53 AM
To: '[EMAIL PROTECTED]'
Subject: RE: I need a host. Intermedia testimonials


2 Months ago i would have said Interland... but they started to move crap
around and our database hasn't been put back on our server YET... its been
over a month now with no db, I'm pretty pissed at it, and maybe its just one
of those things. Their price is ok, the site is ok, they have sql.

-Original Message-
From: Eric Dawson [mailto:[EMAIL PROTECTED]]
Sent: Monday, August 07, 2000 9:04 PM
To: [EMAIL PROTECTED]
Subject: I need a host. Intermedia testimonials


I need a host. and I gather from cftalk that Intermedia is the winner. I am 
interested in hearing testimonials or other alternatives.

1 client, 10 domains and growing.

Thanks
Eric Dawson

Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Listing all variables in a scope

2000-08-08 Thread Russel Madere

I'm having a mental block right now.  I looked in the documentation and in 
the archives, but can't find the answer.

Is there a way to list the values of the variables in the Variables 
scope?  I know in the Form scope I can use FileNames and in a query scope I 
can use ColumnList.  Is there something similar for the Variables Scope?

Thanks,

Russel

   Russel Madere, Jr. Senior Web Developer
   ICQ: 5446158   http://www.TurboSquid.com

Just what the heck is a Turbo Squid?!?!?!?!?!? Ask me...


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



not seeing debug information ...

2000-08-08 Thread c talk

Hi

I've put my PC's IP in the CF Admin Debug settings window. When I view pages,
none of the debug info displays. When I remove all of the IP addresses, the
debug info displays. When I put my IP in alone, no dice.

FWIW, the CF Server can ping my PC by name.

Any ideas why this is?

Thanks,

* john *

__
Do You Yahoo!?
Kick off your party with Yahoo! Invites.
http://invites.yahoo.com/
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



[ANN] Kansas City CFUG Meeting is TONIGHT! Learn about JRun...

2000-08-08 Thread ron

Hi again everyone,

Tonight's KCFusion meeting is tonight, Tuesday, August 8, from 7-9:00pm
at UMKC (http://kcfusion.org for the map).

Come early at 6:45 for pizza, soft drinks, and a nice selection of
giveaways from Allaire (1st 20 people get Allaire t-shirts). And put
your name in the hat for a FREE COPY of JRUN!

Then stay for a presentation of Allaire JRun by one of its principal
developers, Tom Reilly. He was a member of the Live Software team that
developed JRun, and was responsible for the design and implementation of
the JRun JSP implementation.

-Introduction to JRun 3.0
-JSP debugging with JRun Studio
-Profiling servlets with the interceptor
-Load balancing/failover with ClusterCats
-QA bring your coding questions

Social hour(s) to follow at the Mill Creek Brewery in Westport.

All the Best,

Your KCFusion Directors
[EMAIL PROTECTED]
Ron Allen Hornbaker, Bryan Laplante and Robin Greenhagen





--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: I need a host. Intermedia testimonials

2000-08-08 Thread Raymond K. Camden

When I hear a story like this, I have to wonder... have you talked to a
human @ Interland who can explain why such a simple thing hasn't been done
yet? Have you threatened to stop payment? I can't imagine waiting more then
24 hours for something like this to get fixed.

===
Raymond Camden, Cold Fusion Jedi Master for Syntegra (www.syntegra.com)
Allaire Certified Instructor and Member of Team Allaire

Email   : [EMAIL PROTECTED]
ICQ UIN : 3679482

"My ally is the Force, and a powerful ally it is." - Yoda


 -Original Message-
 From: Gavin Myers [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, August 08, 2000 10:53 AM
 To: '[EMAIL PROTECTED]'
 Subject: RE: I need a host. Intermedia testimonials


 2 Months ago i would have said Interland... but they started to move crap
 around and our database hasn't been put back on our server YET... its been
 over a month now with no db, I'm pretty pissed at it, and maybe
 its just one
 of those things. Their price is ok, the site is ok, they have sql.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: I need a host. Intermedia testimonials

2000-08-08 Thread Raymond K. Camden

Same here. Media3 hosts DeathClock.com (approx 2.2-2.5 million hits per
month) and has served me well for around 2 years now. They aren't perfect,
and I've had problems in the past, but it seems like they have been near
perfect for many, many months now.

===
Raymond Camden, Cold Fusion Jedi Master for Syntegra (www.syntegra.com)
Allaire Certified Instructor and Member of Team Allaire

Email   : [EMAIL PROTECTED]
ICQ UIN : 3679482

"My ally is the Force, and a powerful ally it is." - Yoda


 -Original Message-
 From: Brian L. Wolfsohn [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, August 08, 2000 10:56 AM
 To: [EMAIL PROTECTED]
 Subject: RE: I need a host. Intermedia testimonials


 At 10:50 AM 8/8/00 , you wrote:

 we've use www.media3.net for over 3 years now.  i can recommend them
 highly.  we started out putting on individual domains, and now
 have 4 boxes
 co-located on their farm.




--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: I need a host. Intermedia testimonials

2000-08-08 Thread Massimo Foti

 we've use www.media3.net for over 3 years now.  i can recommend them
 highly.  we started out putting on individual domains, and now have 4
boxes
 co-located on their farm.

I heard good things about them both for ASP and Unix hosting. But they don't
seems to put that much focus on CF, at least, I have this feeling by looking
at their website...


Massimo Foti
[EMAIL PROTECTED]


My own Corner of the web
http://www.massimocorner.com
Dreamweaver, Ultradev and Fireworks goodies

It should be this hole in the ozone layer
But I am not the coder I use to be...




--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: How to check a password is only alpha characters?

2000-08-08 Thread Bill Killillay

And if the user turns off JavaScript, what then?

 -Original Message-
 From: Deanna L. Schneider [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, August 08, 2000 9:23 AM
 To: [EMAIL PROTECTED]
 Subject: Re: How to check a password is only alpha characters?


 Michael,
 There's a nifty custom tag in the allaire gallery called restricttextinput
 that will do what you're needing with javascript prior to their even
 submitting the form. You can indicate alpha, numeric, or alphanumeric, as
 well as indicating additional allowed characters.

 -Deanna



 
 Deanna Schneider
 Interactive Media Developer
 UWEX Cooperative Extension Electronic Publishing Group
 103 Extension Bldg
 432 N. Lake Street
 Madison, WI 53706
 (608) 265-7923



 --
 
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf
_talk or send a message to [EMAIL PROTECTED] with
'unsubscribe' in the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: not seeing debug information ...

2000-08-08 Thread Dan Haley

Are you going through a proxy to see the web server?  Use cgi.remote_addr on
a page on that server to verify the ip address that CF sees when you visit
the server.

Dan

-Original Message-
From: c talk [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 8:01 AM
To: cf-talk
Subject: not seeing debug information ...


Hi

I've put my PC's IP in the CF Admin Debug settings window. When I view
pages,
none of the debug info displays. When I remove all of the IP addresses, the
debug info displays. When I put my IP in alone, no dice.

FWIW, the CF Server can ping my PC by name.

Any ideas why this is?

Thanks,

* john *

__
Do You Yahoo!?
Kick off your party with Yahoo! Invites.
http://invites.yahoo.com/

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: I need a host. Intermedia testimonials

2000-08-08 Thread Gregory Harris

You know, I'm starting to think, more and more, that FusionFx www.fusionfx.com really 
is the best out there.

Email: Had one major catastrophe that lasted about 2 weeks, but since then been fairly 
reliable

Web: Only minor, soon corrected hiccups (maybe not fusionfx, possibly upstream)

Tech Support: Email responses within the day, telephone is untested (believe it or 
not,  never used their phone!)

Setup/Maintenance: Application is not as simple as an online form, they make you fill 
out, sign and fax a contract before setup.  All their maintenance tasks are now web 
based.  

Databases: Supports Access with an option SQL Server add-on for extra $ (haven't tried 
yet)

Speed: they put only 40-60 domains on each server, so relatively quick, never seen my 
site take too long to load.

Price: Reasonable for what you get at $40/month

Gregory Harris
Los Angeles ITA Dept.
[EMAIL PROTECTED]


 [EMAIL PROTECTED] 08/08 8:07 AM 
 we've use www.media3.net for over 3 years now.  i can recommend them
 highly.  we started out putting on individual domains, and now have 4
boxes
 co-located on their farm.

I heard good things about them both for ASP and Unix hosting. But they don't
seems to put that much focus on CF, at least, I have this feeling by looking
at their website...


Massimo Foti
[EMAIL PROTECTED] 


My own Corner of the web
http://www.massimocorner.com 
Dreamweaver, Ultradev and Fireworks goodies

It should be this hole in the ozone layer
But I am not the coder I use to be...




--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ 
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRstsbodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Session Management Errors

2000-08-08 Thread c talk

Hi

I have an Application.cfm file with this code:

CFAPPLICATION NAME="corptech" SESSIONMANAGEMENT="Yes" SESSIONTIMEOUT="30"

!--- This SESSION.var is referenced by all queries using Accounting tables
coded by JBM after 08.08.2000 ---
 CFSET SESSION.datasource = "Webacctg"


That generates the following error:

Attempt to access a Session variable when session management is not enabled.
Use the CFAPPLICATION tag to enable session
 management.

 Note: This feature may have been disabled by the site administrator.

 The error occurred while evaluating the expression: 

  SESSION.datasource = "Webacctg"

 The error occurred while processing an element with a general identifier of
(CFSET), occupying document position (18:2) to (18:40)
 in the template file C:\Inetpub\wwwroot\accounting\Application.cfm

 The specific sequence of files included or processed is:
 C:\INETPUB\WWWROOT\ACCOUNTING\APPLICATION.CFM  

* * * * * 

When I comment the CFSET the page works correctly.

Also, where would I enable Session Management if it was disabled by the
Administrator?

Thanks in advance,

* john *

__
Do You Yahoo!?
Kick off your party with Yahoo! Invites.
http://invites.yahoo.com/
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: How to check a password is only alpha characters?

2000-08-08 Thread Deanna L. Schneider

Well, yah, you have a point there.
-d




Deanna Schneider
Interactive Media Developer
UWEX Cooperative Extension Electronic Publishing Group
103 Extension Bldg
432 N. Lake Street
Madison, WI 53706
(608) 265-7923



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Session Management Errors

2000-08-08 Thread Scott J. Brader

I ran into the same problem with an application a while back. I found that
changing

 CFSET SESSION.datasource = "Webacctg"

to

CFPARAM name="SESSION.datasource" default="Webacctg"

eliminated the error and properly set the variable.

Scott


Scott Brader
USAV Group
5485 South Westridge Drive
PO Box 510620
New Berlin, WI 53151-0620
Phone: 262.814.2000
Fax: 262.814.2006

Amateurs Practice Until They Get It Right,
Experts Practice Until They Can't Get It Wrong

Any opinions expressed herein are mine and are not representative of USAV
Communications Group.

-Original Message-
From: c talk [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 10:39
To: cf-talk
Subject: Session Management Errors


Hi

I have an Application.cfm file with this code:

CFAPPLICATION NAME="corptech" SESSIONMANAGEMENT="Yes" SESSIONTIMEOUT="30"

!--- This SESSION.var is referenced by all queries using Accounting tables
coded by JBM after 08.08.2000 ---
 CFSET SESSION.datasource = "Webacctg"


That generates the following error:

Attempt to access a Session variable when session management is not enabled.
Use the CFAPPLICATION tag to enable session
 management.

 Note: This feature may have been disabled by the site administrator.

 The error occurred while evaluating the expression:

  SESSION.datasource = "Webacctg"

 The error occurred while processing an element with a general identifier of
(CFSET), occupying document position (18:2) to (18:40)
 in the template file C:\Inetpub\wwwroot\accounting\Application.cfm

 The specific sequence of files included or processed is:
 C:\INETPUB\WWWROOT\ACCOUNTING\APPLICATION.CFM

* * * * *

When I comment the CFSET the page works correctly.

Also, where would I enable Session Management if it was disabled by the
Administrator?

Thanks in advance,

* john *

__
Do You Yahoo!?
Kick off your party with Yahoo! Invites.
http://invites.yahoo.com/

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



CFMAIL and 4.51

2000-08-08 Thread Bud

Hi. I'm hosting a client's site on virtualscape instead of my own 
server because they needed a good RealAudio server and I'm not set up 
for that.

Question: They are using my shopping cart there under 4.51 and about 
1 out of 15 email invoices don't go through. I'm running about a 
dozen of the same app on my own server and I've never had a client 
tell me that they've lost an e-mail.

virtualscape:
CF 4.51 - IMail 6 mail server

me:
CF 4.01 - IMail 6 mail server

The only thing difference is the 4.51. Anyone else have problems with 
losing an occasional e-mail under 4.51? I've asked virtualscape to 
check the cfmail and IMail logs. Still waiting for a reply.

Thanks
-- 

Bud Schneehagen - Tropical Web Creations

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
ColdFusion Solutions / eCommerce Development
[EMAIL PROTECTED]
http://www.twcreations.com/
954.721.3452
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: How to check a password is only alpha characters?

2000-08-08 Thread JustinMacCarthy

Much better to do

cfif REFind("^[a-zA-Z0-9]*$", password )


~Justin


 !---
   Eliminate anything that isn't alphanumeric, then check to see if it's
the
 same thing
 ---
 CFIF REReplace(newpassword1,"[^a-zA-Z0-9]","","ALL") IS newpassword1
   !--- ... ---
 /CFIF

 But, as Perl says, there's more than one way to do it ...

 -Rick

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
 Behalf Of Michael Kear
 Sent: Tuesday, August 08, 2000 12:54 AM
 To: [EMAIL PROTECTED]
 Subject: How to check a password is only alpha characters?


 Uh oh. I just bit off more than I can chew here I think.

 I'm checking a submitted password for validity before updating my user
 database. One of the requirements is that the password be made up of only
 the characters a-z, A-Z and 0-9.  In other words, no punctuation, dashes,
 underscores, spaces etc.

 Can someone please tell me what code to use to test variable newpassword1
 for this?

 Thanks,

 Mike Kear
 AFP Web Development
 Windsor, NSW, Australia.




 --
--
 --
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.

 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: CFMAIL and 4.51

2000-08-08 Thread Robert Everland

I had the same probelm with Imail. The new patch fixes it 6.04. What
I had to do was manually go in and stop the SMTP service then start it again
and it would work. Seemed the 6.03 patch screwed up SMTP. What was happening
was it couldn't send out the mail and was being dcepoisted to my nobody
account. Hope that works for you. Email me off list if you have any more
problems.


Robert Everland III
Web Developer
Dixon Ticonderoga


-Original Message-
From: Bud [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 12:01 PM
To: [EMAIL PROTECTED]
Subject: CFMAIL and 4.51


Hi. I'm hosting a client's site on virtualscape instead of my own 
server because they needed a good RealAudio server and I'm not set up 
for that.

Question: They are using my shopping cart there under 4.51 and about 
1 out of 15 email invoices don't go through. I'm running about a 
dozen of the same app on my own server and I've never had a client 
tell me that they've lost an e-mail.

virtualscape:
CF 4.51 - IMail 6 mail server

me:
CF 4.01 - IMail 6 mail server

The only thing difference is the 4.51. Anyone else have problems with 
losing an occasional e-mail under 4.51? I've asked virtualscape to 
check the cfmail and IMail logs. Still waiting for a reply.

Thanks
-- 

Bud Schneehagen - Tropical Web Creations

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
ColdFusion Solutions / eCommerce Development
[EMAIL PROTECTED]
http://www.twcreations.com/
954.721.3452

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: I need a host. Intermedia testimonials - Interland

2000-08-08 Thread Gavin Myers

Talked to people probally about 3 times now, and that's just me, i cant
count how many e-mails me and my partners have sent. Ever since day one
things have been kinda shakey. The site I have hosted there is a side
business so I cant put very much time aside to harass Interland employees
(as much as i'd like to :) - but I like to think that One e-mail, or one
phone call should be enough - or maybe two, but when stuff like this
continues after constant calls, then I dont even want to talk to them, I'm
actually looking for another ISP.

I'm not really trying to down interland, its just one bad experience,
everyone has had one. But the length that it has gone on I just would rather
continue my efforts somewhere else. I'm sure other people have had great
luck with them - not me though.

Gavin

-Original Message-
From: Raymond K. Camden [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 10:07 AM
To: [EMAIL PROTECTED]
Subject: RE: I need a host. Intermedia testimonials


When I hear a story like this, I have to wonder... have you talked to a
human @ Interland who can explain why such a simple thing hasn't been done
yet? Have you threatened to stop payment? I can't imagine waiting more then
24 hours for something like this to get fixed.

===
Raymond Camden, Cold Fusion Jedi Master for Syntegra (www.syntegra.com)
Allaire Certified Instructor and Member of Team Allaire

Email   : [EMAIL PROTECTED]
ICQ UIN : 3679482

"My ally is the Force, and a powerful ally it is." - Yoda


 -Original Message-
 From: Gavin Myers [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, August 08, 2000 10:53 AM
 To: '[EMAIL PROTECTED]'
 Subject: RE: I need a host. Intermedia testimonials


 2 Months ago i would have said Interland... but they started to move crap
 around and our database hasn't been put back on our server YET... its been
 over a month now with no db, I'm pretty pissed at it, and maybe
 its just one
 of those things. Their price is ok, the site is ok, they have sql.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



OT: Monitoring Telnet Connections

2000-08-08 Thread Richard Ramos

Anyone know how you can track connections to telnet services in an NT
Server?

Thanks in advance.

Richard Ramos
[EMAIL PROTECTED]



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: I need a host. Intermedia testimonials - Interland

2000-08-08 Thread Kevin Queen

Please NO FLAMES, but FYI as an ex-Interland employee I only host my
personal site with them because it really does not matter if it is up,
however; for high-availability I would not recommend Interland.

-Kevin

-Original Message-
From: Gavin Myers [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 12:22 PM
To: '[EMAIL PROTECTED]'
Subject: RE: I need a host. Intermedia testimonials - Interland


Talked to people probally about 3 times now, and that's just me, i cant
count how many e-mails me and my partners have sent. Ever since day one
things have been kinda shakey. The site I have hosted there is a side
business so I cant put very much time aside to harass Interland employees
(as much as i'd like to :) - but I like to think that One e-mail, or one
phone call should be enough - or maybe two, but when stuff like this
continues after constant calls, then I dont even want to talk to them, I'm
actually looking for another ISP.

I'm not really trying to down interland, its just one bad experience,
everyone has had one. But the length that it has gone on I just would rather
continue my efforts somewhere else. I'm sure other people have had great
luck with them - not me though.

Gavin

-Original Message-
From: Raymond K. Camden [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 10:07 AM
To: [EMAIL PROTECTED]
Subject: RE: I need a host. Intermedia testimonials


When I hear a story like this, I have to wonder... have you talked to a
human @ Interland who can explain why such a simple thing hasn't been done
yet? Have you threatened to stop payment? I can't imagine waiting more then
24 hours for something like this to get fixed.

===
Raymond Camden, Cold Fusion Jedi Master for Syntegra (www.syntegra.com)
Allaire Certified Instructor and Member of Team Allaire

Email   : [EMAIL PROTECTED]
ICQ UIN : 3679482

"My ally is the Force, and a powerful ally it is." - Yoda


 -Original Message-
 From: Gavin Myers [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, August 08, 2000 10:53 AM
 To: '[EMAIL PROTECTED]'
 Subject: RE: I need a host. Intermedia testimonials


 2 Months ago i would have said Interland... but they started to move crap
 around and our database hasn't been put back on our server YET... its been
 over a month now with no db, I'm pretty pissed at it, and maybe
 its just one
 of those things. Their price is ok, the site is ok, they have sql.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: OT: Monitoring Telnet Connections

2000-08-08 Thread Len Conrad


Anyone know how you can track connections to telnet services in an NT
Server?

Use telnet daemon with good logging: http://www.fictional.net

Len


http://BIND8NT.MEIway.com: ISC BIND 8.2.2 p5  installable binary for NT4
http://IMGate.MEIway.com:  Build free, hi-perf, anti-spam mail gateways

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Hi Guys n Gals! Quick Select box question :)

2000-08-08 Thread Angél Stewart

I need a select box to display a value from a database.

The box is not dynamic, and it is not a CFSelect box.

It is a regular, plain vanilla select statement sitting inside a CFFORM
inside a CFLOOP query="qrySelectRecords" statement.

I just know this is really really easy for you gurus..but I just can't
figure it out at the moment..

here is the box code as it is now:

tdselect cfoutputname="reason_#lookup.Audit_ID#"/cfoutput
  option value="" SELECTED/Option
  option value="G"9/80/option
  option value="N"Absent Without Permission/option
  option value="F"Funeral Leave/option
  option value="I"Injury/option
  option value="J"Jury Duty/option
  option value="M"Maternity/option
  option value="O"Other Approved Absences/option
  option value="H"Public Holiday/option
  option value="S"Sick Leave/option
  option value="U"Surgical Leave/option
  option value="S"Suspension/option
  option value="C"Time Off/option
  option value="T"Training/Conferences/Team Building/option
  option value="W"Weekend/option
  option value="A"Vacation/option
  /select/td

/tr

Thanks all!
-Gel


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Upgrade Issues (4-4.5) Resources??

2000-08-08 Thread PC

I know a lot of discussion has occurred over time about problems and issues
to be aware of with upgrading from CF 4.0 to CF4.51 ... but I need to
consider this move now and wonder if there's any resources compiling this
stuff, or if anyone feels they have the time ( :) ) to give a
breakdown-overview of the main concerns. But ideally, there exists some
excellent *web page*, whitepaper, or somesuch ...

Thanks a lot.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



CFStudio 4.0 Weirdness

2000-08-08 Thread Gregory Harris

Hello everyone, just recently in CFStudio 4.0, whenever I try and sort by date I get 
this error message:

"Invalid Floating Point Operation"

After which it doesn't do anything except refuse to sort by date.  I've had CF 4.0 
running on this computer for almost a year now, any ideas, suggestions, hints for 
solving this?  Thanks!

Gregory Harris
Los Angeles ITA Dept.
[EMAIL PROTECTED]


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRstsbodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Hi Guys n Gals! Quick Select box question :)

2000-08-08 Thread David Green

Am not sure were in your statement that you want the database but here is a
copy of one I have on a site. Mine is CFSELECT but am sure select works
the same way.  Matter of fact looking at mine I should change to select less
overhead :)Hope it helps.

Good Luck
David

cfselect name="LNI_FAC" size="15" multiple
 option value="ALL" selectedAll FAC Cables/option
option value="'Unassigned'"Unassigned/options
 cfloop query="LIST_FAC" 
  OPTION
value="'cfoutput#list_FAC.FAC_CA#/cfoutput'"cfoutput#LIST_FAC.FAC_CA#
/cfoutput/option
 /cfloop
 /cfselect


- Original Message -
From: "Angél Stewart" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, August 08, 2000 9:37 AM
Subject: Hi Guys n Gals! Quick Select box question :)


 I need a select box to display a value from a database.

 The box is not dynamic, and it is not a CFSelect box.

 It is a regular, plain vanilla select statement sitting inside a CFFORM
 inside a CFLOOP query="qrySelectRecords" statement.

 I just know this is really really easy for you gurus..but I just can't
 figure it out at the moment..

 here is the box code as it is now:

 tdselect cfoutputname="reason_#lookup.Audit_ID#"/cfoutput
   option value="" SELECTED/Option
   option value="G"9/80/option
   option value="N"Absent Without Permission/option
   option value="F"Funeral Leave/option
   option value="I"Injury/option
   option value="J"Jury Duty/option
   option value="M"Maternity/option
   option value="O"Other Approved Absences/option
   option value="H"Public Holiday/option
   option value="S"Sick Leave/option
   option value="U"Surgical Leave/option
   option value="S"Suspension/option
   option value="C"Time Off/option
   option value="T"Training/Conferences/Team Building/option
   option value="W"Weekend/option
   option value="A"Vacation/option
   /select/td

 /tr

 Thanks all!
 -Gel


 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



CFMAIL and exchange server

2000-08-08 Thread David Green

Hi all

I have webbased email page and when the users creates a email everything
works fine but there seems to be a 15 minute delay before the mail is sent.
Right now my CF server and Exchange server on the same NT IIS box.   My
question is there a settings that is controlling this delay between the mail
and CF servers.

Thanks for all the help and useful information in the group.


David Green


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Multiple value Select

2000-08-08 Thread Gieseman, Athelene

OK.  I have another application where I do in fact use a table for the
lookup.  I've tried to use your example and apply it here.  But nothing is
selected.  My code is as follows:

cfquery datasource="FirmDirectory" name="EditNameQry"
Select * from Employees where ID='#EditGrid.ID#'
/cfquery

cfquery datasource="FirmDirectory" name="GetPG"
Select * from PracticeGroups order by PG
/cfquery

cfselect name="NewPG" size="3" multiple
CFLoop query="GetPG"
CFIF
ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)
CFSET PGSelected = "Selected"
CFELSE
CFSET PGSelected = ""
/cfif
Option #PGSelected#
value="#PG#"cfoutput#PG#/cfoutput/option
/cfloop
/cfselect

Note that if I replace the :  CFIF
ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)
with:  CFIF ListContains(GetPG.PG,"Agribusiness")

Then Agribusiness is in fact selected.  So I'm assuming there's something
wrong with that one line.  Do you happen to see where I went wrong? 

TIA,

Athelene 

-Original Message-
From: Mark Armendariz [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 7:44 AM
To: [EMAIL PROTECTED]
Subject: RE: Multiple value Select


I did this sort of thing for an intranet i'm working on with selected
company newsgroups... The best way to do it is with a database of your
finance types.  This will allow you to updae the select statement without
changing the hard coding.  So the form will always be right.  Query that
database and the user database.  In the user database, you will want to save
a comma delimited list of the finance types they are assigned for.  When you
bring up the select, you can scroll through all the finance types, and if
the user had any in his/her list, they will set the FinanceSelected variable
to 'selected.'  if they're not in the list, FinanceSelected will be blank.

Hope this helps...

CFQuery Name="GetFinances" datasource="#Application.datasource#"
  SELECTFinanceName
  FROM  tblFinances
  ORDER By  FinanceName
/CFQuery

CFQuery Name="GetCustomer" datasource="#Application.datasource#"
  SELECTCustomerName,
Address,
Finances!--- This Field is a comma delimited list
of the user's
finances ---
  FROM  tblCustomers
  WHERE CustomerID = #Attributes.CustomerID#
/cfgquery


Finances:br

Select Name="Finances" size="#GetFinances.RecordCount#" multiple
  CFLoop query="Finances"
CFIF ListContains(GetCustomer.Finances,#FinanceName#)
  CFSET FinanceSelected = "Selected"
CFELSE
  CFSET FinanceSelected = ""
/cfif
Option #FiannceSelected# value="#FinanceName#"#FinanceName#/option
  /cfloop
/select



Mark Armendariz
Righteous Design
www.sorighteous.com
[EMAIL PROTECTED]


-Original Message-
From: Gieseman, Athelene [mailto:[EMAIL PROTECTED]]
Sent: Monday, August 07, 2000 6:34 PM
To: [EMAIL PROTECTED]
Subject: Multiple value Select


I'm trying to set up a CFSELECT using the SELECTED option.  I need to have
the CFSELECT set up as multiple since more than one option is permitted.
However, I can never seem to get the SELECTED option to properly highlight
the options that are already stored in the record.  (In other words, I want
to create an edit screen where the previously stored values are preselected
in this control.)  Any thoughts on what I may be doing wrong?  The code for
my select follows:  (Note that ViewGrid is a grid from which the user
previously selected this record.  I've also tried doing this from a query
with the same result - nothing is selected.)

cfselect name="FinanceType" size="2" selected="#ViewGrid.FinanceType#"
multiple
option value="Single Family Housing"Single Family Housing/option
option value="501(c)(3)"501(c)(3)/option
option value="Hospital Revenue"Hospital Revenue/option
option value="Leasehold Revenue"Leasehold Revenue/option
option value="Multifamily Housing"Multifamily Housing/option
option value="General Obligation"General Obligation/option
option value="NID"NID/option
option value="Special Obligation"Special Obligation/option
option value="Industrial Development"Industrial Development/option
option value="TIF"TIF/option
option value="TDD/TC"TDD/TC/option
option value="Other"Other/option
/cfselect

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in

RE: Null Values check 2

2000-08-08 Thread Chapman, Katrina

This will check for the existence and if it is null.

cfif IIF(IsDefined("tempValue"), "Trim(tempValue)", DE("")) IS ""
It's Null
/cfif

Or you could use

cfif IIF(IsDefined("tempValue"), "Trim(tempValue)", DE("")) IS NOT ""
It's Not Null
/cfif

--K

-Original Message-
From: Dempsey, Timothy F. [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 6:30 AM
To: '[EMAIL PROTECTED]'
Subject: RE: Null Values check 2


Aslam,

I think what you want is:

cfif NOT IsDefined("tempValue") ...  

I don't believe there is the equivalent of SQL's NULL in CF.

The above will determine if there is such an entity called tempValue
and if there is, there is stioll a possibility that it could be "" or 0.


-- Tim Dempsey


-Original Message-
From: aslam bajaria [mailto:[EMAIL PROTECTED]]
Sent: Monday, August 07, 2000 6:06 PM
To: [EMAIL PROTECTED]
Subject: Null Values check 2


When I used the statement :
cfif tempValue is NULL
...
/cfif

I got the following error. Is there a different way of
checking for NULL?!

Error Occurred While Processing Request
Error Diagnostic Information
Error resolving parameter NULL


ColdFusion was unable to determine the value of the
parameter. This problem is very likely due to the fact
that either: 

You have misspelled the parameter name, or 
You have not specified a QUERY attribute for a
CFOUTPUT, CFMAIL, or CFTABLE tag. 


--- Marcus [EMAIL PROTECTED] wrote:
  Hi All,
  
  I am getting an error when I write a code like:
  
  cfif tempValue eq null
  
  ...
  
  /cfif
  
  If I write
  
  cfif tempValue eq ""
  ...
  /cfif
 
 Null values can't use EQ or =, you need to ask 
 
 cfif tempValue is NULL


--
 Archives:

http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit

http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
 or send a message to
 [EMAIL PROTECTED] with 'unsubscribe'
 in the body.


__
Do You Yahoo!?
Kick off your party with Yahoo! Invites.
http://invites.yahoo.com/

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Multiple value Select

2000-08-08 Thread Gieseman, Athelene

Thanks for the quick response.  Tried that and no luck.  

Athelene

-Original Message-
From: David E. Crawford [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 12:10 PM
To: [EMAIL PROTECTED]
Subject: Re: Multiple value Select


This is a multi-part message in MIME format.

--=_NextPart_000_0242_01C0015B.7347C930
Content-Type: text/plain;
charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable

RE: Multiple value SelectSee if changing:

ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)

to

ListContains(GetPG.PG,EditNameQry.PracticeGroup)

Makes a difference.  The # signs are not required inside CF functions.

DC

  - Original Message -=20
  From: Gieseman, Athelene=20
  To: '[EMAIL PROTECTED]'=20
  Sent: Tuesday, August 08, 2000 17:03
  Subject: RE: Multiple value Select


  OK.  I have another application where I do in fact use a table for the =

  lookup.  I've tried to use your example and apply it here.  But =
nothing is=20
  selected.  My code is as follows:=20

  cfquery datasource=3D"FirmDirectory" name=3D"EditNameQry"=20
  Select * from Employees where ID=3D'#EditGrid.ID#'=20
  /cfquery=20

  cfquery datasource=3D"FirmDirectory" name=3D"GetPG"=20
  Select * from PracticeGroups order by PG=20
  /cfquery=20

  cfselect name=3D"NewPG" size=3D"3" multiple=20
  CFLoop query=3D"GetPG"=20
  CFIF=20
  ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)=20
  CFSET PGSelected =3D "Selected"=20
  CFELSE=20
  CFSET PGSelected =3D ""=20
  /cfif=20
  Option #PGSelected#=20
  value=3D"#PG#"cfoutput#PG#/cfoutput/option=20
  /cfloop=20
  /cfselect=20

  Note that if I replace the :  CFIF=20
  ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)=20
  with:  CFIF ListContains(GetPG.PG,"Agribusiness")=20

  Then Agribusiness is in fact selected.  So I'm assuming there's =
something=20
  wrong with that one line.  Do you happen to see where I went wrong?=20

  TIA,=20

  Athelene=20

  -Original Message-=20
  From: Mark Armendariz [mailto:[EMAIL PROTECTED]]=20
  Sent: Tuesday, August 08, 2000 7:44 AM=20
  To: [EMAIL PROTECTED]=20
  Subject: RE: Multiple value Select=20



  I did this sort of thing for an intranet i'm working on with selected=20
  company newsgroups... The best way to do it is with a database of your =

  finance types.  This will allow you to updae the select statement =
without=20
  changing the hard coding.  So the form will always be right.  Query =
that=20
  database and the user database.  In the user database, you will want =
to save=20
  a comma delimited list of the finance types they are assigned for.  =
When you=20
  bring up the select, you can scroll through all the finance types, and =
if=20
  the user had any in his/her list, they will set the FinanceSelected =
variable=20
  to 'selected.'  if they're not in the list, FinanceSelected will be =
blank.=20

  Hope this helps...=20

  CFQuery Name=3D"GetFinances" datasource=3D"#Application.datasource#" =

SELECTFinanceName=20
FROM  tblFinances=20
ORDER By  FinanceName=20
  /CFQuery=20

  CFQuery Name=3D"GetCustomer" datasource=3D"#Application.datasource#" =

SELECTCustomerName,=20
  Address,=20
  Finances!--- This Field is a comma delimited =
list=20
  of the user's=20
  finances ---=20
FROM  tblCustomers=20
WHERE CustomerID =3D #Attributes.CustomerID#=20
  /cfgquery=20



  Finances:br=20

  Select Name=3D"Finances" size=3D"#GetFinances.RecordCount#" multiple =

CFLoop query=3D"Finances"=20
  CFIF ListContains(GetCustomer.Finances,#FinanceName#)=20
CFSET FinanceSelected =3D "Selected"=20
  CFELSE=20
CFSET FinanceSelected =3D ""=20
  /cfif=20
  Option #FiannceSelected# =
value=3D"#FinanceName#"#FinanceName#/option=20
/cfloop=20
  /select=20




  Mark Armendariz=20
  Righteous Design=20
  www.sorighteous.com=20
  [EMAIL PROTECTED]=20



  -Original Message-=20
  From: Gieseman, Athelene [mailto:[EMAIL PROTECTED]]=20
  Sent: Monday, August 07, 2000 6:34 PM=20
  To: [EMAIL PROTECTED]=20
  Subject: Multiple value Select=20



  I'm trying to set up a CFSELECT using the SELECTED option.  I need to =
have=20
  the CFSELECT set up as multiple since more than one option is =
permitted.=20
  However, I can never seem to get the SELECTED option to properly =
highlight=20
  the options that are already stored in the record.  (In other words, I =
want=20
  to create an edit screen where the previously stored values are =
preselected=20
  in this control.)  Any thoughts on what I may be doing wrong?  The =
code for=20
  my select follows:  (Note that ViewGrid is a grid from which the user=20
  previously selected this record.  I've also tried doing this from a =

Re: Multiple value Select

2000-08-08 Thread David E. Crawford

This is a multi-part message in MIME format.

--=_NextPart_000_0242_01C0015B.7347C930
Content-Type: text/plain;
charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable

RE: Multiple value SelectSee if changing:

ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)

to

ListContains(GetPG.PG,EditNameQry.PracticeGroup)

Makes a difference.  The # signs are not required inside CF functions.

DC

  - Original Message -=20
  From: Gieseman, Athelene=20
  To: '[EMAIL PROTECTED]'=20
  Sent: Tuesday, August 08, 2000 17:03
  Subject: RE: Multiple value Select


  OK.  I have another application where I do in fact use a table for the =

  lookup.  I've tried to use your example and apply it here.  But =
nothing is=20
  selected.  My code is as follows:=20

  cfquery datasource=3D"FirmDirectory" name=3D"EditNameQry"=20
  Select * from Employees where ID=3D'#EditGrid.ID#'=20
  /cfquery=20

  cfquery datasource=3D"FirmDirectory" name=3D"GetPG"=20
  Select * from PracticeGroups order by PG=20
  /cfquery=20

  cfselect name=3D"NewPG" size=3D"3" multiple=20
  CFLoop query=3D"GetPG"=20
  CFIF=20
  ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)=20
  CFSET PGSelected =3D "Selected"=20
  CFELSE=20
  CFSET PGSelected =3D ""=20
  /cfif=20
  Option #PGSelected#=20
  value=3D"#PG#"cfoutput#PG#/cfoutput/option=20
  /cfloop=20
  /cfselect=20

  Note that if I replace the :  CFIF=20
  ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)=20
  with:  CFIF ListContains(GetPG.PG,"Agribusiness")=20

  Then Agribusiness is in fact selected.  So I'm assuming there's =
something=20
  wrong with that one line.  Do you happen to see where I went wrong?=20

  TIA,=20

  Athelene=20

  -Original Message-=20
  From: Mark Armendariz [mailto:[EMAIL PROTECTED]]=20
  Sent: Tuesday, August 08, 2000 7:44 AM=20
  To: [EMAIL PROTECTED]=20
  Subject: RE: Multiple value Select=20



  I did this sort of thing for an intranet i'm working on with selected=20
  company newsgroups... The best way to do it is with a database of your =

  finance types.  This will allow you to updae the select statement =
without=20
  changing the hard coding.  So the form will always be right.  Query =
that=20
  database and the user database.  In the user database, you will want =
to save=20
  a comma delimited list of the finance types they are assigned for.  =
When you=20
  bring up the select, you can scroll through all the finance types, and =
if=20
  the user had any in his/her list, they will set the FinanceSelected =
variable=20
  to 'selected.'  if they're not in the list, FinanceSelected will be =
blank.=20

  Hope this helps...=20

  CFQuery Name=3D"GetFinances" datasource=3D"#Application.datasource#" =

SELECTFinanceName=20
FROM  tblFinances=20
ORDER By  FinanceName=20
  /CFQuery=20

  CFQuery Name=3D"GetCustomer" datasource=3D"#Application.datasource#" =

SELECTCustomerName,=20
  Address,=20
  Finances!--- This Field is a comma delimited =
list=20
  of the user's=20
  finances ---=20
FROM  tblCustomers=20
WHERE CustomerID =3D #Attributes.CustomerID#=20
  /cfgquery=20



  Finances:br=20

  Select Name=3D"Finances" size=3D"#GetFinances.RecordCount#" multiple =

CFLoop query=3D"Finances"=20
  CFIF ListContains(GetCustomer.Finances,#FinanceName#)=20
CFSET FinanceSelected =3D "Selected"=20
  CFELSE=20
CFSET FinanceSelected =3D ""=20
  /cfif=20
  Option #FiannceSelected# =
value=3D"#FinanceName#"#FinanceName#/option=20
/cfloop=20
  /select=20




  Mark Armendariz=20
  Righteous Design=20
  www.sorighteous.com=20
  [EMAIL PROTECTED]=20



  -Original Message-=20
  From: Gieseman, Athelene [mailto:[EMAIL PROTECTED]]=20
  Sent: Monday, August 07, 2000 6:34 PM=20
  To: [EMAIL PROTECTED]=20
  Subject: Multiple value Select=20



  I'm trying to set up a CFSELECT using the SELECTED option.  I need to =
have=20
  the CFSELECT set up as multiple since more than one option is =
permitted.=20
  However, I can never seem to get the SELECTED option to properly =
highlight=20
  the options that are already stored in the record.  (In other words, I =
want=20
  to create an edit screen where the previously stored values are =
preselected=20
  in this control.)  Any thoughts on what I may be doing wrong?  The =
code for=20
  my select follows:  (Note that ViewGrid is a grid from which the user=20
  previously selected this record.  I've also tried doing this from a =
query=20
  with the same result - nothing is selected.)=20

  cfselect name=3D"FinanceType" size=3D"2" =
selected=3D"#ViewGrid.FinanceType#"=20
  multiple=20
  option value=3D"Single Family Housing"Single Family Housing/option =

  option 

RE: Hi Guys n Gals! Quick Select box question :)

2000-08-08 Thread John McKown


td
select cfoutputname="reason_#lookup.Audit_ID#"/cfoutput
  CFIF #whatever.value# IS ""
option value="" SELECTED/Option
  /CFIF
  option value="G" CFIF #whatever.value# IS
"G"SELECTED/CFIF9/80/option
  option value="N" CFIF #whatever.value# IS "N"SELECTED/CFIFAbsent
Without Permission/option
  option value="F" CFIF #whatever.value# IS "F"SELECTED/CFIFFuneral
Leave/option
  option value="I" CFIF #whatever.value# IS
"I"SELECTED/CFIFInjury/option
  option value="J" CFIF #whatever.value# IS "J"SELECTED/CFIFJury
Duty/option
  option value="M" CFIF #whatever.value# IS
"M"SELECTED/CFIFMaternity/option
  option value="O" CFIF #whatever.value# IS "O"SELECTED/CFIFOther
Approved Absences/option
  option value="H" CFIF #whatever.value# IS "H"SELECTED/CFIFPublic
Holiday/option
  option value="S" CFIF #whatever.value# IS "S"SELECTED/CFIFSick
Leave/option
  option value="U" CFIF #whatever.value# IS "U"SELECTED/CFIFSurgical
Leave/option
  option value="S" CFIF #whatever.value# IS
"S"SELECTED/CFIFSuspension/option
  option value="C" CFIF #whatever.value# IS "C"SELECTED/CFIFTime
Off/option
  option value="T" CFIF #whatever.value# IS
"T"SELECTED/CFIFTraining/Conferences/Team Building/option
  option value="W" CFIF #whatever.value# IS
"W"SELECTED/CFIFWeekend/option
  option value="A" CFIF #whatever.value# IS
"A"SELECTED/CFIFVacation/option
  /select
/td


John McKown, VP Business Services
Delaware.Net, Inc.


-Original Message-
From: Angél Stewart [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 12:37 PM
To: [EMAIL PROTECTED]
Subject: Hi Guys n Gals! Quick Select box question :)


I need a select box to display a value from a database.

The box is not dynamic, and it is not a CFSelect box.

It is a regular, plain vanilla select statement sitting inside a CFFORM
inside a CFLOOP query="qrySelectRecords" statement.

I just know this is really really easy for you gurus..but I just can't
figure it out at the moment..

here is the box code as it is now:

tdselect cfoutputname="reason_#lookup.Audit_ID#"/cfoutput
  option value="" SELECTED/Option
  option value="G"9/80/option
  option value="N"Absent Without Permission/option
  option value="F"Funeral Leave/option
  option value="I"Injury/option
  option value="J"Jury Duty/option
  option value="M"Maternity/option
  option value="O"Other Approved Absences/option
  option value="H"Public Holiday/option
  option value="S"Sick Leave/option
  option value="U"Surgical Leave/option
  option value="S"Suspension/option
  option value="C"Time Off/option
  option value="T"Training/Conferences/Team Building/option
  option value="W"Weekend/option
  option value="A"Vacation/option
  /select/td

/tr

Thanks all!
-Gel



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRstsbodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: I need a host. Intermedia testimonials

2000-08-08 Thread ColdFusion

I use Intermedia and they are incredible.  They answer support emails within
minutes.  They're hostpilot control panel is great.  They're real nice guys,
always looking to help out.  I'd give them a try.



-Original Message-
From: paul smith [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 12:56 AM
To: [EMAIL PROTECTED]
Subject: Re: I need a host. Intermedia testimonials


Check out http://www.shanje.com/

best,  paul

At 09:04 PM 8/7/00 -0500, you wrote:
I need a host. and I gather from cftalk that Intermedia is the winner. I am
interested in hearing testimonials or other alternatives.

1 client, 10 domains and growing.

Thanks
Eric Dawson


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Null Values check 2

2000-08-08 Thread David E. Crawford

This is a multi-part message in MIME format.

--=_NextPart_000_0253_01C0015C.C78A9120
Content-Type: text/plain;
charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable

RE: Null Values check 2Or,

cfif isdefined("tempvalue") and not len(trim(tempvalue))
it is null
cfelseif isdefined("tempvalue") and len(trim(tempvalue))
it is not null
cfelse
it ain't defined
/cfif

You don't need all this code, depending on the need to determine the =
existence of the variable first.

the IIF() function is very slow, especially when throwing in the DE() =
function.

DC

  - Original Message -=20
  From: Chapman, Katrina=20
  To: [EMAIL PROTECTED]=20
  Sent: Tuesday, August 08, 2000 17:11
  Subject: RE: Null Values check 2


  This will check for the existence and if it is null.=20

  cfif IIF(IsDefined("tempValue"), "Trim(tempValue)", DE("")) IS ""=20
  It's Null=20
  /cfif=20

  Or you could use=20

  cfif IIF(IsDefined("tempValue"), "Trim(tempValue)", DE("")) IS NOT =
""=20
  It's Not Null=20
  /cfif=20

  --K=20

  -Original Message-=20
  From: Dempsey, Timothy F. [mailto:[EMAIL PROTECTED]]=20
  Sent: Tuesday, August 08, 2000 6:30 AM=20
  To: '[EMAIL PROTECTED]'=20
  Subject: RE: Null Values check 2=20



  Aslam,=20

  I think what you want is:=20

  cfif NOT IsDefined("tempValue") ...  =20

  I don't believe there is the equivalent of SQL's NULL in CF.=20

  The above will determine if there is such an entity called tempValue=20
  and if there is, there is stioll a possibility that it could be "" or =
0.=20



  -- Tim Dempsey=20



  -Original Message-=20
  From: aslam bajaria [mailto:[EMAIL PROTECTED]]=20
  Sent: Monday, August 07, 2000 6:06 PM=20
  To: [EMAIL PROTECTED]=20
  Subject: Null Values check 2=20



  When I used the statement :=20
  cfif tempValue is NULL=20
  ...=20
  /cfif=20

  I got the following error. Is there a different way of=20
  checking for NULL?!=20

  Error Occurred While Processing Request=20
  Error Diagnostic Information=20
  Error resolving parameter NULL=20



  ColdFusion was unable to determine the value of the=20
  parameter. This problem is very likely due to the fact=20
  that either:=20

  You have misspelled the parameter name, or=20
  You have not specified a QUERY attribute for a=20
  CFOUTPUT, CFMAIL, or CFTABLE tag.=20



  --- Marcus [EMAIL PROTECTED] wrote:=20
Hi All,=20
   =20
I am getting an error when I write a code like:=20
   =20
cfif tempValue eq null=20
   =20
...=20
   =20
/cfif=20
   =20
If I write=20
   =20
cfif tempValue eq ""=20
...=20
/cfif=20
  =20
   Null values can't use EQ or =3D, you need to ask=20
  =20
   cfif tempValue is NULL=20
  =20
  =
-=
---=20
  --=20
   Archives:=20
  =20
  http://www.mail-archive.com/cf-talk@houseoffusion.com/=20
   To Unsubscribe visit=20
  =20
  =
http://www.houseoffusion.com/index.cfm?sidebar=3Dlistsbody=3Dlists/cf_ta=
lk=20
   or send a message to=20
   [EMAIL PROTECTED] with 'unsubscribe'=20
   in the body.=20



  __=20
  Do You Yahoo!?=20
  Kick off your party with Yahoo! Invites.=20
  http://invites.yahoo.com/=20
  =
-=
---=20
  --=20
  Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/=20
  To Unsubscribe visit=20
  =
http://www.houseoffusion.com/index.cfm?sidebar=3Dlistsbody=3Dlists/cf_ta=
lk or=20
  send a message to [EMAIL PROTECTED] with 'unsubscribe' =
in=20
  the body.=20
  =
-=
---=20
  --=20
  Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/=20
  To Unsubscribe visit=20
  =
http://www.houseoffusion.com/index.cfm?sidebar=3Dlistsbody=3Dlists/cf_ta=
lk or=20
  send a message to [EMAIL PROTECTED] with 'unsubscribe' =
in=20
  the body.=20
  =
-=
-=20
  Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/=20
  To Unsubscribe visit =
http://www.houseoffusion.com/index.cfm?sidebar=3Dlistsbody=3Dlists/cf_ta=
lk or send a message to [EMAIL PROTECTED] with =
'unsubscribe' in the body.


--=_NextPart_000_0253_01C0015C.C78A9120
Content-Type: text/html;
charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
HTMLHEADTITLERE: Null Values check 2/TITLE
META content=3D"text/html; charset=3Dwindows-1252" =
http-equiv=3DContent-Type
META content=3D"MSHTML 5.00.3018.900" name=3DGENERATOR
STYLE/STYLE
/HEAD
BODY bgColor=3D#ff
DIVFONT face=3DArial size=3D2Or,/FONT/DIV
DIVnbsp;/DIV
DIVFONT face=3DArial size=3D2lt;cfif isdefined("tempvalue") and not =

len(trim(tempvalue))gt;/FONT/DIV
DIVFONT face=3DArial size=3D2it is null/FONT/DIV
DIVFONT face=3DArial size=3D2lt;cfelseif 

Re: Multiple value Select

2000-08-08 Thread David E. Crawford

This is a multi-part message in MIME format.

--=_NextPart_000_025D_01C0015C.FC0970B0
Content-Type: text/plain;
charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable

RE: Multiple value SelectTry

listfindnocase(getpg.pg,EditNameQry.PracticeGroup)

and see if that works.
  - Original Message -=20
  From: Gieseman, Athelene=20
  To: '[EMAIL PROTECTED]'=20
  Sent: Tuesday, August 08, 2000 17:09
  Subject: RE: Multiple value Select


  Thanks for the quick response.  Tried that and no luck. =20

  Athelene=20

  -Original Message-=20
  From: David E. Crawford [mailto:[EMAIL PROTECTED]]=20
  Sent: Tuesday, August 08, 2000 12:10 PM=20
  To: [EMAIL PROTECTED]=20
  Subject: Re: Multiple value Select=20



  This is a multi-part message in MIME format.=20

  --=3D_NextPart_000_0242_01C0015B.7347C930=20
  Content-Type: text/plain;=20
  charset=3D"Windows-1252"=20
  Content-Transfer-Encoding: quoted-printable=20

  RE: Multiple value SelectSee if changing:=20

  ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)=20

  to=20

  ListContains(GetPG.PG,EditNameQry.PracticeGroup)=20

  Makes a difference.  The # signs are not required inside CF functions. =


  DC=20

- Original Message -=3D20=20
From: Gieseman, Athelene=3D20=20
To: '[EMAIL PROTECTED]'=3D20=20
Sent: Tuesday, August 08, 2000 17:03=20
Subject: RE: Multiple value Select=20



OK.  I have another application where I do in fact use a table for =
the =3D=20

lookup.  I've tried to use your example and apply it here.  But =3D=20
  nothing is=3D20=20
selected.  My code is as follows:=3D20=20

cfquery datasource=3D3D"FirmDirectory" name=3D3D"EditNameQry"=3D20 =

Select * from Employees where ID=3D3D'#EditGrid.ID#'=3D20=20
/cfquery=3D20=20

cfquery datasource=3D3D"FirmDirectory" name=3D3D"GetPG"=3D20=20
Select * from PracticeGroups order by PG=3D20=20
/cfquery=3D20=20

cfselect name=3D3D"NewPG" size=3D3D"3" multiple=3D20=20
CFLoop query=3D3D"GetPG"=3D20=20
CFIF=3D20=20
ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)=3D20=20
CFSET PGSelected =3D3D "Selected"=3D20=20
CFELSE=3D20=20
CFSET PGSelected =3D3D ""=3D20=20
/cfif=3D20=20
Option #PGSelected#=3D20=20
value=3D3D"#PG#"cfoutput#PG#/cfoutput/option=3D20=20
/cfloop=3D20=20
/cfselect=3D20=20

Note that if I replace the :  CFIF=3D20=20
ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)=3D20=20
with:  CFIF ListContains(GetPG.PG,"Agribusiness")=3D20=20

Then Agribusiness is in fact selected.  So I'm assuming there's =3D=20
  something=3D20=20
wrong with that one line.  Do you happen to see where I went =
wrong?=3D20=20

TIA,=3D20=20

Athelene=3D20=20

-Original Message-=3D20=20
From: Mark Armendariz [mailto:[EMAIL PROTECTED]]=3D20=20
Sent: Tuesday, August 08, 2000 7:44 AM=3D20=20
To: [EMAIL PROTECTED]=3D20=20
Subject: RE: Multiple value Select=3D20=20




I did this sort of thing for an intranet i'm working on with =
selected=3D20=20
company newsgroups... The best way to do it is with a database of =
your =3D=20

finance types.  This will allow you to updae the select statement =
=3D=20
  without=3D20=20
changing the hard coding.  So the form will always be right.  Query =
=3D=20
  that=3D20=20
database and the user database.  In the user database, you will want =
=3D=20
  to save=3D20=20
a comma delimited list of the finance types they are assigned for.  =
=3D=20
  When you=3D20=20
bring up the select, you can scroll through all the finance types, =
and =3D=20
  if=3D20=20
the user had any in his/her list, they will set the FinanceSelected =
=3D=20
  variable=3D20=20
to 'selected.'  if they're not in the list, FinanceSelected will be =
=3D=20
  blank.=3D20=20

Hope this helps...=3D20=20

CFQuery Name=3D3D"GetFinances" =
datasource=3D3D"#Application.datasource#" =3D=20

  SELECTFinanceName=3D20=20
  FROM  tblFinances=3D20=20
  ORDER By  FinanceName=3D20=20
/CFQuery=3D20=20

CFQuery Name=3D3D"GetCustomer" =
datasource=3D3D"#Application.datasource#" =3D=20

  SELECTCustomerName,=3D20=20
Address,=3D20=20
Finances!--- This Field is a comma =
delimited =3D=20
  list=3D20=20
of the user's=3D20=20
finances ---=3D20=20
  FROM  tblCustomers=3D20=20
  WHERE CustomerID =3D3D #Attributes.CustomerID#=3D20=20
/cfgquery=3D20=20




Finances:br=3D20=20

Select Name=3D3D"Finances" size=3D3D"#GetFinances.RecordCount#" =
multiple =3D=20

  CFLoop query=3D3D"Finances"=3D20=20
CFIF ListContains(GetCustomer.Finances,#FinanceName#)=3D20=20

OT:Traffic control

2000-08-08 Thread Ing. Luis J. Ramirez Flores

Anyone knows a good program that control the amount of bytes 
sended an received by the net?
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: I need a host. Intermedia testimonials

2000-08-08 Thread Kelly Matthews

I disagree i just left intermedia 1. because they took over an hour 5 times
in a row
to get back to me when my site was down. 2. their server monitoring seems
very poor.
The server MY SITE was on went down multiple times a day. i would NOT
recommend them
Kelly

---
Kelly Matthews
Internet Development Coordinator
AAAE
703.578.2509
[EMAIL PROTECTED]
http://www.airportnet.org
---

 -Original Message-
 From: ColdFusion [SMTP:[EMAIL PROTECTED]]
 Sent: Tuesday, August 08, 2000 1:19 PM
 To:   [EMAIL PROTECTED]
 Subject:  RE: I need a host. Intermedia testimonials
 
 I use Intermedia and they are incredible.  They answer support emails
 within
 minutes.  They're hostpilot control panel is great.  They're real nice
 guys,
 always looking to help out.  I'd give them a try.
 
 
 
 -Original Message-
 From: paul smith [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, August 08, 2000 12:56 AM
 To: [EMAIL PROTECTED]
 Subject: Re: I need a host. Intermedia testimonials
 
 
 Check out http://www.shanje.com/
 
 best,  paul
 
 At 09:04 PM 8/7/00 -0500, you wrote:
 I need a host. and I gather from cftalk that Intermedia is the winner. I
 am
 interested in hearing testimonials or other alternatives.
 
 1 client, 10 domains and growing.
 
 Thanks
 Eric Dawson
 
 --
 --
 --
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.
 
 --
 
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Frames and Session Management

2000-08-08 Thread Al Musella, DPM

   No problem at all. All links need to pass an id.  To make sure users 
don't fiddle with it, I send a userID and a unique id (CreateUUID())..
then in the application.cfm,  I check if the userid and unique ID match. If 
not they get bumped out to the login page again.
   I use that technique on usaride.com   works great.
Al
a1webs.com

At 10:36 AM 8/8/2000 -0400, you wrote:
 Is it impossible to have cookieless sessions in frames or is it
becuase I could be doing something wrong or is there a workaround. I have
asked this question for over a month now. Does anyone know? Dave?

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Verity vs. Freetext

2000-08-08 Thread Geoffrey V. Brown


Hi,
I have a large scale application that will contain a lot of data, and will
require that users do frequent text searches.  I am running SQL Server 7.

Which would be faster - a verity collection, or using SQL 7's Full-text
indexing?  We are probably talking about well over 20,000 individual
records.

Thanks -
Geoff B


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Help with Javascript!

2000-08-08 Thread jonathan hamner

Hi All,
Is there a javascript mailing list as this one. 
Also, what is the best way to learn javascript ( in
detail ) in three days. I have a project to do and I
have to do intensive javascript programming. I don't
know javascript at all (yet).

Help!

Thank You.

__
Do You Yahoo!?
Kick off your party with Yahoo! Invites.
http://invites.yahoo.com/
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Hi Guys n Gals! Quick Select box question :)

2000-08-08 Thread Chapman, Katrina

You could do this.  If you do however remove the #'s from the if statements,
they're not necessary and they slow down processing.  Or you could simply
output the value in the database as the first option.  Yes it will appear
twice in the list but it's easier for you to code and it is faster as CF
doesn't have to sort through a bunch of if statements.

--K
-
Thank you,
Katrina Chapman
ColdFusion Web Developer
Systems Development
Volt Information Services

-Original Message-
From: John McKown [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 10:15 AM
To: [EMAIL PROTECTED]
Subject: RE: Hi Guys n Gals! Quick Select box question :)



td
select cfoutputname="reason_#lookup.Audit_ID#"/cfoutput
  CFIF #whatever.value# IS ""
option value="" SELECTED/Option
  /CFIF
  option value="G" CFIF #whatever.value# IS
"G"SELECTED/CFIF9/80/option
  option value="N" CFIF #whatever.value# IS "N"SELECTED/CFIFAbsent
Without Permission/option
  option value="F" CFIF #whatever.value# IS "F"SELECTED/CFIFFuneral
Leave/option
  option value="I" CFIF #whatever.value# IS
"I"SELECTED/CFIFInjury/option
  option value="J" CFIF #whatever.value# IS "J"SELECTED/CFIFJury
Duty/option
  option value="M" CFIF #whatever.value# IS
"M"SELECTED/CFIFMaternity/option
  option value="O" CFIF #whatever.value# IS "O"SELECTED/CFIFOther
Approved Absences/option
  option value="H" CFIF #whatever.value# IS "H"SELECTED/CFIFPublic
Holiday/option
  option value="S" CFIF #whatever.value# IS "S"SELECTED/CFIFSick
Leave/option
  option value="U" CFIF #whatever.value# IS "U"SELECTED/CFIFSurgical
Leave/option
  option value="S" CFIF #whatever.value# IS
"S"SELECTED/CFIFSuspension/option
  option value="C" CFIF #whatever.value# IS "C"SELECTED/CFIFTime
Off/option
  option value="T" CFIF #whatever.value# IS
"T"SELECTED/CFIFTraining/Conferences/Team Building/option
  option value="W" CFIF #whatever.value# IS
"W"SELECTED/CFIFWeekend/option
  option value="A" CFIF #whatever.value# IS
"A"SELECTED/CFIFVacation/option
  /select
/td


John McKown, VP Business Services
Delaware.Net, Inc.


-Original Message-
From: Angél Stewart [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 12:37 PM
To: [EMAIL PROTECTED]
Subject: Hi Guys n Gals! Quick Select box question :)


I need a select box to display a value from a database.

The box is not dynamic, and it is not a CFSelect box.

It is a regular, plain vanilla select statement sitting inside a CFFORM
inside a CFLOOP query="qrySelectRecords" statement.

I just know this is really really easy for you gurus..but I just can't
figure it out at the moment..

here is the box code as it is now:

tdselect cfoutputname="reason_#lookup.Audit_ID#"/cfoutput
  option value="" SELECTED/Option
  option value="G"9/80/option
  option value="N"Absent Without Permission/option
  option value="F"Funeral Leave/option
  option value="I"Injury/option
  option value="J"Jury Duty/option
  option value="M"Maternity/option
  option value="O"Other Approved Absences/option
  option value="H"Public Holiday/option
  option value="S"Sick Leave/option
  option value="U"Surgical Leave/option
  option value="S"Suspension/option
  option value="C"Time Off/option
  option value="T"Training/Conferences/Team Building/option
  option value="W"Weekend/option
  option value="A"Vacation/option
  /select/td

/tr

Thanks all!
-Gel



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Help with Javascript!

2000-08-08 Thread Duane Boudreau

Check out JS-Jive it was spawned by a list member here. Very good list -
lots of experts. The email address is [EMAIL PROTECTED] Go to egroups.com
and search js-jive.

Duane

 -Original Message-
 From: jonathan hamner [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, August 08, 2000 1:39 PM
 To: [EMAIL PROTECTED]
 Subject: Help with Javascript!


 Hi All,
 Is there a javascript mailing list as this one.
 Also, what is the best way to learn javascript ( in
 detail ) in three days. I have a project to do and I
 have to do intensive javascript programming. I don't
 know javascript at all (yet).

 Help!

 Thank You.

 __
 Do You Yahoo!?
 Kick off your party with Yahoo! Invites.
 http://invites.yahoo.com/
 --
 
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



4.5 Studio mappings/ server side RDS setup

2000-08-08 Thread stas

Hello,

Is there a bug in 4.5 with remote development mappings. The same mapping
that works under 4.01 on the same machine won't work under 4.5.

Also, the guys at datapipe.com, my hosting provider, cannot figure out how
to properly set up RDS for remote editing, I have to use built-in FTP, but
that isn't as convenient. Any pointers? Thanks.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Create a ASX file from CF Form

2000-08-08 Thread Chuck Hergenroeder

Has anyone or does anyone know if it is possible to create an ASX file (MS Streaming 
media redirect file) dynamically through a CF form.

What I am trying to do is pull a list of ASF files from a database. Display the list 
with checkboxes. The user will select the file(s) they want to view. Then an ASX file 
will be created depending on which files they selected. 

I'm kinda new to CF so I'm not sure if you can do this. If there is an easier way to 
do this please let me know.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Hi Guys n Gals! Quick Select box question :)

2000-08-08 Thread Kevin Queen

You could also use a CFSWITCH and CFCASE block to do the same thing
faster (CASE statements evaluate faster that multiple IF statements),
psudeo-code:

CFSWITCH expression="whatever.value"
CFCASE value="N"
If 
/cfcase
CFCASE value="..."
More processing
/cfacse
CFDEFAULTCASE
Code for whatever.value="" goes here
/cfdefaultcase
/cfswitch

-Original Message-
From: Chapman, Katrina [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 1:44 PM
To: [EMAIL PROTECTED]
Subject: RE: Hi Guys n Gals! Quick Select box question :)


You could do this.  If you do however remove the #'s from the if statements,
they're not necessary and they slow down processing.  Or you could simply
output the value in the database as the first option.  Yes it will appear
twice in the list but it's easier for you to code and it is faster as CF
doesn't have to sort through a bunch of if statements.

--K
-
Thank you,
Katrina Chapman
ColdFusion Web Developer
Systems Development
Volt Information Services

-Original Message-
From: John McKown [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 10:15 AM
To: [EMAIL PROTECTED]
Subject: RE: Hi Guys n Gals! Quick Select box question :)



td
select cfoutputname="reason_#lookup.Audit_ID#"/cfoutput
  CFIF #whatever.value# IS ""
option value="" SELECTED/Option
  /CFIF
  option value="G" CFIF #whatever.value# IS
"G"SELECTED/CFIF9/80/option
  option value="N" CFIF #whatever.value# IS "N"SELECTED/CFIFAbsent
Without Permission/option
  option value="F" CFIF #whatever.value# IS "F"SELECTED/CFIFFuneral
Leave/option
  option value="I" CFIF #whatever.value# IS
"I"SELECTED/CFIFInjury/option
  option value="J" CFIF #whatever.value# IS "J"SELECTED/CFIFJury
Duty/option
  option value="M" CFIF #whatever.value# IS
"M"SELECTED/CFIFMaternity/option
  option value="O" CFIF #whatever.value# IS "O"SELECTED/CFIFOther
Approved Absences/option
  option value="H" CFIF #whatever.value# IS "H"SELECTED/CFIFPublic
Holiday/option
  option value="S" CFIF #whatever.value# IS "S"SELECTED/CFIFSick
Leave/option
  option value="U" CFIF #whatever.value# IS "U"SELECTED/CFIFSurgical
Leave/option
  option value="S" CFIF #whatever.value# IS
"S"SELECTED/CFIFSuspension/option
  option value="C" CFIF #whatever.value# IS "C"SELECTED/CFIFTime
Off/option
  option value="T" CFIF #whatever.value# IS
"T"SELECTED/CFIFTraining/Conferences/Team Building/option
  option value="W" CFIF #whatever.value# IS
"W"SELECTED/CFIFWeekend/option
  option value="A" CFIF #whatever.value# IS
"A"SELECTED/CFIFVacation/option
  /select
/td


John McKown, VP Business Services
Delaware.Net, Inc.


-Original Message-
From: Angél Stewart [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 12:37 PM
To: [EMAIL PROTECTED]
Subject: Hi Guys n Gals! Quick Select box question :)


I need a select box to display a value from a database.

The box is not dynamic, and it is not a CFSelect box.

It is a regular, plain vanilla select statement sitting inside a CFFORM
inside a CFLOOP query="qrySelectRecords" statement.

I just know this is really really easy for you gurus..but I just can't
figure it out at the moment..

here is the box code as it is now:

tdselect cfoutputname="reason_#lookup.Audit_ID#"/cfoutput
  option value="" SELECTED/Option
  option value="G"9/80/option
  option value="N"Absent Without Permission/option
  option value="F"Funeral Leave/option
  option value="I"Injury/option
  option value="J"Jury Duty/option
  option value="M"Maternity/option
  option value="O"Other Approved Absences/option
  option value="H"Public Holiday/option
  option value="S"Sick Leave/option
  option value="U"Surgical Leave/option
  option value="S"Suspension/option
  option value="C"Time Off/option
  option value="T"Training/Conferences/Team Building/option
  option value="W"Weekend/option
  option value="A"Vacation/option
  /select/td

/tr

Thanks all!
-Gel



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


CFHTTP

2000-08-08 Thread Brian L. Wolfsohn

We've successfully used cfhttp in a cf 4.01 environment.  I'm trying to run 
the same code on a cf 4.51 box now, and am getting the message "connection 
failure" being returned by the cgi program cfhttp is running.  same code is 
working on other boxes w/ 4.01.  So, i could havbe a mis-configured box, or 
is there some code imcompatibility between 4.5.1 and 4.0.1 in the cfhttp 
area ??



Brian L. Wolfsohnhttp://www.cus.com
CUS Business Systems Ft.Lauderdale,FL
Software for Auctioneers (954) 565-5600 Email:[EMAIL PROTECTED]
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: CFHTTP

2000-08-08 Thread dougn

Just a random thought, but I know that the term "URL" is now a reserved word
in CF 4.5x  So if you use URL as a variable name in 4.x it won't work in
4.5x

--Doug

-Original Message-
From: Brian L. Wolfsohn [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 11:14 AM
To: [EMAIL PROTECTED]
Subject: CFHTTP


We've successfully used cfhttp in a cf 4.01 environment.  I'm trying to run 
the same code on a cf 4.51 box now, and am getting the message "connection 
failure" being returned by the cgi program cfhttp is running.  same code is 
working on other boxes w/ 4.01.  So, i could havbe a mis-configured box, or 
is there some code imcompatibility between 4.5.1 and 4.0.1 in the cfhttp 
area ??



Brian L. Wolfsohnhttp://www.cus.com
CUS Business Systems Ft.Lauderdale,FL
Software for Auctioneers (954) 565-5600 Email:[EMAIL PROTECTED]

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: I need a host. Intermedia testimonials

2000-08-08 Thread R. Horwitz

Try that again, I just got into their web site a min ago.

Rob

-Original Message-
From: Dan O'Keefe [mailto:[EMAIL PROTECTED]]
Sent: Monday, August 07, 2000 7:49 AM
To: [EMAIL PROTECTED]
Subject: RE: I need a host. Intermedia testimonials


- I like www.powersurge.net
-
- I use them a lot and they're very good in all areas.
-
- Rob


Rob,

This URL does not work.

--
Dan O'Keefe
TriPoint Technologies
[EMAIL PROTECTED]
954.501.3113



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Salt Lake ColdFusion User's Group meeting Thursday, August 10, 2000 at 6:30 PM

2000-08-08 Thread Craig Fisher

Our web site says that we will be talking about Debugging 
with ColdFusion Studio, this is changing.  We had an 
opportunity to get information directly from Allaire so 
we thought that would be better. 

Speaker: Raul Hayes, Sales Engineer 
Company: Allaire 

Topic: Allaire 2000 Technology Roadmap.  This will provide 
an overview of the Allaire Business Platform today and a 
roadmap for new Allaire products and technologies in the 
future.  This will include Allaire business plan 
architecture, application servers, integration services 
and much more.  We will also touch base on how Allaire 
will be incorporating Java into their future. 

If there is extra time, Raul will present WML/WAP. 

Bonus: We will be giving away gifts at this user group 
and everyone will get a poster of all CF tags. 

Location: GE Capital 

Agenda: 
 6:30PM - 6:45PM  Give users an opportunity to do some networking 
 6:45 - 7:45PM  Keynote on the Interactive debugger. 
 7:45PM - 8:00PM QA 

For directions to GE Capital go to http://www.slcfug.org and click 

Please RSVP, so that I can get a close count on refreshments. 

Thanks, 
Scott P. Heffron 
email: [EMAIL PROTECTED] 

  

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Multiple value Select

2000-08-08 Thread Mark Armendariz

Try replacing the cfloop with cfoutput like so:


cfquery datasource="FirmDirectory" name="EditNameQry"
  Select*
  FROM  Employees
  WHERE ID='#EditGrid.ID#'
/cfquery

cfquery datasource="FirmDirectory" name="GetPG"
  Select*
  FROM  PracticeGroups
  ORDER BY  PG
/cfquery

cfselect name="NewPG" size="3" multiple
  CFOutput query="GetPG"
CFIF ListContains(GetPG.PG,EditNameQry.PracticeGroup)
CFSET PGSelected = "Selected"
CFELSE
CFSET PGSelected = ""
/cfif
   Option #PGSelected# value="#PG#"#PG#/option
  /cfoutput
/cfselect

I had the CFLoop in there because i had cfoutputs around it in my code...
this should do it for you, if not, let me know...




-Original Message-
From: Gieseman, Athelene [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 1:03 PM
To: '[EMAIL PROTECTED]'
Subject: RE: Multiple value Select


OK.  I have another application where I do in fact use a table for the
lookup.  I've tried to use your example and apply it here.  But nothing is
selected.  My code is as follows:

cfquery datasource="FirmDirectory" name="EditNameQry"
Select * from Employees where ID='#EditGrid.ID#'
/cfquery

cfquery datasource="FirmDirectory" name="GetPG"
Select * from PracticeGroups order by PG
/cfquery

cfselect name="NewPG" size="3" multiple
CFLoop query="GetPG"
CFIF
ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)
CFSET PGSelected = "Selected"
CFELSE
CFSET PGSelected = ""
/cfif
Option #PGSelected#
value="#PG#"cfoutput#PG#/cfoutput/option
/cfloop
/cfselect

Note that if I replace the :  CFIF
ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)
with:  CFIF ListContains(GetPG.PG,"Agribusiness")

Then Agribusiness is in fact selected.  So I'm assuming there's something
wrong with that one line.  Do you happen to see where I went wrong?

TIA,

Athelene

-Original Message-
From: Mark Armendariz [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 7:44 AM
To: [EMAIL PROTECTED]
Subject: RE: Multiple value Select


I did this sort of thing for an intranet i'm working on with selected
company newsgroups... The best way to do it is with a database of your
finance types.  This will allow you to updae the select statement without
changing the hard coding.  So the form will always be right.  Query that
database and the user database.  In the user database, you will want to save
a comma delimited list of the finance types they are assigned for.  When you
bring up the select, you can scroll through all the finance types, and if
the user had any in his/her list, they will set the FinanceSelected variable
to 'selected.'  if they're not in the list, FinanceSelected will be blank.

Hope this helps...

CFQuery Name="GetFinances" datasource="#Application.datasource#"
  SELECTFinanceName
  FROM  tblFinances
  ORDER By  FinanceName
/CFQuery

CFQuery Name="GetCustomer" datasource="#Application.datasource#"
  SELECTCustomerName,
Address,
Finances!--- This Field is a comma delimited list
of the user's
finances ---
  FROM  tblCustomers
  WHERE CustomerID = #Attributes.CustomerID#
/cfgquery


Finances:br

Select Name="Finances" size="#GetFinances.RecordCount#" multiple
  CFLoop query="Finances"
CFIF ListContains(GetCustomer.Finances,#FinanceName#)
  CFSET FinanceSelected = "Selected"
CFELSE
  CFSET FinanceSelected = ""
/cfif
Option #FiannceSelected# value="#FinanceName#"#FinanceName#/option
  /cfloop
/select



Mark Armendariz
Righteous Design
www.sorighteous.com
[EMAIL PROTECTED]


-Original Message-
From: Gieseman, Athelene [mailto:[EMAIL PROTECTED]]
Sent: Monday, August 07, 2000 6:34 PM
To: [EMAIL PROTECTED]
Subject: Multiple value Select


I'm trying to set up a CFSELECT using the SELECTED option.  I need to have
the CFSELECT set up as multiple since more than one option is permitted.
However, I can never seem to get the SELECTED option to properly highlight
the options that are already stored in the record.  (In other words, I want
to create an edit screen where the previously stored values are preselected
in this control.)  Any thoughts on what I may be doing wrong?  The code for
my select follows:  (Note that ViewGrid is a grid from which the user
previously selected this record.  I've also tried doing this from a query
with the same result - nothing is selected.)

cfselect name="FinanceType" size="2" selected="#ViewGrid.FinanceType#"
multiple
option value="Single Family Housing"Single Family Housing/option
option value="501(c)(3)"501(c)(3)/option
option value="Hospital Revenue"Hospital Revenue/option
option value="Leasehold Revenue"Leasehold Revenue/option
option value="Multifamily 

RE: Monitoring Telnet Connections

2000-08-08 Thread Benjamin S. Rogers

I'm not sure exactly what you're after. Your Telnet daemon should provide
this capability and I don't believe the one that comes on the Res Kit does.

A truly exceptional Telnet daemon is that put out by Pragma Systems
http://www.pragmasys.com/. The feature list is complete and I've used their
telnet daemon for a couple years on many production servers and have had no
problems.

Benjamin S. Rogers
Web Developer, c4.net
voice: (508) 240-0051
fax: (508) 240-0057

-Original Message-
From: Richard Ramos [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 12:26 PM
To: [EMAIL PROTECTED]
Subject: OT: Monitoring Telnet Connections


Anyone know how you can track connections to telnet services in an NT
Server?

Thanks in advance.

Richard Ramos
[EMAIL PROTECTED]




--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Create a ASX file from CF Form

2000-08-08 Thread Zachary Bedell

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Sure.  Piece of cake.  You just use CFCONTENT, then make CF spit out
the text you need for the ASX:

cfsetting EnableCFOutputOnly="yes"
cfcontent type="video/x-ms-asf"cfoutputASX VERSION="3.0"
TITLEASX Title/TITLE
COPYRIGHT(C) #DateFormat(Now(), "")# Your Site
Here/COPYRIGHT
ABSTRACTDescription/ABSTRACT
cfloop query="Whatever"ENTRYREF HREF ="#VideoURL#"
//ENTRY/cfloop
/ASX/cfoutputcfabort

Note:  There can't be any spaces, new lines, etc. between the start
of the Cfcontent... tag and the end of the ASX  tag.  Any
space sent out to the client there will cause the client to not
recognize the file as an ASX.

Hope that helps.

Best regards,
Zac Bedell

 -Original Message-
 From: Chuck Hergenroeder [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, August 08, 2000 2:06 PM
 To: [EMAIL PROTECTED]
 Subject: Create a ASX file from CF Form
 
 
 Has anyone or does anyone know if it is possible to create an 
 ASX file (MS Streaming media redirect file) dynamically 
 through a CF form.
 
 What I am trying to do is pull a list of ASF files from a 
 database. Display the list with checkboxes. The user will 
 select the file(s) they want to view. Then an ASX file will 
 be created depending on which files they selected. 
 
 I'm kinda new to CF so I'm not sure if you can do this. If 
 there is an easier way to do this please let me know.

-BEGIN PGP SIGNATURE-
Version: PGPfreeware 6.5.3 for non-commercial use http://www.pgp.com
Comment: Please use PGP!!!

iQA/AwUBOZBUIgraVoMWBwRBEQJL3QCgg7BIjyRBLZ8K1MR1K61AUao6DeMAnjk0
hsZQPz0pYMXotVZcvt2tJHHp
=KMQe
-END PGP SIGNATURE-
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Monitoring Telnet Connections

2000-08-08 Thread Angél Stewart

Hmm...you could install something like Black Ice which monitors connections
to and from you're machine.

It's a personal firewall utility.

I think its overkill though, you should just buy a new Telnet Daemon, but I
don't know which would be cheaper for you.

-Gel

- Original Message -
From: Benjamin S. Rogers [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, August 08, 2000 2:39 Gél
Subject: RE: Monitoring Telnet Connections


 I'm not sure exactly what you're after. Your Telnet daemon should provide
 this capability and I don't believe the one that comes on the Res Kit
does.

 A truly exceptional Telnet daemon is that put out by Pragma Systems
 http://www.pragmasys.com/. The feature list is complete and I've used
their
 telnet daemon for a couple years on many production servers and have had
no
 problems.

 Benjamin S. Rogers
 Web Developer, c4.net
 voice: (508) 240-0051
 fax: (508) 240-0057

 -Original Message-
 From: Richard Ramos [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, August 08, 2000 12:26 PM
 To: [EMAIL PROTECTED]
 Subject: OT: Monitoring Telnet Connections


 Anyone know how you can track connections to telnet services in an NT
 Server?

 Thanks in advance.

 Richard Ramos
 [EMAIL PROTECTED]


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRstsbodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Monitoring Telnet Connections

2000-08-08 Thread Jeremy Allen

Well.. speaking from the Unix word the netstat command
 with the proper arguments shows you everything that is
connected to your system.. So really its not necessarily
overkill to observe what / who is connected to your system.

Telnet is always on port 23, so anything connected to your system
on port 23 should tell you who is using telnet.  So look for something
that monitors all of the TCP/IP connections on the machine..
Real typical stuff, I have had the need to use anything like it for NT
but it should be readily available.

Now that said, TELNET IS EVIL!!!

It is one of the most insecure ways to administer a system and
Anyone who has ever used plain ole telnet to administer a
live internet server should be shot ;-)

Use SSL, because its very simple to sniff out passwords
in plain telnet.. its all clear text. There are
some telnet daemons (in the Unix world) that do
password encryption already but.. I doubt for NT..

Then there is SSL which uses a secure socket 100% encrypted
session to access the machine, which means sniffing is then
out of the question.

I don't really see much of a point to using.. telnet on NT
since most people want to charge you money etc, for telnet
services on NT4, and it should come with W2K I played
around with their Crude Telnet daemon that used NTLM
for Authentication.. somewhat secure.. (*cough cough*)

All of this is Free if the box is a *nix box.. you can download
binaries/ compile from source for the ultra paranoid SSL
daemons from free.

That said.. you can also get at...
http://sourceware.cygnus.com
most typical GNU utilities including GCC there,
which will allow you to compile SSL, for windows
so you can have secure sockets.  If security is a concern
its really worth investigating.

Now all that said, what is the purpsoe of having the Telnet for
NT? there is a great Free (GPL'd) administration utility
available for NT located at..

http://www.uk.research.att.com/vnc/

Think.. PC Anywhere, and you can also use SSL with that to
totally encrypt the entire session however it already does
some more secure than plain text authentication so you
may or may not care, also it would take someone sniffing
a lot of time with a network dump and a hex editor to
figure out what you were doing since the VNC protocol
*is* plain text but it would take a lot of knowledge
to really make any sense out of the data :)

Anyways.. that is my 2 cents and then some ;)


Jeremy Allen
[EMAIL PROTECTED]
[Insert cool title here]

-Original Message-
From: Angil Stewart [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 2:41 PM
To: [EMAIL PROTECTED]
Subject: Re: Monitoring Telnet Connections


Hmm...you could install something like Black Ice which monitors connections
to and from you're machine.

It's a personal firewall utility.

I think its overkill though, you should just buy a new Telnet Daemon, but I
don't know which would be cheaper for you.

-Gel

- Original Message -
From: Benjamin S. Rogers [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, August 08, 2000 2:39 Gil
Subject: RE: Monitoring Telnet Connections


 I'm not sure exactly what you're after. Your Telnet daemon should provide
 this capability and I don't believe the one that comes on the Res Kit
does.

 A truly exceptional Telnet daemon is that put out by Pragma Systems
 http://www.pragmasys.com/. The feature list is complete and I've used
their
 telnet daemon for a couple years on many production servers and have had
no
 problems.

 Benjamin S. Rogers
 Web Developer, c4.net
 voice: (508) 240-0051
 fax: (508) 240-0057

 -Original Message-
 From: Richard Ramos [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, August 08, 2000 12:26 PM
 To: [EMAIL PROTECTED]
 Subject: OT: Monitoring Telnet Connections


 Anyone know how you can track connections to telnet services in an NT
 Server?

 Thanks in advance.

 Richard Ramos
 [EMAIL PROTECTED]



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=stsbody=sts/cf_talk or send
a message to [EMAIL PROTECTED] with 'unsubscribe' in the
body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Another Stock Grabber out there??

2000-08-08 Thread S R

I have been trying to use cf_stockgrabber and it just doesn't work. I am 
using CF 4.0. Someone said that they had the same problem with CF 4.5 and 
when they downloaded the CF 4.51 update it worked. Does anyone  know of any 
other 'Stock Grabbers', 'weather grabbers' and 'News grabbers' out there??

Thanks

Sal

Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



OT: For Australian CF-Talkers

2000-08-08 Thread Owens, Howard


Please respond privately to [EMAIL PROTECTED]

For a member of our staff going to Australia, I need to get some information
related to using the Internet in Australia ... ISPs, etc.

Specifically, any ISPs to recommend and any that offer free service like
FreeServe in the U.K.?  How is AOL down under?

I assume he'll need a power adaptor for the laptop. What about a phone line
adaptor?  

Also, for communications, what are the wireless companies serving Sydney?

Best,
H.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Can JS be used in Coldfusion templates that are called by HTTP??

2000-08-08 Thread PC



 I want to use a javascript to pefrom a function on a CF variable that is
 being handled in a template that is not displayed in the browser but is
 called by an HTTP command ... will this work?? IS not JS handled in the
 browser and therefore this template will not be able to interpret the JS
 code??
 
 TIA


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Fw: Passing CF variable to Javascript

2000-08-08 Thread PC


- Original Message -
From: PC [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, August 08, 2000 12:10 PM
Subject: Passing CF variable to Javascript


 I know this must be on e of the most basic questions .. but hwo does on
pass
 a variable to Javascript from CF and back?

 I just want to use the Javascript unescape() function to decode an
 URLencoded string stored in a variable called

 lKeystring

 Any tips??




--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Monitoring Telnet Connections

2000-08-08 Thread Benjamin S. Rogers

Jeremy,

The point is not whether you have a use for Telnet on NT or even if remote
administration via Telnet is generally superior to GUI based applications,
but whether you know of a way to monitor telnet connections. Obviously,
Richard has a use: now he's looking for a solution.

In any case, telnet is a perfectly legitimate way to administer Internet
servers (and servers in general). Telnet daemons that support secure
connections are available for NT, but if someone has access to your server
with execute permissions, "sniffing out passwords" is usually the least of
your worries and certainly not the source of your problem.

Benjamin S. Rogers
Web Developer, c4.net
voice: (508) 240-0051
fax: (508) 240-0057

-Original Message-
From: Jeremy Allen [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 3:07 PM
To: [EMAIL PROTECTED]
Subject: RE: Monitoring Telnet Connections


Well.. speaking from the Unix word the netstat command
 with the proper arguments shows you everything that is
connected to your system.. So really its not necessarily
overkill to observe what / who is connected to your system.

Telnet is always on port 23, so anything connected to your system
on port 23 should tell you who is using telnet.  So look for something
that monitors all of the TCP/IP connections on the machine..
Real typical stuff, I have had the need to use anything like it for NT
but it should be readily available.

Now that said, TELNET IS EVIL!!!

It is one of the most insecure ways to administer a system and
Anyone who has ever used plain ole telnet to administer a
live internet server should be shot ;-)

Use SSL, because its very simple to sniff out passwords
in plain telnet.. its all clear text. There are
some telnet daemons (in the Unix world) that do
password encryption already but.. I doubt for NT..

Then there is SSL which uses a secure socket 100% encrypted
session to access the machine, which means sniffing is then
out of the question.

I don't really see much of a point to using.. telnet on NT
since most people want to charge you money etc, for telnet
services on NT4, and it should come with W2K I played
around with their Crude Telnet daemon that used NTLM
for Authentication.. somewhat secure.. (*cough cough*)

All of this is Free if the box is a *nix box.. you can download
binaries/ compile from source for the ultra paranoid SSL
daemons from free.

That said.. you can also get at...
http://sourceware.cygnus.com
most typical GNU utilities including GCC there,
which will allow you to compile SSL, for windows
so you can have secure sockets.  If security is a concern
its really worth investigating.

Now all that said, what is the purpsoe of having the Telnet for
NT? there is a great Free (GPL'd) administration utility
available for NT located at..

http://www.uk.research.att.com/vnc/

Think.. PC Anywhere, and you can also use SSL with that to
totally encrypt the entire session however it already does
some more secure than plain text authentication so you
may or may not care, also it would take someone sniffing
a lot of time with a network dump and a hex editor to
figure out what you were doing since the VNC protocol
*is* plain text but it would take a lot of knowledge
to really make any sense out of the data :)

Anyways.. that is my 2 cents and then some ;)


Jeremy Allen
[EMAIL PROTECTED]
[Insert cool title here]

-Original Message-
From: Angil Stewart [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 2:41 PM
To: [EMAIL PROTECTED]
Subject: Re: Monitoring Telnet Connections


Hmm...you could install something like Black Ice which monitors connections
to and from you're machine.

It's a personal firewall utility.

I think its overkill though, you should just buy a new Telnet Daemon, but I
don't know which would be cheaper for you.

-Gel

- Original Message -
From: Benjamin S. Rogers [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, August 08, 2000 2:39 Gil
Subject: RE: Monitoring Telnet Connections


 I'm not sure exactly what you're after. Your Telnet daemon should provide
 this capability and I don't believe the one that comes on the Res Kit
does.

 A truly exceptional Telnet daemon is that put out by Pragma Systems
 http://www.pragmasys.com/. The feature list is complete and I've used
their
 telnet daemon for a couple years on many production servers and have had
no
 problems.

 Benjamin S. Rogers
 Web Developer, c4.net
 voice: (508) 240-0051
 fax: (508) 240-0057

 -Original Message-
 From: Richard Ramos [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, August 08, 2000 12:26 PM
 To: [EMAIL PROTECTED]
 Subject: OT: Monitoring Telnet Connections


 Anyone know how you can track connections to telnet services in an NT
 Server?

 Thanks in advance.

 Richard Ramos
 [EMAIL PROTECTED]



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit

IE 5 formfield submission problem

2000-08-08 Thread Steve Ray

This is a multi-part message in MIME format.
--133828C2B051D9148A9E08F6
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Hi. This may be slightly off-topic...

We have a form in a CF app which loses all of it's data upon submission, *if* you've 
forgotten to fill in a required field. A javascript pop-up comes up informing you of 
the required field, you hit ok, and then wam! you get an IE page which sez:

Warning: Page has Expired The page you requested was created using information you 
submitted in a form. This page is no longer available. As a security precaution, 
Internet Explorer does not automatically resubmit your information for you.

To resubmit your information and view this Web page, click the Refresh button.

You hit refresh, and all of the fields in the form are now blank - none of the fields 
retained the values you typed in them.

And yet (of course) we have another form in the same app which does not have this 
problem. The form comes back up, and the fields you filled in still display whatever 
info you typed in them.

All of the javascript in the these two files are identical in every way.

This only happens in IE, and I'm pretty sure that this is a well-known problem. I'm 
wondering if any of you have come up with a workaround. I'd come up with a session 
variable fix, but the client wants the app to behave in a consistent way in response 
to errors, and I can't blame them there.

Any ideas, I'd love to hear 'em.

Thanks.


Steve Ray
Matrix Group


--133828C2B051D9148A9E08F6
Content-Type: text/x-vcard; charset=us-ascii;
 name="sray.vcf"
Content-Transfer-Encoding: 7bit
Content-Description: Card for Steve Ray
Content-Disposition: attachment;
 filename="sray.vcf"

begin:vcard 
n:;
tel;fax:703.838.9799
tel;work:703.838.9777
x-mozilla-html:TRUE
url:www.matrixgroup.net
org:Matrix Group International
version:2.1
email;internet:[EMAIL PROTECTED]
title:Developer/Hipster
adr;quoted-printable:;;801 N. Fairfax Street=0D=0ASte. 205;Alexandria;Virginia;22314;
fn:Steve Ray
end:vcard

--133828C2B051D9148A9E08F6--

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: CFMAIL and 4.51

2000-08-08 Thread Bud

On 8/8/00, Robert Everland penned:
I had the same probelm with Imail. The new patch fixes it 6.04. What
I had to do was manually go in and stop the SMTP service then start it again
and it would work. Seemed the 6.03 patch screwed up SMTP. What was happening
was it couldn't send out the mail and was being dcepoisted to my nobody
account. Hope that works for you. Email me off list if you have any more
problems.

Yeah, but it seems like if there was a problem with something like 
that, it wouldn't send out 95% of the e-mails OK.
-- 

Bud Schneehagen - Tropical Web Creations

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
ColdFusion Solutions / eCommerce Development
[EMAIL PROTECTED]
http://www.twcreations.com/
954.721.3452
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Another Stock Grabber out there??

2000-08-08 Thread Chris Straight

well this isn't a CF stockgrabber but you might want to look into it.
basically these guys use XML to create "spies". This service is free and you
can create your own spies as well. I am currently working on using these
spies to grab news from all over the web.

-Original Message-
From: S R [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 8:22 PM
To: [EMAIL PROTECTED]
Subject: Another Stock Grabber out there??


I have been trying to use cf_stockgrabber and it just doesn't work. I am
using CF 4.0. Someone said that they had the same problem with CF 4.5 and
when they downloaded the CF 4.51 update it worked. Does anyone  know of any
other 'Stock Grabbers', 'weather grabbers' and 'News grabbers' out there??

Thanks

Sal

Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Multiple value Select

2000-08-08 Thread Gieseman, Athelene

Still no luck.  I also added an rtrim function to each of the fields in that
line.  And I've tried David's suggestion of using listcontainsnocase.  Still
no luck.  I also changed the code this way:

CFIF listfindnocase(rtrim(getpg.pg),rtrim(EditNameQry.PracticeGroup))
CFSET PGSelected = "Selected"
CFELSE
CFSET PGSelected = "Not Selected"
/cfif
Option #PGSelected# value="#PG#"cfoutput#PG#
#PGSelected#/cfoutput/option

so that I would be able to see if the PGSelected was being set at all.  When
I use this code, the output on all of the options has "Not Selected" after
it.  So I believe the problem is that the listcontains never finds a match.
I've changed the database from a char to a varchar (based on earlier posts
about that issue), edited all of the records in the file to eliminate any
extra spaces at the end, used the rtrim function.  And still it's not ever
finding a match.  

I appreciate the continuing help!  This one is making me crazy (well, more
crazy than usual.)

Athelene

-Original Message-
From: Mark Armendariz [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 1:34 PM
To: [EMAIL PROTECTED]
Subject: RE: Multiple value Select


Try replacing the cfloop with cfoutput like so:


cfquery datasource="FirmDirectory" name="EditNameQry"
  Select*
  FROM  Employees
  WHERE ID='#EditGrid.ID#'
/cfquery

cfquery datasource="FirmDirectory" name="GetPG"
  Select*
  FROM  PracticeGroups
  ORDER BY  PG
/cfquery

cfselect name="NewPG" size="3" multiple
  CFOutput query="GetPG"
CFIF ListContains(GetPG.PG,EditNameQry.PracticeGroup)
CFSET PGSelected = "Selected"
CFELSE
CFSET PGSelected = ""
/cfif
   Option #PGSelected# value="#PG#"#PG#/option
  /cfoutput
/cfselect

I had the CFLoop in there because i had cfoutputs around it in my code...
this should do it for you, if not, let me know...




-Original Message-
From: Gieseman, Athelene [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 1:03 PM
To: '[EMAIL PROTECTED]'
Subject: RE: Multiple value Select


OK.  I have another application where I do in fact use a table for the
lookup.  I've tried to use your example and apply it here.  But nothing is
selected.  My code is as follows:

cfquery datasource="FirmDirectory" name="EditNameQry"
Select * from Employees where ID='#EditGrid.ID#'
/cfquery

cfquery datasource="FirmDirectory" name="GetPG"
Select * from PracticeGroups order by PG
/cfquery

cfselect name="NewPG" size="3" multiple
CFLoop query="GetPG"
CFIF
ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)
CFSET PGSelected = "Selected"
CFELSE
CFSET PGSelected = ""
/cfif
Option #PGSelected#
value="#PG#"cfoutput#PG#/cfoutput/option
/cfloop
/cfselect

Note that if I replace the :  CFIF
ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)
with:  CFIF ListContains(GetPG.PG,"Agribusiness")

Then Agribusiness is in fact selected.  So I'm assuming there's something
wrong with that one line.  Do you happen to see where I went wrong?

TIA,

Athelene

-Original Message-
From: Mark Armendariz [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 7:44 AM
To: [EMAIL PROTECTED]
Subject: RE: Multiple value Select


I did this sort of thing for an intranet i'm working on with selected
company newsgroups... The best way to do it is with a database of your
finance types.  This will allow you to updae the select statement without
changing the hard coding.  So the form will always be right.  Query that
database and the user database.  In the user database, you will want to save
a comma delimited list of the finance types they are assigned for.  When you
bring up the select, you can scroll through all the finance types, and if
the user had any in his/her list, they will set the FinanceSelected variable
to 'selected.'  if they're not in the list, FinanceSelected will be blank.

Hope this helps...

CFQuery Name="GetFinances" datasource="#Application.datasource#"
  SELECTFinanceName
  FROM  tblFinances
  ORDER By  FinanceName
/CFQuery

CFQuery Name="GetCustomer" datasource="#Application.datasource#"
  SELECTCustomerName,
Address,
Finances!--- This Field is a comma delimited list
of the user's
finances ---
  FROM  tblCustomers
  WHERE CustomerID = #Attributes.CustomerID#
/cfgquery


Finances:br

Select Name="Finances" size="#GetFinances.RecordCount#" multiple
  CFLoop query="Finances"
CFIF ListContains(GetCustomer.Finances,#FinanceName#)
  CFSET FinanceSelected = "Selected"
CFELSE
  CFSET FinanceSelected = ""
/cfif
Option #FiannceSelected# value="#FinanceName#"#FinanceName#/option
  /cfloop
/select



Mark Armendariz
Righteous Design

RE: Monitoring Telnet Connections

2000-08-08 Thread Jeremy Allen

That was more of a rant.. less of something directed towards him.

Anywhu.. if it is an NT machine at a command prompt
just type "netstat /?" and you can see a list of options.

Netstat will do exactly what you want.. I guess I should
have been more specific in pointing out netstat is available
for NT ;-D

"netstat -a" and it shows everything connected to a particular
machine.. Hope thats useful


Jeremy Allen
[EMAIL PROTECTED]
[Insert cool title here]


-Original Message-
From: Benjamin S. Rogers [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 3:37 PM
To: [EMAIL PROTECTED]
Subject: RE: Monitoring Telnet Connections


Jeremy,

The point is not whether you have a use for Telnet on NT or even if remote
administration via Telnet is generally superior to GUI based applications,
but whether you know of a way to monitor telnet connections. Obviously,
Richard has a use: now he's looking for a solution.

In any case, telnet is a perfectly legitimate way to administer Internet
servers (and servers in general). Telnet daemons that support secure
connections are available for NT, but if someone has access to your server
with execute permissions, "sniffing out passwords" is usually the least of
your worries and certainly not the source of your problem.

Benjamin S. Rogers
Web Developer, c4.net
voice: (508) 240-0051
fax: (508) 240-0057

-Original Message-
From: Jeremy Allen [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 3:07 PM
To: [EMAIL PROTECTED]
Subject: RE: Monitoring Telnet Connections


Well.. speaking from the Unix word the netstat command
 with the proper arguments shows you everything that is
connected to your system.. So really its not necessarily
overkill to observe what / who is connected to your system.

Telnet is always on port 23, so anything connected to your system
on port 23 should tell you who is using telnet.  So look for something
that monitors all of the TCP/IP connections on the machine..
Real typical stuff, I have had the need to use anything like it for NT
but it should be readily available.

Now that said, TELNET IS EVIL!!!

It is one of the most insecure ways to administer a system and
Anyone who has ever used plain ole telnet to administer a
live internet server should be shot ;-)

Use SSL, because its very simple to sniff out passwords
in plain telnet.. its all clear text. There are
some telnet daemons (in the Unix world) that do
password encryption already but.. I doubt for NT..

Then there is SSL which uses a secure socket 100% encrypted
session to access the machine, which means sniffing is then
out of the question.

I don't really see much of a point to using.. telnet on NT
since most people want to charge you money etc, for telnet
services on NT4, and it should come with W2K I played
around with their Crude Telnet daemon that used NTLM
for Authentication.. somewhat secure.. (*cough cough*)

All of this is Free if the box is a *nix box.. you can download
binaries/ compile from source for the ultra paranoid SSL
daemons from free.

That said.. you can also get at...
http://sourceware.cygnus.com
most typical GNU utilities including GCC there,
which will allow you to compile SSL, for windows
so you can have secure sockets.  If security is a concern
its really worth investigating.

Now all that said, what is the purpsoe of having the Telnet for
NT? there is a great Free (GPL'd) administration utility
available for NT located at..

http://www.uk.research.att.com/vnc/

Think.. PC Anywhere, and you can also use SSL with that to
totally encrypt the entire session however it already does
some more secure than plain text authentication so you
may or may not care, also it would take someone sniffing
a lot of time with a network dump and a hex editor to
figure out what you were doing since the VNC protocol
*is* plain text but it would take a lot of knowledge
to really make any sense out of the data :)

Anyways.. that is my 2 cents and then some ;)


Jeremy Allen
[EMAIL PROTECTED]
[Insert cool title here]

-Original Message-
From: Angil Stewart [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 2:41 PM
To: [EMAIL PROTECTED]
Subject: Re: Monitoring Telnet Connections


Hmm...you could install something like Black Ice which monitors connections
to and from you're machine.

It's a personal firewall utility.

I think its overkill though, you should just buy a new Telnet Daemon, but I
don't know which would be cheaper for you.

-Gel

- Original Message -
From: Benjamin S. Rogers [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, August 08, 2000 2:39 Gil
Subject: RE: Monitoring Telnet Connections


 I'm not sure exactly what you're after. Your Telnet daemon should provide
 this capability and I don't believe the one that comes on the Res Kit
does.

 A truly exceptional Telnet daemon is that put out by Pragma Systems
 http://www.pragmasys.com/. The feature list is complete and I've used
their
 telnet daemon for a couple years on many 

RE: CFHTTP

2000-08-08 Thread Scott Mulholland

We encountered this as well but only in some of the places we were using
cfhttp...we had to use cfx_http to get it working again.  If I recall
correctly it had to do with the headers being sent.

Hope this helps,
Scott

-Original Message-
From: Brian L. Wolfsohn [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 2:14 PM
To: [EMAIL PROTECTED]
Subject: CFHTTP


We've successfully used cfhttp in a cf 4.01 environment.  I'm trying to run 
the same code on a cf 4.51 box now, and am getting the message "connection 
failure" being returned by the cgi program cfhttp is running.  same code is 
working on other boxes w/ 4.01.  So, i could havbe a mis-configured box, or 
is there some code imcompatibility between 4.5.1 and 4.0.1 in the cfhttp 
area ??



Brian L. Wolfsohnhttp://www.cus.com
CUS Business Systems Ft.Lauderdale,FL
Software for Auctioneers (954) 565-5600 Email:[EMAIL PROTECTED]

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Multiple value Select

2000-08-08 Thread Mark Armendariz

take the cfoutput tags out of the options and put them within the entire
select tag:

cfselect name="NewPG" size="3" multiple
  CFOutput query="GetPG"  !--- OPENING CFOUTPUT ---
CFIF ListContains(GetPG.PG,EditNameQry.PracticeGroup)
CFSET PGSelected = "Selected"
CFELSE
CFSET PGSelected = ""
/cfif
   Option #PGSelected# value="#PG#"#PG#/option  !--- NO CFOUTPUTS ---
  /cfoutput  !--- CLOSING CFOUTPUT ---
/cfselect

-Original Message-
From: Gieseman, Athelene [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 3:44 PM
To: '[EMAIL PROTECTED]'
Subject: RE: Multiple value Select


Still no luck.  I also added an rtrim function to each of the fields in that
line.  And I've tried David's suggestion of using listcontainsnocase.  Still
no luck.  I also changed the code this way:

CFIF listfindnocase(rtrim(getpg.pg),rtrim(EditNameQry.PracticeGroup))
CFSET PGSelected = "Selected"
CFELSE
CFSET PGSelected = "Not Selected"
/cfif
Option #PGSelected# value="#PG#"cfoutput#PG#
#PGSelected#/cfoutput/option

so that I would be able to see if the PGSelected was being set at all.  When
I use this code, the output on all of the options has "Not Selected" after
it.  So I believe the problem is that the listcontains never finds a match.
I've changed the database from a char to a varchar (based on earlier posts
about that issue), edited all of the records in the file to eliminate any
extra spaces at the end, used the rtrim function.  And still it's not ever
finding a match.

I appreciate the continuing help!  This one is making me crazy (well, more
crazy than usual.)

Athelene

-Original Message-
From: Mark Armendariz [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 1:34 PM
To: [EMAIL PROTECTED]
Subject: RE: Multiple value Select


Try replacing the cfloop with cfoutput like so:


cfquery datasource="FirmDirectory" name="EditNameQry"
  Select*
  FROM  Employees
  WHERE ID='#EditGrid.ID#'
/cfquery

cfquery datasource="FirmDirectory" name="GetPG"
  Select*
  FROM  PracticeGroups
  ORDER BY  PG
/cfquery

cfselect name="NewPG" size="3" multiple
  CFOutput query="GetPG"
CFIF ListContains(GetPG.PG,EditNameQry.PracticeGroup)
CFSET PGSelected = "Selected"
CFELSE
CFSET PGSelected = ""
/cfif
   Option #PGSelected# value="#PG#"#PG#/option
  /cfoutput
/cfselect

I had the CFLoop in there because i had cfoutputs around it in my code...
this should do it for you, if not, let me know...




-Original Message-
From: Gieseman, Athelene [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 1:03 PM
To: '[EMAIL PROTECTED]'
Subject: RE: Multiple value Select


OK.  I have another application where I do in fact use a table for the
lookup.  I've tried to use your example and apply it here.  But nothing is
selected.  My code is as follows:

cfquery datasource="FirmDirectory" name="EditNameQry"
Select * from Employees where ID='#EditGrid.ID#'
/cfquery

cfquery datasource="FirmDirectory" name="GetPG"
Select * from PracticeGroups order by PG
/cfquery

cfselect name="NewPG" size="3" multiple
CFLoop query="GetPG"
CFIF
ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)
CFSET PGSelected = "Selected"
CFELSE
CFSET PGSelected = ""
/cfif
Option #PGSelected#
value="#PG#"cfoutput#PG#/cfoutput/option
/cfloop
/cfselect

Note that if I replace the :  CFIF
ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)
with:  CFIF ListContains(GetPG.PG,"Agribusiness")

Then Agribusiness is in fact selected.  So I'm assuming there's something
wrong with that one line.  Do you happen to see where I went wrong?

TIA,

Athelene

-Original Message-
From: Mark Armendariz [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 7:44 AM
To: [EMAIL PROTECTED]
Subject: RE: Multiple value Select


I did this sort of thing for an intranet i'm working on with selected
company newsgroups... The best way to do it is with a database of your
finance types.  This will allow you to updae the select statement without
changing the hard coding.  So the form will always be right.  Query that
database and the user database.  In the user database, you will want to save
a comma delimited list of the finance types they are assigned for.  When you
bring up the select, you can scroll through all the finance types, and if
the user had any in his/her list, they will set the FinanceSelected variable
to 'selected.'  if they're not in the list, FinanceSelected will be blank.

Hope this helps...

CFQuery Name="GetFinances" datasource="#Application.datasource#"
  SELECTFinanceName
  FROM  tblFinances
  ORDER By  FinanceName
/CFQuery


Re: Monitoring Telnet Connections

2000-08-08 Thread Richard Ramos

Well, actually I've had some computer constantly trying to connect to our
server via Telnet.  I want to find out the originating IP to track down what
is happening.

Side note, I cannot shut down Telnet services because our hosting site uses
that to monitor the server.

Richard
[EMAIL PROTECTED]

- Original Message -
From: "Benjamin S. Rogers" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, August 08, 2000 12:36 PM
Subject: RE: Monitoring Telnet Connections


 Jeremy,

 The point is not whether you have a use for Telnet on NT or even if remote
 administration via Telnet is generally superior to GUI based applications,
 but whether you know of a way to monitor telnet connections. Obviously,
 Richard has a use: now he's looking for a solution.

 In any case, telnet is a perfectly legitimate way to administer Internet
 servers (and servers in general). Telnet daemons that support secure
 connections are available for NT, but if someone has access to your server
 with execute permissions, "sniffing out passwords" is usually the least of
 your worries and certainly not the source of your problem.

 Benjamin S. Rogers
 Web Developer, c4.net
 voice: (508) 240-0051
 fax: (508) 240-0057

 -Original Message-
 From: Jeremy Allen [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, August 08, 2000 3:07 PM
 To: [EMAIL PROTECTED]
 Subject: RE: Monitoring Telnet Connections


 Well.. speaking from the Unix word the netstat command
  with the proper arguments shows you everything that is
 connected to your system.. So really its not necessarily
 overkill to observe what / who is connected to your system.

 Telnet is always on port 23, so anything connected to your system
 on port 23 should tell you who is using telnet.  So look for something
 that monitors all of the TCP/IP connections on the machine..
 Real typical stuff, I have had the need to use anything like it for NT
 but it should be readily available.

 Now that said, TELNET IS EVIL!!!

 It is one of the most insecure ways to administer a system and
 Anyone who has ever used plain ole telnet to administer a
 live internet server should be shot ;-)

 Use SSL, because its very simple to sniff out passwords
 in plain telnet.. its all clear text. There are
 some telnet daemons (in the Unix world) that do
 password encryption already but.. I doubt for NT..

 Then there is SSL which uses a secure socket 100% encrypted
 session to access the machine, which means sniffing is then
 out of the question.

 I don't really see much of a point to using.. telnet on NT
 since most people want to charge you money etc, for telnet
 services on NT4, and it should come with W2K I played
 around with their Crude Telnet daemon that used NTLM
 for Authentication.. somewhat secure.. (*cough cough*)

 All of this is Free if the box is a *nix box.. you can download
 binaries/ compile from source for the ultra paranoid SSL
 daemons from free.

 That said.. you can also get at...
 http://sourceware.cygnus.com
 most typical GNU utilities including GCC there,
 which will allow you to compile SSL, for windows
 so you can have secure sockets.  If security is a concern
 its really worth investigating.

 Now all that said, what is the purpsoe of having the Telnet for
 NT? there is a great Free (GPL'd) administration utility
 available for NT located at..

 http://www.uk.research.att.com/vnc/

 Think.. PC Anywhere, and you can also use SSL with that to
 totally encrypt the entire session however it already does
 some more secure than plain text authentication so you
 may or may not care, also it would take someone sniffing
 a lot of time with a network dump and a hex editor to
 figure out what you were doing since the VNC protocol
 *is* plain text but it would take a lot of knowledge
 to really make any sense out of the data :)

 Anyways.. that is my 2 cents and then some ;)


 Jeremy Allen
 [EMAIL PROTECTED]
 [Insert cool title here]

 -Original Message-
 From: Angil Stewart [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, August 08, 2000 2:41 PM
 To: [EMAIL PROTECTED]
 Subject: Re: Monitoring Telnet Connections


 Hmm...you could install something like Black Ice which monitors
connections
 to and from you're machine.

 It's a personal firewall utility.

 I think its overkill though, you should just buy a new Telnet Daemon, but
I
 don't know which would be cheaper for you.

 -Gel

 - Original Message -
 From: Benjamin S. Rogers [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Tuesday, August 08, 2000 2:39 Gil
 Subject: RE: Monitoring Telnet Connections


  I'm not sure exactly what you're after. Your Telnet daemon should
provide
  this capability and I don't believe the one that comes on the Res Kit
 does.
 
  A truly exceptional Telnet daemon is that put out by Pragma Systems
  http://www.pragmasys.com/. The feature list is complete and I've used
 their
  telnet daemon for a couple years on many production servers and have had
 no
  problems.
 
  Benjamin S. Rogers
  

RE: Traffic control

2000-08-08 Thread Steve Pierce

Yes there are several from companies like Intel, Cisco and others. But the
applications and hardware start at US$25,000 and quickly go up. Intel's
solution just announced last month starts at $40,000.

 - Steve


-Original Message-
From: Ing. Luis J. Ramirez Flores [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 1:53 PM
To: [EMAIL PROTECTED]
Subject: OT:Traffic control


Anyone knows a good program that control the amount of bytes
sended an received by the net?

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Monitoring Telnet Connections

2000-08-08 Thread Benjamin S. Rogers

Excellent. That's probably the best suggestion yet as it doesn't require
Richard to purchase a new telnet daemon.

Benjamin S. Rogers
Web Developer, c4.net
voice: (508) 240-0051
fax: (508) 240-0057

-Original Message-
From: Jeremy Allen [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 3:53 PM
To: [EMAIL PROTECTED]
Subject: RE: Monitoring Telnet Connections


That was more of a rant.. less of something directed towards him.

Anywhu.. if it is an NT machine at a command prompt
just type "netstat /?" and you can see a list of options.

Netstat will do exactly what you want.. I guess I should
have been more specific in pointing out netstat is available
for NT ;-D

"netstat -a" and it shows everything connected to a particular
machine.. Hope thats useful


Jeremy Allen
[EMAIL PROTECTED]
[Insert cool title here]


-Original Message-
From: Benjamin S. Rogers [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 3:37 PM
To: [EMAIL PROTECTED]
Subject: RE: Monitoring Telnet Connections


Jeremy,

The point is not whether you have a use for Telnet on NT or even if remote
administration via Telnet is generally superior to GUI based applications,
but whether you know of a way to monitor telnet connections. Obviously,
Richard has a use: now he's looking for a solution.

In any case, telnet is a perfectly legitimate way to administer Internet
servers (and servers in general). Telnet daemons that support secure
connections are available for NT, but if someone has access to your server
with execute permissions, "sniffing out passwords" is usually the least of
your worries and certainly not the source of your problem.

Benjamin S. Rogers
Web Developer, c4.net
voice: (508) 240-0051
fax: (508) 240-0057

-Original Message-
From: Jeremy Allen [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 3:07 PM
To: [EMAIL PROTECTED]
Subject: RE: Monitoring Telnet Connections


Well.. speaking from the Unix word the netstat command
 with the proper arguments shows you everything that is
connected to your system.. So really its not necessarily
overkill to observe what / who is connected to your system.

Telnet is always on port 23, so anything connected to your system
on port 23 should tell you who is using telnet.  So look for something
that monitors all of the TCP/IP connections on the machine..
Real typical stuff, I have had the need to use anything like it for NT
but it should be readily available.

Now that said, TELNET IS EVIL!!!

It is one of the most insecure ways to administer a system and
Anyone who has ever used plain ole telnet to administer a
live internet server should be shot ;-)

Use SSL, because its very simple to sniff out passwords
in plain telnet.. its all clear text. There are
some telnet daemons (in the Unix world) that do
password encryption already but.. I doubt for NT..

Then there is SSL which uses a secure socket 100% encrypted
session to access the machine, which means sniffing is then
out of the question.

I don't really see much of a point to using.. telnet on NT
since most people want to charge you money etc, for telnet
services on NT4, and it should come with W2K I played
around with their Crude Telnet daemon that used NTLM
for Authentication.. somewhat secure.. (*cough cough*)

All of this is Free if the box is a *nix box.. you can download
binaries/ compile from source for the ultra paranoid SSL
daemons from free.

That said.. you can also get at...
http://sourceware.cygnus.com
most typical GNU utilities including GCC there,
which will allow you to compile SSL, for windows
so you can have secure sockets.  If security is a concern
its really worth investigating.

Now all that said, what is the purpsoe of having the Telnet for
NT? there is a great Free (GPL'd) administration utility
available for NT located at..

http://www.uk.research.att.com/vnc/

Think.. PC Anywhere, and you can also use SSL with that to
totally encrypt the entire session however it already does
some more secure than plain text authentication so you
may or may not care, also it would take someone sniffing
a lot of time with a network dump and a hex editor to
figure out what you were doing since the VNC protocol
*is* plain text but it would take a lot of knowledge
to really make any sense out of the data :)

Anyways.. that is my 2 cents and then some ;)


Jeremy Allen
[EMAIL PROTECTED]
[Insert cool title here]

-Original Message-
From: Angil Stewart [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 2:41 PM
To: [EMAIL PROTECTED]
Subject: Re: Monitoring Telnet Connections


Hmm...you could install something like Black Ice which monitors connections
to and from you're machine.

It's a personal firewall utility.

I think its overkill though, you should just buy a new Telnet Daemon, but I
don't know which would be cheaper for you.

-Gel

- Original Message -
From: Benjamin S. Rogers [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, August 08, 2000 2:39 Gil
Subject: 

RE: I need a host. Intermedia testimonials

2000-08-08 Thread Levi Wallach

I think a lot of these places may be great if you are paying for a dedicated
box, collocation, etc.  But for us little guys who can only afford a
$50/month shared account, I think most of these hosts don't value our
business very much.  I've had experience with three hosts so far and have
been dissatisfied with all of them at one time or another.  Media3 was
impossible to reach on the phone and when I could reach them their demeanor
was pretty unprofessional.  The last straw was when they stopped logging our
site via webtrends and despite notifying them several times of the problem,
they never did fix it.  Infoquest was a lot better, but I had a problem with
slowness communicating with my data source, and again the tech support was
pretty unprofessional.  I'm now with Interland, and though I like their
control panel because I can do most of what I need myself instead of relying
on their support people, I have also had issues with them.  A few months ago
when trying to get a CFX tag installed, it took a few weeks before I could
finally got it resolved.  I gave them an executable install file and instead
of installing it on their server, they just renamed it to .dll and used that
as the file!  But it took forever to actually find out they had done that
because they only had (maybe still do) one person who was trusted with
installing CFX tags and configuring the CF Server!  This for a company which
I'm sure has at least hundreds if not thousands of CF clients!  They would
not let me speak to him, so I had to rely on half a dozen normal support
people half of whom failed to enter a trouble ticket, or call back despite
promises to the contrary.  I ended up having to retrieve the dll's myself
and send them these because they said they could not run the executable on a
shared server.  I've also been noticing a lot of slowness, and when
addressing this their only answer is "oh well, you are sharing a box with
250 other clients, so the only way to solve this is by moving to a
higher-level account."  Gee, thanks a lot.  Unfortunately, I think this may
be the only way.  The other option I've been playing with is one where
several of us smaller folk could get together, pool our resources, and get a
dedicated/collocated box somewhere and only have to deal with maybe at most
a dozen other people sharing the box for about the same price that we would
be paying otherwise.  I don't know, what do you think?

Levi


| Levi Wallach - [EMAIL PROTECTED]  P:(703) 237-0443 F: 703-237-3490|
| Senior Webmaster, Tran Interactive Design Group - http://www.tidg.com |

| Creator, DVDMON.com - http://www.dvdmon.com - [EMAIL PROTECTED] |
| DVD News, Views  Reviews, Music  Book Reviews, PDA Channel Content, |
| Contests, DVD Buying Guide and more!  |
-



 -Original Message-
 From: Brian L. Wolfsohn [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, August 08, 2000 10:56 AM
 To: [EMAIL PROTECTED]
 Subject: RE: I need a host. Intermedia testimonials


 At 10:50 AM 8/8/00 , you wrote:

 we've use www.media3.net for over 3 years now.  i can recommend them
 highly.  we started out putting on individual domains, and now
 have 4 boxes
 co-located on their farm.



 Here's www.america.net .  They've had CF service since 1998, I
 believe, but
 my wife and I are just now getting started with them on it for
 our personal
 business, so I can't give you an eyewitness account of how easy it is to
 work with them on this.
 
 
 -Original Message-
 From: Gavin Myers [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, August 08, 2000 10:53 AM
 To: '[EMAIL PROTECTED]'
 Subject: RE: I need a host. Intermedia testimonials
 
 
 2 Months ago i would have said Interland... but they started to move crap
 around and our database hasn't been put back on our server
 YET... its been
 over a month now with no db, I'm pretty pissed at it, and maybe
 its just one
 of those things. Their price is ok, the site is ok, they have sql.
 
 -Original Message-
 From: Eric Dawson [mailto:[EMAIL PROTECTED]]
 Sent: Monday, August 07, 2000 9:04 PM
 To: [EMAIL PROTECTED]
 Subject: I need a host. Intermedia testimonials
 
 
 I need a host. and I gather from cftalk that Intermedia is the
 winner. I am
 interested in hearing testimonials or other alternatives.
 
 1 client, 10 domains and growing.
 
 Thanks
 Eric Dawson
 
 Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
 
 -
 ---
 --
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/c
f_talk or
send a 

Any know problems with cold fusion server on Win2k?

2000-08-08 Thread Christopher S Martin

Hi. I have a few quick questions about Running Cold Fusion Server 4.5 with
IIS 5.0 on Windows 2000 Advanced server with service pack 1.  First, in
general, are there any known problems or vulnerabilities with this
particular configuration?  I am familiar with the OLE DB problem on
allaire's site, and have applied the fix.  Are there any other problems
anyone is aware of?
Also, we are getting an error when we try to use cold fusion on the server
with the above set up.
The error text is:




Error Occurred While Processing Request
Error Diagnostic Information
ODBC Error Code = IM002 (Data source not found and no default driver
specified)


[Microsoft][ODBC Driver Manager] Data source 'CFSNIPPETS' not found and no
default driver specified

Hint: In order to use ODBC data sources with Cold Fusion you must create the
data source using the Data Sources page of the Cold Fusion Administrator. In
addition, if you are running under Windows NT you must make sure that the
Data Source is created as a System DSN in order for it to be available to
ColdFusion.



The error occurred while processing an element with a general identifier of
(CFQUERY), occupying document position (3:2) to (3:52).


Date/Time: 08/08/00 16:00:25
Browser: Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)
Remote Address: 127.0.0.1
HTTP Referer:


As I mentioned above, the fix for the OLE DB problems with windows 2000 has
already been applied.  Any suggestions?  Thanks in advance.

Chris Martin
[EMAIL PROTECTED]
FSEnablers
www.fsenablers.com

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Setting a Cookie and Redirecting the Browser

2000-08-08 Thread Benjamin S. Rogers

Has anyone come up with a plausible way of setting a cookie and redirecting
the browser from within a ColdFusion 4.01 template using HTTP headers (as
opposed to META tag redirects)?

Specifically, we're trying to redirect an image call from the browser. The
image fails to load when it comes upon a HTTP "Refresh" header, and the
"Location" header seems to negate the setting of the cookie.

Benjamin S. Rogers
Web Developer, c4.net
voice: (508) 240-0051
fax: (508) 240-0057

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Multiple value Select

2000-08-08 Thread Gieseman, Athelene

No luck.  I think there's a problem in that the listcontains isn't finding
any matches.  I can't figure out why.  I display the previously selected
items in another part of the form and it is identical to the options in the
database.  There is a comma separating the selected items.  For example, the
record viewed via SQL shows:  "Agribusiness,Commercial Litigation" (less the
quotes) in the field.  Both of those practice groups are identically listed
in the GetPG.PG list.  Yet neither of them are showing up selected in the
control.  Plus, if I replace 

CFIF ListContains(GetPG.PG,EditNameQry.PracticeGroup)
with 

CFIF ListContains(GetPG.PG,"Agribusiness")

the Agribusiness option is selected.  So I think I'm doing something wrong
in how I'm using the second parameter of the ListContains. 


Athelene

  

-Original Message-
From: Mark Armendariz [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 3:00 PM
To: [EMAIL PROTECTED]
Subject: RE: Multiple value Select


take the cfoutput tags out of the options and put them within the entire
select tag:

cfselect name="NewPG" size="3" multiple
  CFOutput query="GetPG"  !--- OPENING CFOUTPUT ---
CFIF ListContains(GetPG.PG,EditNameQry.PracticeGroup)
CFSET PGSelected = "Selected"
CFELSE
CFSET PGSelected = ""
/cfif
   Option #PGSelected# value="#PG#"#PG#/option  !--- NO
CFOUTPUTS ---
  /cfoutput  !--- CLOSING CFOUTPUT ---
/cfselect

-Original Message-
From: Gieseman, Athelene [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 3:44 PM
To: '[EMAIL PROTECTED]'
Subject: RE: Multiple value Select


Still no luck.  I also added an rtrim function to each of the fields in that
line.  And I've tried David's suggestion of using listcontainsnocase.  Still
no luck.  I also changed the code this way:

CFIF listfindnocase(rtrim(getpg.pg),rtrim(EditNameQry.PracticeGroup))
CFSET PGSelected = "Selected"
CFELSE
CFSET PGSelected = "Not Selected"
/cfif
Option #PGSelected# value="#PG#"cfoutput#PG#
#PGSelected#/cfoutput/option

so that I would be able to see if the PGSelected was being set at all.  When
I use this code, the output on all of the options has "Not Selected" after
it.  So I believe the problem is that the listcontains never finds a match.
I've changed the database from a char to a varchar (based on earlier posts
about that issue), edited all of the records in the file to eliminate any
extra spaces at the end, used the rtrim function.  And still it's not ever
finding a match.

I appreciate the continuing help!  This one is making me crazy (well, more
crazy than usual.)

Athelene

-Original Message-
From: Mark Armendariz [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 1:34 PM
To: [EMAIL PROTECTED]
Subject: RE: Multiple value Select


Try replacing the cfloop with cfoutput like so:


cfquery datasource="FirmDirectory" name="EditNameQry"
  Select*
  FROM  Employees
  WHERE ID='#EditGrid.ID#'
/cfquery

cfquery datasource="FirmDirectory" name="GetPG"
  Select*
  FROM  PracticeGroups
  ORDER BY  PG
/cfquery

cfselect name="NewPG" size="3" multiple
  CFOutput query="GetPG"
CFIF ListContains(GetPG.PG,EditNameQry.PracticeGroup)
CFSET PGSelected = "Selected"
CFELSE
CFSET PGSelected = ""
/cfif
   Option #PGSelected# value="#PG#"#PG#/option
  /cfoutput
/cfselect

I had the CFLoop in there because i had cfoutputs around it in my code...
this should do it for you, if not, let me know...




-Original Message-
From: Gieseman, Athelene [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 1:03 PM
To: '[EMAIL PROTECTED]'
Subject: RE: Multiple value Select


OK.  I have another application where I do in fact use a table for the
lookup.  I've tried to use your example and apply it here.  But nothing is
selected.  My code is as follows:

cfquery datasource="FirmDirectory" name="EditNameQry"
Select * from Employees where ID='#EditGrid.ID#'
/cfquery

cfquery datasource="FirmDirectory" name="GetPG"
Select * from PracticeGroups order by PG
/cfquery

cfselect name="NewPG" size="3" multiple
CFLoop query="GetPG"
CFIF
ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)
CFSET PGSelected = "Selected"
CFELSE
CFSET PGSelected = ""
/cfif
Option #PGSelected#
value="#PG#"cfoutput#PG#/cfoutput/option
/cfloop
/cfselect

Note that if I replace the :  CFIF
ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)
with:  CFIF ListContains(GetPG.PG,"Agribusiness")

Then Agribusiness is in fact selected.  So I'm assuming there's something
wrong with that one line.  Do you happen to see where I went wrong?

TIA,

Athelene


RE: I need a host. Intermedia testimonials

2000-08-08 Thread Kevin Langevin

I've actually just built a rinky-dink server (AMD K6-2 350 w/160 MB Ram, a
13 GB 7200RPM IDE HD and an excellent 10/100 NIC, and a friend who's
involved with me in the South Florida CFUG colocated it at the company for
which he's the CTO.  Nice to have those kinds of connections.  Anyway, it's
all mine, only has a couple two-three domains right now, and handles
everything I need it to do.  SOmetimes this is the best idea.  I had all the
parts for the machine laying around, so it isn't costing me anything.  But
even if this weren't the situation, a few of you guys pooling some cash
together to buy a $1,500 machine, and colocating it with someone like
Comstar or one of the other larger companies that do colocation would solve
your problems.  I think you can colocate your own server with most places
for like $500 a month.  Get 10 of you together, pay the same $50 a month
you're paying now, and as long as you can trust one another to respect each
other's space, you'd be golden.

CFUG-SFL Manager
-Kev
/CFUG-SFL Manager

 -Original Message-
 From: Levi Wallach [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, August 08, 2000 4:16 PM
 To: [EMAIL PROTECTED]
 Subject: RE: I need a host. Intermedia testimonials


 I think a lot of these places may be great if you are paying for
 a dedicated
 box, collocation, etc.  But for us little guys who can only afford a
 $50/month shared account, I think most of these hosts don't value our
 business very much.  I've had experience with three hosts so far and have
 been dissatisfied with all of them at one time or another.  Media3 was
 impossible to reach on the phone and when I could reach them
 their demeanor
 was pretty unprofessional.  The last straw was when they stopped
 logging our
 site via webtrends and despite notifying them several times of
 the problem,
 they never did fix it.  Infoquest was a lot better, but I had a
 problem with
 slowness communicating with my data source, and again the tech support was
 pretty unprofessional.  I'm now with Interland, and though I like their
 control panel because I can do most of what I need myself instead
 of relying
 on their support people, I have also had issues with them.  A few
 months ago
 when trying to get a CFX tag installed, it took a few weeks before I could
 finally got it resolved.  I gave them an executable install file
 and instead
 of installing it on their server, they just renamed it to .dll
 and used that
 as the file!  But it took forever to actually find out they had done that
 because they only had (maybe still do) one person who was trusted with
 installing CFX tags and configuring the CF Server!  This for a
 company which
 I'm sure has at least hundreds if not thousands of CF clients!  They would
 not let me speak to him, so I had to rely on half a dozen normal support
 people half of whom failed to enter a trouble ticket, or call back despite
 promises to the contrary.  I ended up having to retrieve the dll's myself
 and send them these because they said they could not run the
 executable on a
 shared server.  I've also been noticing a lot of slowness, and when
 addressing this their only answer is "oh well, you are sharing a box with
 250 other clients, so the only way to solve this is by moving to a
 higher-level account."  Gee, thanks a lot.  Unfortunately, I
 think this may
 be the only way.  The other option I've been playing with is one where
 several of us smaller folk could get together, pool our
 resources, and get a
 dedicated/collocated box somewhere and only have to deal with
 maybe at most
 a dozen other people sharing the box for about the same price
 that we would
 be paying otherwise.  I don't know, what do you think?

 Levi

 
 | Levi Wallach - [EMAIL PROTECTED]  P:(703) 237-0443 F: 703-237-3490|
 | Senior Webmaster, Tran Interactive Design Group - http://www.tidg.com |

 
 | Creator, DVDMON.com - http://www.dvdmon.com - [EMAIL PROTECTED] |
 | DVD News, Views  Reviews, Music  Book Reviews, PDA Channel Content, |
 | Contests, DVD Buying Guide and more!  |
 -



  -Original Message-
  From: Brian L. Wolfsohn [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, August 08, 2000 10:56 AM
  To: [EMAIL PROTECTED]
  Subject: RE: I need a host. Intermedia testimonials
 
 
  At 10:50 AM 8/8/00 , you wrote:
 
  we've use www.media3.net for over 3 years now.  i can recommend them
  highly.  we started out putting on individual domains, and now
  have 4 boxes
  co-located on their farm.
 
 
 
  Here's www.america.net .  They've had CF service since 1998, I
  believe, but
  my wife and I are just now getting started with them on it for
  our personal
  business, so I can't give you an eyewitness account of how
 easy it is to
  work with them on 

RE: Any know problems with cold fusion server on Win2k?

2000-08-08 Thread Kevin Langevin

I'm running CF 4.5 on Win2K Advance Server, and I've had virtually NO
problems with it.  I think the problem with CF Snippets is something that
happens to all Win2K installations, because I had the same thing happen.  I
haven't heard of or experienced any other problems except once in a while,
CF 4.51 seems to spike in memory usage (from a norm of about 16MB to around
45MB).  Usually stopping and starting the service takes care of it, and
eventually it goes back down, but it takes quite a while.

CFUG-SFL Manager
-Kev
/CFUG-SFL Manager

 -Original Message-
 From: Christopher S Martin [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, August 08, 2000 4:16 PM
 To: [EMAIL PROTECTED]
 Subject: Any know problems with cold fusion server on Win2k?


 Hi. I have a few quick questions about Running Cold Fusion Server 4.5 with
 IIS 5.0 on Windows 2000 Advanced server with service pack 1.  First, in
 general, are there any known problems or vulnerabilities with this
 particular configuration?  I am familiar with the OLE DB problem on
 allaire's site, and have applied the fix.  Are there any other problems
 anyone is aware of?
 Also, we are getting an error when we try to use cold fusion on the server
 with the above set up.
 The error text is:

 --
 --
 

 Error Occurred While Processing Request
 Error Diagnostic Information
 ODBC Error Code = IM002 (Data source not found and no default driver
 specified)


 [Microsoft][ODBC Driver Manager] Data source 'CFSNIPPETS' not found and no
 default driver specified

 Hint: In order to use ODBC data sources with Cold Fusion you must
 create the
 data source using the Data Sources page of the Cold Fusion
 Administrator. In
 addition, if you are running under Windows NT you must make sure that the
 Data Source is created as a System DSN in order for it to be available to
 ColdFusion.



 The error occurred while processing an element with a general
 identifier of
 (CFQUERY), occupying document position (3:2) to (3:52).


 Date/Time: 08/08/00 16:00:25
 Browser: Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)
 Remote Address: 127.0.0.1
 HTTP Referer:
 --
 --
 
 As I mentioned above, the fix for the OLE DB problems with
 windows 2000 has
 already been applied.  Any suggestions?  Thanks in advance.

 Chris Martin
 [EMAIL PROTECTED]
 FSEnablers
 www.fsenablers.com

 --
 
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Setting a Cookie and Redirecting the Browser

2000-08-08 Thread Kevin Langevin

Any reason why you don't want to use a META tag refresh to redirect?  That's
what I always use when I need the cookie to be set.

CFUG-SFL Manager
-Kev
/CFUG-SFL Manager

 -Original Message-
 From: Benjamin S. Rogers [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, August 08, 2000 4:18 PM
 To: [EMAIL PROTECTED]
 Subject: Setting a Cookie and Redirecting the Browser


 Has anyone come up with a plausible way of setting a cookie and
 redirecting
 the browser from within a ColdFusion 4.01 template using HTTP headers (as
 opposed to META tag redirects)?

 Specifically, we're trying to redirect an image call from the browser. The
 image fails to load when it comes upon a HTTP "Refresh" header, and the
 "Location" header seems to negate the setting of the cookie.

 Benjamin S. Rogers
 Web Developer, c4.net
 voice: (508) 240-0051
 fax: (508) 240-0057

 --
 
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf
 _talk or send a message to [EMAIL PROTECTED] with
 'unsubscribe' in the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Another Stock Grabber out there??

2000-08-08 Thread Chris Straight

Sorry about that the address is http://www.spyonit.com

-Original Message-
From: Chris Straight [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 12:42 PM
To: [EMAIL PROTECTED]
Subject: RE: Another Stock Grabber out there??


well this isn't a CF stockgrabber but you might want to look into it.
basically these guys use XML to create "spies". This service is free and you
can create your own spies as well. I am currently working on using these
spies to grab news from all over the web.

-Original Message-
From: S R [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 8:22 PM
To: [EMAIL PROTECTED]
Subject: Another Stock Grabber out there??


I have been trying to use cf_stockgrabber and it just doesn't work. I am
using CF 4.0. Someone said that they had the same problem with CF 4.5 and
when they downloaded the CF 4.51 update it worked. Does anyone  know of any
other 'Stock Grabbers', 'weather grabbers' and 'News grabbers' out there??

Thanks

Sal

Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Setting a Cookie and Redirecting the Browser

2000-08-08 Thread Brandon Behrens

Been there, done that.  I wound up using a meta tag to refresh the page with
a time of 0.  That was the only way I could get it to work.

Brandon

Brandon Behrens
The Internet Design Firm
512.451.5225
[EMAIL PROTECTED]
http://www.theidf.com

-Original Message-
From: Benjamin S. Rogers [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 3:18 PM
To: [EMAIL PROTECTED]
Subject: Setting a Cookie and Redirecting the Browser

Has anyone come up with a plausible way of setting a cookie and redirecting
the browser from within a ColdFusion 4.01 template using HTTP headers (as
opposed to META tag redirects)?

Specifically, we're trying to redirect an image call from the browser. The
image fails to load when it comes upon a HTTP "Refresh" header, and the
"Location" header seems to negate the setting of the cookie.

Benjamin S. Rogers
Web Developer, c4.net
voice: (508) 240-0051
fax: (508) 240-0057


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



  1   2   >