Reverse Look up on IP address

2000-12-07 Thread Duane Boudreau

Is there a way to do a reverse look up on an IP address and see who it is
registered to?

TIA,
Duane Boudreau
CFExperts.Com


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFTEXTINPUT

2000-12-07 Thread Sim Graves

I'm planning to use this applet in a big new site. I tried to use CSS to
do the same thing but ran into problems with Netscape.

Has anyone had any bad experiences with CFTEXTINPUT?  IF so, what was
your work around to get a text input box in a form that can be scaled
precisely? 

TIA

Sim Graves

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: wddx --> SQL Server 7 ?

2000-12-07 Thread David Cummins

Its a string - just insert it!

Only prob is, if you're just inserting that, searching for things within it will
be slow...

Dave

[EMAIL PROTECTED] wrote:
> 
> Hi folks,
> 
> I'm using CF 4.0.1 and SQL 7. I've built up a fair sized Structure (e.g. up
> to about 10K) over several data entry pages, and want to insert the 30 to
> 60 rows into my database. So these are my options, and I want to do the
> third one:
> 
> 1. CFLOOP through structure in CF, doing insert statements (I won't do
> this: too many db calls from CF).
> 2. Use CF to create a large string, pass that to stored proc, parses and
> loop through with inserts. I can do this.
> 3. Create wddx packet, send that to a stored proc somehow. This is what I'd
> like to do.
> 
> Any hints, articles, etc on INSERTING xml or Wddx? I know SQL can create
> it, but I'm at a total loss on inserting.
> 
> TIA,
> 
> Mark
> 
> Mark Wimer, Bird Point Count Database
> American Bird Conservancy, c/o
> USGS-Patuxent Wildlife Research Center
> 12100 Beech Forest Road, Laurel, MD  20708-4038
> Ph: 301-497-5596   Email: [EMAIL PROTECTED]
> 
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Need help interpreting error message.

2000-12-07 Thread David Cummins

Not sure...

Try two things:
(a) Try a different variable name than user.
(b) Try assigning it to a local variable, then setting the session variable
equal to that.

I wonder if session variables don't support structures...

If you're using CFSCRIPT, there may be some error the line before causing it to
misunderstand what session.user is.

Lon Lentz wrote:
> 
>   Anyone know why we should be getting the message below? Is this an
> indicator that the user variable already exists?
> 
> An error occurred while evaluating the expression:
> 
>  session.user = structNew()
> 
> Error near line 199, column 7.
> 
> 
> 
> Cannot assign result to symbol session.user
> 
> Lon Lentz
> Applications Developer & CyberEntomologist - Alvion Technologies
> DataWarehousing and List Sales - Market Your Lists on the Net!
> [EMAIL PROTECTED]
> 941-574-8600 Ext. 210

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: get Browser name

2000-12-07 Thread Dave Watts

> Is there a cf function to get client browser name?
> If anyone knows, please advise me.

You can reference the variable CGI.HTTP_USER_AGENT.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: get Browser name

2000-12-07 Thread Andres Leon

Try this...


 

 


Every request has a set of CGI variables associated with it... the
cgi,http_user_agent variable stores that type of inforlamtion.

hope it helps!

Andres

- Original Message -
From: "Keiichi Miyata" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, December 07, 2000 5:52 PM
Subject: get Browser name


> Is there a cf function to get client browser name?
> If anyone knows, please advise me.
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: cfscript rules of thumb: loop performance

2000-12-07 Thread Runar Petursson

On a performance note, the loop constructs in CFSCRIPT are considerably
slower (take 5 times longer in some cases) than the CFLOOP counterpart.
This is due to increased flexibility with the cfscript versions.  If you're,
for example, doing a standard for loop, it's usually much faster to use a
CFLOOP with a CFSCRIPT tag within it.

You can test different scenarios by using gettickcount() and doing very
large loops.  Try this code for fun:


  time = gettickcount();
  for(i=1; i lt 10; i=i+1)
{
WriteOutput("");
}
time = gettickcount() - time;
writeoutput(time);







: #time#

-Original Message-
From: Eric Fickes [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 07, 2000 9:05 AM
To: CF-Talk
Subject: cfscript rules of thumb


Ok, I went ahead and have started using CFSCRIPT and I'm loving it so far.
I was wondering if anybody could give me some CFSCRIPT tips, rule of thumb,
best practice type advice.  I've got alot of old code that I want to go back
and trim up, but I want to make sure that I use CFSCRIPT in the best place,
and take advantage of it.

E
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CF 4.5.1 SP2 Problems

2000-12-07 Thread eisensmi

We had a major instability problem with CF 4.5.1 SP2 on NT.

We flew in an Allaire consultant who had us put in tons of
CFLOCK statements and things got better. However, I feel that
it is extremely important for you guys to know, that there is not
a single example in the CFDOCS Examples, which come with
the product, which has CFLOCK statements correctly installed.

We found out the hard way, that you need to use CFLOCK
statements profusely throughout, but it is unbelievable to me
to look through all the examples in the CFDOCS folder, and
see poorly written CF code. For that matter, just start running
lots of those examples, under load, and you will see problems.

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFFILE and IE 5.0 on a Mac doesn't work

2000-12-07 Thread Darryl Lyons

CFTRY and CATCH the error? I only had this problem when the file field was
optional... 

-Original Message-
From: Craig A. Zingerline [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 08, 2000 6:06 AM
To: CF-Talk
Subject: CFFILE and IE 5.0 on a Mac doesn't work


Hello,

I'm wondering if anyone has found a workaround to the following
situation...we are using CFFILE to upload .gif and .jpg files to our server.
The scripts work fine on Netscape and IE on a PC, but only work with
Netscape on a Macintosh.  The mac OS is 9.0 and we are using IE 5.0.  I have
a couple of links with relevant information below, but have not been able to
find (nor do I know) if a workaround to this problem exists.  We get the
following error code:

"Error attempting to save uploaded file to path
'D:\inetpub\websites\oursite\.' Access is denied. (error 5)"

Microsoft has a knowledge base article (which doesn't look promising) at:
http://support.microsoft.com/support/kb/articles/Q161/3/95.asp?LN=EN-US&SD=g
n&FR=0&qry=RFC%201867&rnk=3&src=DHCS_MSPSS_gn_SRCH&SPR=IE

A thread in the forums about this is at:
http://forums.allaire.com/devconf/Index.cfm?Message_ID=428762

THANK YOU FOR ANY HELP!!  IT IS GREATLY APPRECIATED!

Cheers,

Craig

Craig A. Zingerline
Advanced Media Productions
Web Application Developer
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Need help interpreting error message.

2000-12-07 Thread Thomas Brown

can you send the code surrounding this as well???

-Original Message-
From: Lon Lentz [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 07, 2000 5:25 PM
To: CF-Talk
Subject: Need help interpreting error message.



  Anyone know why we should be getting the message below? Is this an
indicator that the user variable already exists?



An error occurred while evaluating the expression:

 session.user = structNew()

Error near line 199, column 7.



Cannot assign result to symbol session.user




Lon Lentz
Applications Developer & CyberEntomologist - Alvion Technologies
DataWarehousing and List Sales - Market Your Lists on the Net!
[EMAIL PROTECTED]
941-574-8600 Ext. 210
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: ver 4, 0, 1, 0 upgrade to 4.5 ?

2000-12-07 Thread John Cummings

Adrian,

I think you may have answered your own question with your posting.   If all
is well, and you are aware of the new features included in CF 4.5 but feel
you have no need for them, then there is probably no good reason to upgrade.
The old "if it ain't broke, don't fix it" adage.

As evidenced by the CF 4.5 release notes, the major reason for the release
was to move Cold Fusion to a platform independent code base.   It doesn't
sound like this is an issue for you.

HTH,
John Cummings
[EMAIL PROTECTED]

- Original Message -
From: Adrian Cesana <[EMAIL PROTECTED]>
To: CF-Talk <[EMAIL PROTECTED]>
Sent: Thursday, December 07, 2000 4:41 PM
Subject: ver 4, 0, 1, 0 upgrade to 4.5 ?


> I am running CF ver 4, 0, 1, 0 and all is well.  I dont really currently
> have a need   for any features in 4.5 that I am aware of and all is
running
> well.  Is there any reason I should upgrade to 4.5 ? Is it any faster?
> security?
>
> Thanks,Adrian
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Fw: Rich Media Ad Server

2000-12-07 Thread defective david

Anyone know of a CF app similar to CF_AdBanner that can handle Rich Media
ads (flash, java, just HTML) and show ads until they're reached a certain
number of impressions or click-thrus?

---
defective david
http://defective.net


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFX_Encrypt "strange test of spacing problems when returntext"

2000-12-07 Thread defective david

I'm using CFX_Encrypt from:
http://www.ejim.co.uk/module/encrypt/index.cfm

And I get this message:
strange test of spacing problems when returntext the brown cow now knows how
to encrypt text

When I do this:


#ReturnText#

BTW, it's mapped to CFX_encrypt2.

Any docs for this tag?  Any ideas?

---
defective david
http://defective.net


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Security Concerns Question regarding Cfquery reguried username and password in sql environment

2000-12-07 Thread defective david

i already have a large userbase logged in using client vars stored in the
registry.  is there a migration path to storing client vars in a db?

also, what tabe and columsn does CF look for in the datasource?

---
defective david
http://defective.net


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF and Apache

2000-12-07 Thread Dave Watts

> I've managed to hook CF 4.5 up to Apache just fine. One 
> thing I can't do is get Apache to pull .cfm pages from 
> mapped drives. I can get any other extension just fine, 
> but when I request a .cfm page I get 404 NOT FOUND.
> I'm guessing this is a restriction in the CF processing 
> module.
> 
> Can anyone help?

Is the CF service running as a user which can access those mapped drives? By
default, CF runs within the local system security context, which doesn't
have rights to the network.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: OT: Syndicated Content

2000-12-07 Thread Nick McClure

I understand this stuff, I am more referring to a place that will actually 
let you grab their content and how much they charge for it.

At 03:50 PM 12/7/2000 -0500, you wrote:
>If you read up on CFHTTP and WDDX in any good CF Book, you'll learn a lot
>about writing intelligent agents that grab syndicated content, and how to
>syndicate content of your own.
>
>~Simon
>
> > Simon Horwith
> > Certified ColdFusion Developer
> > Fig Leaf Software
> > 1400 16th St NW, # 220
> > Washington DC 20036
> > 202.797.6570 (direct line)
> > www.figleaf.com
> >
>
>
>-Original Message-
>From: Eric Dawson [mailto:[EMAIL PROTECTED]]
>Sent: Thursday, December 07, 2000 11:52 AM
>To: CF-Talk
>Subject: Re: OT: Syndicated Content
>
>
>some good experience.
>
>What is the content for? I may be able to help.
>
>Eric
>
>
>From: Nick McClure <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: CF-Talk <[EMAIL PROTECTED]>
>Subject: OT: Syndicated Content
>Date: Thu, 07 Dec 2000 10:12:45 -0500
>
>I am trying to find some Syndicated Content that also includes movie times.
>
>Anybody out there had any experiences(good or bad) with any companies on
>trying to import content via CF.
>
>
>
>--
>Nick McClure[EMAIL PROTECTED]
>Technical Director  859.245.9656
>squareFish Mediawww.squareFish.com
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: cfscript rules of thumb

2000-12-07 Thread Robert Everland III

Actually I strongly disagree with not using it in a huge amount of code. I
love cfscript. It is indeed much much faster. I use it everywhere I can, not
only does it give me practive in writing in a style that is an offshoot of C
but it also makes my code run faster. CFSCript also caches a lot better,
especially when you are using it for large chunks of code. Another added
benefit is it doesn't put line breaks in your code. I was conistantly having
problems with cf_rad that was making my page huge because of looping, I
changed the tag to as much cfscript as I could and now it puts everything
really close together. I don't think it is harder to debug, it's just like
any other debugging it tells me that it got screwed up and what line and I
go back and read it to figure out where it is screwed up at. I wish cfscript
worked with every tag there was instead of me having to pick and choose.


Bob Everland

-Original Message-
From: Robert Hinojosa [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 07, 2000 4:28 PM
To: CF-Talk
Subject: RE: cfscript rules of thumb


Don't use CFSCRIPT for large pieces of code.  Debugging inside a CFSCRIPT
tag is horrible.

You can use CFSCRIPT for setting more than 3 variables in a row. Much faster
than cfsets.
SWITCH/CASE Statements --> break works in CFSCRIPT.

My two shiny nickels.

Robert Hinojosa
Senior WebDeveloper
[EMAIL PROTECTED]
www.hencie.com
972-671-0011 ext.284

-Original Message-
From: Eric Fickes [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 07, 2000 11:05 AM
To: CF-Talk
Subject: cfscript rules of thumb


Ok, I went ahead and have started using CFSCRIPT and I'm loving it so far.
I was wondering if anybody could give me some CFSCRIPT tips, rule of thumb,
best practice type advice.  I've got alot of old code that I want to go back
and trim up, but I want to make sure that I use CFSCRIPT in the best place,
and take advantage of it.

E
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Regular Expressions - Programming Interface?

2000-12-07 Thread dave fauth

Here is a link to one, although I don't think it is totally 100% Perl
compatible.

http://www.funduc.com/search_replace_wizard.htm

dave

At 10:56 AM 12/7/2000 -0500, you wrote:
>Per a discussion at last night's CFUG, 
>
>Is anyone aware of any programming interface that would help new programmers
>learn to write regular expressions?  Preferably Perl-style REs, but actually
>I would be interested to see if anyone has some kind of "regular expression
>builder" or programming interface for CF, Perl or any RE-capable language.
>I am not sure what this would look like, but like many of us I have been
>casually writing REs by hand for the last 8 years and I don't remember ever
>seeing anything to assist new programmers other than books.
>
>thanks for any info,
>
>Don
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



ODBC errors with MS Access after MDAC 2.6

2000-12-07 Thread Dru Whitledge

After upgrading to MDAC 2.6 (contains ODBC) at my ISP I am now experiencing
memory errors for MS Access queries that once ran without a problem (and
still do on my MDAC 2.1 server). 

The CF server provides the following error message -- (and of course stops
execution)

CMemoryException: unknown cause

 PCodeRuntimeContextImp::executeSQLTagCFQuery::endTag

Has anyone else had this problem? Anyone aware of any fixes? As I started
into this I had assumed that the new MDAC 2.6 upgrade simply tightened up
some requirment for correct SQL syntax -- now I'm not so sure. 

One query I'm rebuilding seems to fail on a adding a simple concatenation
to create an alias field -- (field1) & (field2) AS Field3 while (field1) AS
Field3 works fine. That's hard to workaround. 

Thanks,

Dru


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Big companies using CF

2000-12-07 Thread Dylan Bromby


>Internal sites and extranets don't get a lot of traffic.

This isn't true. I've developed a very encompassing system for a $200M/year
company with a network of over 2000 dealers and reps. The internal system
gets nearly as much traffic as its web site (both in CF) which is approx. 1M
CF page views a month. Not as much traffic as some sites maybe, but still
fairly high.

>A typical example is BMWUSA web site that was mentioned here earlier. I can
guarantee you this site isn't getting hit nearly as much as VW's new film
web site.

Where are the stats on these sites posted?


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CF & JBase?

2000-12-07 Thread Dylan Bromby

Anyone here ever use CF & JBase? Or just JBase? :)

--Dylan



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



listAppend vs. concatination

2000-12-07 Thread Vaughan Evans

I'm just curious as to which of these 2 methods is faster and why:

1) ">

2) ")>

thanks,
vaughan


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Dynamic Verity

2000-12-07 Thread Dian Oktosoma

Dear all,

Can I use verity for searching content that I store in database tables ?

thanks

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: "CF_SQL_DATE"

2000-12-07 Thread sebastian palmigiani


I tried using ODBC date object and got the same error message. After doing
some search on the allaire forum I read that others were also having
problems. The suggestion was to use cf_sql_timestamp and it worked just fine
with that.

Thanks for your input.

Sebastian


on 12/7/00 2:41 PM, Hayes, David at [EMAIL PROTECTED] wrote:

> Are StartDate and EndDate ODBC date objects?
> 
> If not, it may be that you're telling SQL server to expect ODBC dates, but
> you're not them.  (Whereas in your CFQUERY, SQL server is figuring out how
> to handle that date data.)
> 
> What happens if you use value="#createODBCDate(createDate(  year from startdate>))#"?
> 
> -Original Message-
> From: sebastian palmigiani [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, December 07, 2000 10:52 AM
> To: CF-Talk
> Subject: "CF_SQL_DATE"
> 
> 
> 
> I am using CF 4.0 with MS SQL Server 7.0
> 
> Is there an issue with using  cfsqltype="CF_SQL_DATE" in a stored procedure?
> 
> I get the following error code while using a stored procedure
> 
> --
> ODBC Error Code = S1C00 (Driver not capable)
> [Microsoft][ODBC SQL Server Driver]Optional feature not implemented
> --
> 
> I have isolated the problem to the following code
> 
>  cfsqltype="CF_SQL_DATE"
> dbvarname="@StartDate"
> value="#StartDate#">
> 
>  cfsqltype="CF_SQL_DATE"
> dbvarname="@EndDate"
> value="#EndDate#">
> 
> I have used the regular  tag to do the same query with no problem.
> 
> Sebastian
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT: Syndicated Content

2000-12-07 Thread Cold Fusion

Or if you had the chance to attend Simon's lecture at the Dev Conf.  :)

Sorry, but if you weren't going to blow your own horn

John Cummings
Allaire
[EMAIL PROTECTED]

- Original Message -
From: Simon Horwith <[EMAIL PROTECTED]>
To: CF-Talk <[EMAIL PROTECTED]>
Sent: Thursday, December 07, 2000 3:50 PM
Subject: RE: OT: Syndicated Content


> If you read up on CFHTTP and WDDX in any good CF Book, you'll learn a lot
> about writing intelligent agents that grab syndicated content, and how to
> syndicate content of your own.
>
> ~Simon
>
> > Simon Horwith
> > Certified ColdFusion Developer
> > Fig Leaf Software
> > 1400 16th St NW, # 220
> > Washington DC 20036
> > 202.797.6570 (direct line)
> > www.figleaf.com
> >
>
>
> -Original Message-
> From: Eric Dawson [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, December 07, 2000 11:52 AM
> To: CF-Talk
> Subject: Re: OT: Syndicated Content
>
>
> some good experience.
>
> What is the content for? I may be able to help.
>
> Eric
>
>
> From: Nick McClure <[EMAIL PROTECTED]>
> Reply-To: [EMAIL PROTECTED]
> To: CF-Talk <[EMAIL PROTECTED]>
> Subject: OT: Syndicated Content
> Date: Thu, 07 Dec 2000 10:12:45 -0500
>
> I am trying to find some Syndicated Content that also includes movie
times.
>
> Anybody out there had any experiences(good or bad) with any companies on
> trying to import content via CF.
>
>
>
> --
> Nick McClure[EMAIL PROTECTED]
> Technical Director  859.245.9656
> squareFish Mediawww.squareFish.com
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Big companies using CF

2000-12-07 Thread Rob Keniger

on 8/12/00 5:57 AM, Tim Bahlke at [EMAIL PROTECTED] wrote:

> With a site I developed for Lucent, I had 233,000+ unique users in a 24 hr
> period.
> 
> CF had no problems.

What sort of server setup did you have? What OS? Was this a cluster?

-- 

Rob Keniger

big bang solutions





~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFFILE and IE 5.0 on a Mac doesn't work

2000-12-07 Thread Rob Keniger

on 8/12/00 6:06 AM, Craig A. Zingerline at
[EMAIL PROTECTED] wrote:

> I'm wondering if anyone has found a workaround to the following
> situation...we are using CFFILE to upload .gif and .jpg files to our server.
> The scripts work fine on Netscape and IE on a PC, but only work with
> Netscape on a Macintosh.  The mac OS is 9.0 and we are using IE 5.0.  I have
> a couple of links with relevant information below, but have not been able to
> find (nor do I know) if a workaround to this problem exists.  We get the
> following error code:

What I have found is that IE 5 Mac appends control characters (I think
CR/LF) to the end of values passed through form fields when you are using
multipart/form-data encoding. If you are using a field to specify the file
name then this could be the problem. I wrote a procedure for a site that had
this problem that did a user-agent check and stripped the rightmost two
characters if it was Mac IE. Seemed to work OK.

-- 

Rob Keniger

big bang solutions





~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Big companies using CF

2000-12-07 Thread Cold Fusion

Again,

One of the big reasons a lot of big companies use CF is for the portability
to other operating systems.


- Original Message -
From: Tim Bahlke <[EMAIL PROTECTED]>
To: CF-Talk <[EMAIL PROTECTED]>
Sent: Thursday, December 07, 2000 2:57 PM
Subject: RE: Big companies using CF


> >How much traffic does their site receive? daily, weekly, monthly.
> >
> >How much of that traffic is hitting dynamic CF generated pages?
> >
> >This is a much better benchmark for you to judge Cold Fusion on.
>
> With a site I developed for Lucent, I had 233,000+ unique users in a 24 hr
> period.
>
> CF had no problems.
>
> Tim Bahlke
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF outputing SQL Server int field with decimal's?

2000-12-07 Thread Kinley Pon

Hello Sandra,

You mentioned of a LA CFUG.  Is this the Los Angeles CFUG?  If so, GREAT.  I
was wondering if there was a user group here.  I live in Monterey Park.
Where is meeting held and when?

Justme
Kinley

-Original Message-
From: Sandra Clark [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 06, 2000 4:31 PM
To: CF-Talk
Subject: RE: CF outputing SQL Server int field with decimal's?

This came up in our LA CFUG meeting last night.  Apparently the behavior in
how CF sees a number was changed internally from 4.0 to 4.5.1.

CF doesn't know the difference between a precision variable and an int.  It
just sees a number.

Use NumberFormat() or Int to display correctly.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 04, 2000 10:27 AM
To: CF-Talk
Subject: CF outputing SQL Server int field with decimal's?


I've successfully upsized an access 2000 db
to SQL Server 6.5 using SQL Server 7.0 import
export wizard, when I cfoutput the data or look
at the table data through rds the integer fields
are of the format:

1.00
2.00
2,345.00

instead of:

1
2
2345

But, when I query the db with the query tool in SQL
Server 6.5 I get the correct output of:

1
2
2345

Any integer fields are like this now including index's
and primary key's.

When I run the following query:


SELECT BillID,BillNumber
FROM Bills
WHERE SessionID = 2001
 AND BillNumber = 4


#editdb.RecordCount#


#BillID#  - #BillNumber#
#int(BillID)# - #int(BillNumber)#


I get:

1
51.00 -  4.00
51 - 4

So this really screws things up. If I can't find a way
to keep the integer fields whole number I'll have to
change alot of code to int(BillNumber), etc.

Anyone have any ideas what I did wrong or how I could
fix what I've got.

Thanks.

Ric Smith
h_o_l_o_g_r_a_p_h_i_c
103 Meridian St.
Tallahassee, Florida
32301
www.holographic.com
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Application.cfm

2000-12-07 Thread Kinley Pon

Thanks Matthew...

Kinley

-Original Message-
From: Walker, Matthew [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 06, 2000 7:55 PM
To: CF-Talk
Subject: RE: Application.cfm

> So, if I assigned a value to a "request.site.webroot" variable in
> app_globals, will this variable be available at anytime
> throughout all the
> templates in any directory?  I ask this question because I am
> having error
> messages where the variable is not recognized.

Yes, if you are calling app_globals directly or indirectly on every page.

> It was made mentioned that request scope variables are only
> used from page
> to page using cfincludes and cfmodules.  I am not sure what
> this means.

Request variables are visible inside cfincudes and cfmodules. They are not
passed from Web page to Web page.

> The fusebox methodology book seems to indicate to use the
> request variables
> as though they are global variables but I am getting these
> unrecognized
> variable messages.

They *ARE* global variables.

> scratch my head wondering why I would have unrecognized
> session variables at
> times.  It may be recognized on one page but immediately not
> on another.

That's weird. But what session you are in is related to what 
tag you are usiung. If there is more than one  in a site, you
may have problems.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Which message-board to get

2000-12-07 Thread Bud

On 12/7/00, W Luke penned:
>I'm in a rut trying to decide what I need for my site.  I urgently need to
>add some user-interaction in the form of message boards, or a BBS - but it
>needs to be expandable and customisable, not to mention Access-accessible :)
>
>I want to be able to have different parts of the site available for
>"discussion."  For example; they might want to discuss a product, in which
>case, that particular product would later be flagged as "in discussion."  I
>don't know of any software that is really elasticated enough.  I don't like
>the Perl-based one either, as I find them harder to integrate into my code.
>
>Can anyone advise?

I set up fusetalk for a customer and it was very easy and works real 
well. Runs on Access or SQL Server. The open source is pretty 
expensive though.
-- 

Bud Schneehagen - Tropical Web Creations

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

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: coldfusion bug

2000-12-07 Thread Michael Thomas

Sounds like someone else was making changes to that document at the same 
time that you were. When they saved it & you went to make changes it 
prompted you to see if you would like to refresh the page to make sure it is 
the current template.


>From: kwasi <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: CF-Talk <[EMAIL PROTECTED]>
>Subject: RE: coldfusion bug
>Date: Thu, 07 Dec 2000 18:31:51 -
>
>I am using ColdFusion 4.5 SP2, on Windows 2000.
>
>I copied this phrase: 
>
>and when I went to paste it, this was pasted.
>
>---
>Warning
>---
>Another user or process has modified document
>"C:\Inetpub\wwwroot\web\wwwroot\imediabriefnew\RFI\Tender\adminviewtender.cf
>m."  Do you wish to reload it?
>---
>Yes   No
>---
>
>Any suggestions as to why this happens.
>
>
>I would greatly appreciate your reply.
>
>
>Kwasi Date-Bah
>
>
>
>
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: IE vs. Netscape CF Help

2000-12-07 Thread C Kong

new to the forum and new to CF at that...

pardon if this sounds tacky, but just wondering whether or not anyone out
there knew what CF programmers at the beginner, intermediate, and senior
levels made in terms of salaries in general?


company vs. freelance?


what do you think the future of the web will do to these salaries?

thank you in advanced

colin

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CF Salaries Info

2000-12-07 Thread C Kong


- Original Message - 
From: "C Kong" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, December 07, 2000 7:23 PM
Subject: Re: IE vs. Netscape CF Help


> new to the forum and new to CF at that...
> 
> pardon if this sounds tacky, but just wondering whether or not anyone out
> there knew what CF programmers at the beginner, intermediate, and senior
> levels made in terms of salaries in general?
> 
> 
> company vs. freelance?
> 
> 
> what do you think the future of the web will do to these salaries?
> 
> thank you in advanced
> 
> colin
> 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: session variables

2000-12-07 Thread Darryl Lyons

Just to let you know, you can also setup a request structure for each of
your session variables and duplicate the values in the
application.cfm/app_globals.cfm file. 

i.e.





That way you only have to lock your session vars once.. Any comments or
further explainations on this?

Darryl Lyons

-Original Message-
From: Nick Betts [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 07, 2000 9:30 PM
To: CF-Talk
Subject: RE: session variables


Ensure that wherever you reference or set session variables that you lock
them by enclosing the code with:

your code


regards,
Nick Betts
PoulterNet
Leeds
UK.

-Original Message-
From: Dominic J. Doucet-Lorang [mailto:[EMAIL PROTECTED]]
Sent: 07 December 2000 11:21
To: CF-Talk
Subject: session variables


I am getting a strange occurrences with session variables on a project.  On 
some systems that login to the project it looses the session variables and 
on others it does not loose any of the session variables.   Anyone have any 
ideas?

Dominic
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: IIS NT Chal/Resp Problem

2000-12-07 Thread Jackson Moore (CFTalk)

I am having problems setting up NT Challenge/Response authentication.

I am running NT4.0 Server SP5, CF4.5.1 SP2 and all clients are IE4.01 or
higher (this is an intranet application).

The web server has a default web site which isn't used.
The web server has a second website called home.companyname.com with a
separate IP address.  The pages in the website that do not have NT
authentication enabled work fine (i.e.
http://home.companyname.com/default.cfm works fine) so I know the web
site is set up properly and the IP address is being resolved, etc.

I have one page called login.cfm which has NT authentication enabled.

The problem is that if I try to access
http://home.companyname.com/login.cfm, the user is prompted with a
security dialog box as if they couldn't be automatically authenticated.

Interestingly, if I go to
http://defaultservername/somedirectory/somedirectory/login.cfm, the user
is not prompted and is logged in automatically.  The login.cfm file is
the same file (i.e. http://home.comapanyname.com/ has as it's home
directory e:\inetpub\wwwroot\somedirectory\somedirectory\).

I have enabled NT authentication on login.cfm via the default web site
and via home.companyname.com.

My current thinking is that it might be related to delegation.  I know
that when using NT authentication, the web server impersonates this user
but since it doesn't know the password, the service can't access other
resources on the network since the service can't authenticate to the
other resource.  But...if this is true, how do you enable NT
authentication on servers hosting multiple websites.  I must be missing
something.

Any help you could give would be much appreciated.

Thanks

Jackson Moore
[EMAIL PROTECTED]


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Which message-board to get

2000-12-07 Thread Dennis Powers

For a CF BBS, check out "Forums". It is now an open-Source project.

http://www.forumspot.org/



Best Regards,

Dennis Powers
UXB Internet
(203) 879-2844
http://www.uxbinfo.com/

-Original Message-
From: W Luke [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 07, 2000 6:19 PM
To: CF-Talk
Subject: Which message-board to get

Hi,

I'm in a rut trying to decide what I need for my site.  I urgently need to
add some user-interaction in the form of message boards, or a BBS - but it
needs to be expandable and customisable, not to mention Access-accessible :)

I want to be able to have different parts of the site available for
"discussion."  For example; they might want to discuss a product, in which
case, that particular product would later be flagged as "in discussion."  I
don't know of any software that is really elasticated enough.  I don't like
the Perl-based one either, as I find them harder to integrate into my code.

Can anyone advise?

Thanks

Will
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: List w/" " delims

2000-12-07 Thread Robert Hinojosa

I use a carraige return and line feed all the time as a delimiter.  Why
doesn't that break?

Robert Hinojosa 
Senior WebDeveloper 
[EMAIL PROTECTED] 
www.hencie.com 
972-671-0011 ext.284  

-Original Message-
From: Billy Cravens [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 07, 2000 1:21 PM
To: CF-Talk
Subject: Re: List w/" " delims


Keep in mind that list delimiters can only be 1 character.

-- 
Billy Cravens
[EMAIL PROTECTED]


Eric Fickes wrote:
> 
> Got a List question for you.
> 
> I've got a text file that I need to parse and it's " delimited list, in a
> way.  The list format is this.
> 
> "Full Name" "Email Address" "Group List" "Login Name"
> "Demo user for startup" "" " 1;" "Demo"
> 
> I was hoping to somehow use " " as a delimeter, but that's not working.
> When I do that it takes out the spaces in the column names. I'd like to
take
> 
> "Full Name" "Email Address" "Group List" "Login Name"
> 
> and turn it into
> 
> Full Name,Email Address,Group List,Login Name
> 
> Any ideas?
> 
> E
> 
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Setting up CF on Windows ME

2000-12-07 Thread Jeffry Houser


  www.apache.org

  I just set up Apache and ColdFusion on Windows ME.  I had no problems, 
and had everything up and running in an hour.  Allow for more time if 
you've never set up Apache, however if everyone is having so many 
problems with IIS / PWS this is an alternative.  

-- 
Jeff Houser | mailto:[EMAIL PROTECTED]
AIM: Reboog711  | ICQ: 5246969 | Phone: 860-229-2781
--
Instant Cold Fusion 4.5  | ISBN: 0-07-213238-8   
Due out 3rd Quarter 2001
--
DotComIt, LLC
database driven web data using ColdFusion, Lotus Notes/Domino
--
Half of the Alternative Folk Acoustic Duo called Far Cry Fly 
http://www.farcryfly.com | http://www.mp3.com/FarCryFly
--
Promise me no dead end streets, and I'll guarantee we'll have a road

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Help!!! Cooke Monster!!

2000-12-07 Thread Jeffry Houser


  If you use CFCOOKIE, there is a domain attribute.

   If you set a domain cookie from:   test.beachin.net 

   You should be able to read it from  *.beachin.net

  It looks as if you are doing it correctly, but I haven't used the 
meta tag syntax to set cookies, so I can't be sure. If you drop down to 
CFCOOKIE, make sure you do not use CFLOCATION on the same page.

Emmet McGovern wrote:
> 
> Is there a way to set up a cookie on one domain and read it from another
> domain?  I have 2 servers, one is unix and the other is cf.  I need to
> secure the cf server by only allowing access to it if a cookie has been set
> by the linux server, only im having problems reading the cookie on the cf
> side.  The linux servers domain would be  content.beachin.net while the cf
> server is files.beachin.net
> 
> right now im trying to meta set the cookie on the unix server
> (content.beachin.net)
> 
>  domain=".beachin.net">
> 
> and check its existence on the cf server (files.beachin.net) with
> 
> 
> blah blah blah
> 
> 
> Am i doing something wrong? Or should i be doing this another way?
> 
> Thanks,
> 
> Emmet McGovern
> Systems Admin
> Byte Size Inc.
> 
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Studio 4.5.1 - Setup Question

2000-12-07 Thread Dave Hannum

Hello,

I just installed Studio 4.5.1 (finally upgraded from 3.1).  In 3.1 there was
an option to upper case the tags when you inserted them.  I have searched
for two days now, and have been unable to locate this switch in 4.5.1.  Does
it offer that option?  And if so, can someone tell me where it is?

Thanks,
Dave

=
"What we need is a list of specific unknown problems we will encounter"

David Hannum
Web Analyst/Programmer
Ohio University
[EMAIL PROTECTED]
(740) 597-2524





~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: coldfusion bug

2000-12-07 Thread Lord, Heath

Someone else has the file open, and made a change, or you have 2 copies of
the file open, and made a change to one without looking at the other.
Happens a lot in multi developer environments.

Cheers.
Heath

-Original Message-
From: kwasi [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 07, 2000 1:32 PM
To: CF-Talk
Subject: RE: coldfusion bug


I am using ColdFusion 4.5 SP2, on Windows 2000.

I copied this phrase: 

and when I went to paste it, this was pasted.

---
Warning
---
Another user or process has modified document
"C:\Inetpub\wwwroot\web\wwwroot\imediabriefnew\RFI\Tender\adminviewtender.cf
m."  Do you wish to reload it?
---
Yes   No   
---

Any suggestions as to why this happens.


I would greatly appreciate your reply.


Kwasi Date-Bah
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: IncrementValue() or #counter# + 1

2000-12-07 Thread Matthew Walker

I had been using IncrementValue() *extensively*, assuming it was quicker --
incrementing, rather than performing arithmetic, is quicker in some
languages like C.

I just ran a test and it turns out it's slower.

For this I got about 330ms:






For this I got about 265ms:






So where did this function come from? Did early CF really not have
arithmetic??


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Help!!! Cooke Monster!!

2000-12-07 Thread Jon Hall

You shouldn't be allowed to read cookies from another domain. That's why
people are scared of cookies to this day. There were bugs in older browsers
that made this possible.
I assume these have been patched up now though.

jon
- Original Message -
From: "Emmet McGovern" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, December 07, 2000 1:37 PM
Subject: Help!!! Cooke Monster!!


> Is there a way to set up a cookie on one domain and read it from another
> domain?  I have 2 servers, one is unix and the other is cf.  I need to
> secure the cf server by only allowing access to it if a cookie has been
set
> by the linux server, only im having problems reading the cookie on the cf
> side.  The linux servers domain would be  content.beachin.net while the cf
> server is files.beachin.net
>
> right now im trying to meta set the cookie on the unix server
> (content.beachin.net)
>
>  domain=".beachin.net">
>
> and check its existence on the cf server (files.beachin.net) with
>
> 
> blah blah blah
> 
>
> Am i doing something wrong? Or should i be doing this another way?
>
>
>
> Thanks,
>
> Emmet McGovern
> Systems Admin
> Byte Size Inc.
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: List w/" " delims

2000-12-07 Thread Scott, Andrew

I always use a character that is very less likely to be typed in by the user
or in any normal text string like the carrot sign for example (^) Then
all you need to do then is do what you need and replace the (^) with (,)...

regards

Andrew Scott
Senior Cold Fusion Application Developer



-Original Message-
From: Eric Fickes [mailto:[EMAIL PROTECTED]]
Sent: 07 December 2000 15:31
To: CF-Talk
Subject: List w/" " delims


Got a List question for you.

I've got a text file that I need to parse and it's " delimited list, in a
way.  The list format is this.

"Full Name" "Email Address" "Group List" "Login Name"
"Demo user for startup" "" " 1;" "Demo" 

I was hoping to somehow use " " as a delimeter, but that's not working.
When I do that it takes out the spaces in the column names. I'd like to take

"Full Name" "Email Address" "Group List" "Login Name"

and turn it into

Full Name,Email Address,Group List,Login Name

Any ideas?

E
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: coldfusion bug

2000-12-07 Thread Garza, Jeff

This message indicates that the page has changed since the last time you
viewed in in Studio (some other process has changed the file since you last
saved it.)  It could be as simple as you edited the page in dreamweaver and
switched back, or someone else is editing the page via RDS, etc...

Not a big deal unless you are the only developer. Then it's a big deal...;-)

Jeff Garza
Web Developer
Spectrum Astro, Inc.
480-892-8200

[EMAIL PROTECTED]
http://www.spectrumastro.com



-Original Message-
From: kwasi [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 07, 2000 11:32 AM
To: CF-Talk
Subject: RE: coldfusion bug


I am using ColdFusion 4.5 SP2, on Windows 2000.

I copied this phrase: 

and when I went to paste it, this was pasted.

---
Warning
---
Another user or process has modified document
"C:\Inetpub\wwwroot\web\wwwroot\imediabriefnew\RFI\Tender\adminviewtender.cf
m."  Do you wish to reload it?
---
Yes   No   
---

Any suggestions as to why this happens.


I would greatly appreciate your reply.


Kwasi Date-Bah
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CF Salary info

2000-12-07 Thread C Kong


new to the forum here and new to coldfusion period.

excuse the tacky question, but i was wondering what a CF beginner , 
intermediate level, and senior level CF programmer can make in terms of 
salary out there.

company versus free-lance?

also anyone have any opinions on how the growth of CF and the internet in 
the future will affect these salries?

thanks in advanced

colin
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: passing cfquery results to another page

2000-12-07 Thread Bob Silverberg

A wddx packet is not a complex data type - that's one of the main things
that people use wddx for - you can store a structure or a query or an array
in a wddx packet, and then store the packet in a client variable.

Bob

-Original Message-
From: Rick Lamb [mailto:[EMAIL PROTECTED]]
Sent: December 7, 2000 11:41 AM
To: CF-Talk
Subject: RE: passing cfquery results to another page


Correct me if I'm wrong here, but I didn't think client, form, url, or
cookies variables can hold complex data like a wddx packet. I would suggest
using a session or application variables for these techniques.

Rick

-Original Message-
From: Bob Silverberg [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 07, 2000 9:19 AM
To: CF-Talk
Subject: RE: passing cfquery results to another page


There are a number of ways, the first two that come to mind are:
1. Store it in a session variable.
2. Convert it to a WDDX packet, then store it in a client or cookie
variable, or pass it via a URL or form parameter.  The last two aren't
advisable if the query is of any reasonable size.

Bob


-Original Message-
From: sam sidhom [mailto:[EMAIL PROTECTED]]
Sent: December 7, 2000 9:42 AM
To: CF-Talk
Subject: passing cfquery results to another page


Can anyone tell me if there is anyway CF will pass the results of a CFQuery
to another page without having to requery the database?

Thanks,

Jennifer Johnson
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



get Browser name

2000-12-07 Thread Keiichi Miyata

Is there a cf function to get client browser name?
If anyone knows, please advise me.

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: passing cfquery results to another page

2000-12-07 Thread Dave Watts

> Correct me if I'm wrong here, but I didn't think client, form, 
> url, or cookies variables can hold complex data like a wddx 
> packet. I would suggest using a session or application 
> variables for these techniques.

No, you can put WDDX into any of those scopes (although you might have other
issues with putting WDDX into a URL parameter). Data in WDDX format is
simply string data. That's the point of WDDX - it allows you to take a
complex data object, serialize it into WDDX, then pass it around like any
other string.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Advise needed

2000-12-07 Thread W Luke

Hi,

I've been using Cold Fusion for a little over 3 months, and am really
comfortable using it now and have designed a new site entirely in CF, as
well as some Intranet apps for a company I know.  I'm happy with what I'm
doing, and I'm learning more, except I'm not sure what the next stage is,
nor how to get there.

Thing is, I'm a little concerned that my code isn't up to scratch - that
said, I'm not sure where or what level I should be at after 3 months.  What
should I know by now - or is it a case of "whatever suits you?"  An example:
today I downloaded a CF auction application that had been coded using
Fusebox, another thing on my "to learn" list.  Flicking through the code, I
was confident I understood most of it - but certainly not all of it, and
there was and still are some basics I'm really not sure of.  The point with
my programming is that I can do anything asked of me, or of my site, but I
may not always approach it in the correct manner or method.  Is that method
learnt over experience, or what?

Can anyone offer any thoughts or advise as to where I should be heading now?
I often `dabble` with code and snippets aside from work just to pick up new
ideas etc and am constantly driven by new features for my site.  I know it's
a difficult question but the CF community has helped me in the past so much,
I thought I'd ask the Pros again, if only for a general discussion.

Cheers,

Will
Berks, UK.



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Need help interpreting error message.

2000-12-07 Thread Lon Lentz


  Anyone know why we should be getting the message below? Is this an
indicator that the user variable already exists?



An error occurred while evaluating the expression:

 session.user = structNew()

Error near line 199, column 7.



Cannot assign result to symbol session.user




Lon Lentz
Applications Developer & CyberEntomologist - Alvion Technologies
DataWarehousing and List Sales - Market Your Lists on the Net!
[EMAIL PROTECTED]
941-574-8600 Ext. 210


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Error help

2000-12-07 Thread Andres

this usually refers to your RAM, not your hard drive space.

Consider the following:
+ How much RAM you have
+ How many applications are running while your server is on

Try closing and restarting the server to see if performance is restored.


-Original Message-
From: John Anderson [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 07, 2000 1:01 PM
To: CF-Talk
Subject: Error help


Does anyone know what could be causing this?
John

I currently have over 3GB free space left.
 I am running: Win98 SE Personal Web Server
 ColdFusion 4.01 

--
Error Diagnostic Information 
 An unexpected system error was detected. (Error code is 1) 
This type of error will most likely occur when the server running ColdFusion

 is low on memory and/or system resources. 
If you continue to experience this error in a reproducible fashion you 
 should contact Allaire technical support.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: passing cfquery results to another page

2000-12-07 Thread Jamie Keane

A WDDX packet is complex data, but it's structured as a string.  Therefore,
in theory, you can pass it just like any other string.  Now, mind you, since
it can be a VERY long string, passing it as a URL var might not work (buffer
overflow safeguards and all that rot).

--
Jamie Keane
Programmer
SolutionMasters, Inc.
9111 Monroe Rd., Suite 100
Charlotte, NC  28270
www.solutionmasters.com
704.563.5559 x 228  Voice
704.849.9291  Fax
-Original Message-
From: Rick Lamb <[EMAIL PROTECTED]>
To: CF-Talk <[EMAIL PROTECTED]>
Date: Thursday, December 07, 2000 4:54 PM
Subject: RE: passing cfquery results to another page


>Correct me if I'm wrong here, but I didn't think client, form, url, or
>cookies variables can hold complex data like a wddx packet. I would suggest
>using a session or application variables for these techniques.
>
>Rick
>
>-Original Message-
>From: Bob Silverberg [mailto:[EMAIL PROTECTED]]
>Sent: Thursday, December 07, 2000 9:19 AM
>To: CF-Talk
>Subject: RE: passing cfquery results to another page
>
>
>There are a number of ways, the first two that come to mind are:
>1. Store it in a session variable.
>2. Convert it to a WDDX packet, then store it in a client or cookie
>variable, or pass it via a URL or form parameter.  The last two aren't
>advisable if the query is of any reasonable size.
>
>Bob
>
>
>-Original Message-
>From: sam sidhom [mailto:[EMAIL PROTECTED]]
>Sent: December 7, 2000 9:42 AM
>To: CF-Talk
>Subject: passing cfquery results to another page
>
>
>Can anyone tell me if there is anyway CF will pass the results of a CFQuery
>to another page without having to requery the database?
>
>Thanks,
>
>Jennifer Johnson
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Error help

2000-12-07 Thread Craig Thomas

Is it in a development evnironment?  How often does it happen?

-Original Message-
From: John Anderson [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 07, 2000 1:01 PM
To: CF-Talk
Subject: Error help


Does anyone know what could be causing this?
John

I currently have over 3GB free space left.
 I am running: Win98 SE Personal Web Server
 ColdFusion 4.01

--
Error Diagnostic Information
 An unexpected system error was detected. (Error code is 1)
This type of error will most likely occur when the server running ColdFusion

 is low on memory and/or system resources.
If you continue to experience this error in a reproducible fashion you
 should contact Allaire technical support.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Error help

2000-12-07 Thread Greg Wolfinger

How much ram do you have? Are you running a db server on the same machine?
What is the cpu clock speed?  What other apps are running on the server?
- Original Message -
From: "John Anderson" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, December 07, 2000 1:01 PM
Subject: Error help


> Does anyone know what could be causing this?
> John
>
> I currently have over 3GB free space left.
>  I am running: Win98 SE Personal Web Server
>  ColdFusion 4.01
>
> --
> Error Diagnostic Information
>  An unexpected system error was detected. (Error code is 1)
> This type of error will most likely occur when the server running
ColdFusion
>
>  is low on memory and/or system resources.
> If you continue to experience this error in a reproducible fashion you
>  should contact Allaire technical support.
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CF and Apache

2000-12-07 Thread Bryan Love

I've managed to hook CF 4.5 up to Apache just fine.  One thing I can't do is
get Apache to pull .cfm pages from mapped drives.  I can get any other
extension just fine, but when I request a .cfm page I get 404 NOT FOUND.
I'm guessing this is a restriction in the CF processing module.

Can anyone help?

Bryan

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Error help

2000-12-07 Thread Aaron Johnson

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

You storing Client variables in the registry perhaps?

AJ

> -Original Message-
> From: John Anderson [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, December 07, 2000 1:01 PM
> To: CF-Talk
> Subject: Error help
> 
> 
> Does anyone know what could be causing this?
> John
> 
> I currently have over 3GB free space left.
>  I am running: Win98 SE Personal Web Server
>  ColdFusion 4.01 
> 
> 
> -- Error Diagnostic Information 
>  An unexpected system error was detected. (Error code is 1) 
> This type of error will most likely occur when the server running 
> ColdFusion
> 
>  is low on memory and/or system resources. 
> If you continue to experience this error in a reproducible fashion
> you  
>  should contact Allaire technical support. 
> 
> 
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: How to input Chinese character in CF studio

2000-12-07 Thread polyphoton

Hi,

I have the Chinese input method, so I can type Chinese in Notepad.

But how to do that in CF studio?  I got "??" when type in Chinese.

Thanks!

Hong
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: passing cfquery results to another page

2000-12-07 Thread Simon Horwith

Actually, a wddx packet is a string representation of a complex structure or
some other data, not a complex structure itself, and it can be stored in the
client scope (it's just an XML text file).  A wddx packet would probably be
too large to put into a cookie or url in most scenarios, though..

~Simon

> Simon Horwith
> Certified ColdFusion Developer
> Fig Leaf Software
> 1400 16th St NW, # 220
> Washington DC 20036
> 202.797.6570 (direct line)
> www.figleaf.com
> 


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 07, 2000 11:41 AM
To: CF-Talk
Subject: RE: passing cfquery results to another page


Correct me if I'm wrong here, but I didn't think client, form, url, or
cookies variables can hold complex data like a wddx packet. I would suggest
using a session or application variables for these techniques.

Rick

-Original Message-
From: Bob Silverberg [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 07, 2000 9:19 AM
To: CF-Talk
Subject: RE: passing cfquery results to another page


There are a number of ways, the first two that come to mind are:
1. Store it in a session variable.
2. Convert it to a WDDX packet, then store it in a client or cookie
variable, or pass it via a URL or form parameter.  The last two aren't
advisable if the query is of any reasonable size.

Bob


-Original Message-
From: sam sidhom [mailto:[EMAIL PROTECTED]]
Sent: December 7, 2000 9:42 AM
To: CF-Talk
Subject: passing cfquery results to another page


Can anyone tell me if there is anyway CF will pass the results of a CFQuery
to another page without having to requery the database?

Thanks,

Jennifer Johnson
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Big companies using CF

2000-12-07 Thread Jon Hall

In other words, Everything is relative.
Along the same line of reasoning, just because a big company does it. It
does not mean it is a good thing. In my experience the exact opposite is
true. The bigger the company, the more ineffiecient in my experience.
Someone already said this, but I will repeat it. The big difference between
CF and ASP is development time and costs.
Almost any web application could be developed faster in CF than ASP, and CF
has a huge library of built in funtions and free tags that are available.

jon
- Original Message -
From: "Benjamin Fitts" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, December 07, 2000 11:01 AM
Subject: RE: Big companies using CF


> I've been following this thread on big companies using CF for awhile. Sure
a
> lot of big companies use CF.  But please think of the type of application
> they use CF for.
>
> Internal sites and extranets don't get a lot of traffic.
>
> Other questions you might want to ask instead of "Which Big Companies use
> CF" are:
>
> What do they use CF for?
>
> How much traffic does their site receive? daily, weekly, monthly.
>
> How much of that traffic is hitting dynamic CF generated pages?
>
> This is a much better benchmark for you to judge Cold Fusion on.
>
> A typical example is BMWUSA web site that was mentioned here earlier. I
can
> guarantee you this site isn't getting hit nearly as much as VW's new film
> web site. Just because BMW is a big name doesn't mean it gets a lot of
hits
> to it's web site.  What is a lot of hits? 500,000 unique users a month? 5
> million unique users a month? 5 million unique users a day?
>
> Benjamin Fitts
> Web Developer
> uclick
> [EMAIL PROTECTED]
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



ver 4, 0, 1, 0 upgrade to 4.5 ?

2000-12-07 Thread Adrian Cesana

I am running CF ver 4, 0, 1, 0 and all is well.  I dont really currently
have a need   for any features in 4.5 that I am aware of and all is running
well.  Is there any reason I should upgrade to 4.5 ? Is it any faster?
security?

Thanks,Adrian


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Encrypting CC Nums with CFENCRYPT

2000-12-07 Thread Greg Wolfinger

Hey Guys:

Ive been put in charge of making a very small, very simple, (uhhh i hate this next 
ex-buzzword, always have) e-commerce site.  I was wondering what is the best way to to 
encrypt the credit card numbers that will be stored in the database.  I know you can 
encrypt using cfencrypt, but I'm not sure how secure that is.  Also, I was wondering 
if there is a way to make dynamic keys and encrypt those and store those dynamic keys 
with each cc.  I would like this to be pretty tight encryption even though the db will 
be secure or at least should be, but you know db admins.

Thanx,


Greg


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: cfscript rules of thumb

2000-12-07 Thread Robert Hinojosa

Don't use CFSCRIPT for large pieces of code.  Debugging inside a CFSCRIPT
tag is horrible.

You can use CFSCRIPT for setting more than 3 variables in a row. Much faster
than cfsets.
SWITCH/CASE Statements --> break works in CFSCRIPT.

My two shiny nickels.

Robert Hinojosa 
Senior WebDeveloper 
[EMAIL PROTECTED] 
www.hencie.com 
972-671-0011 ext.284  

-Original Message-
From: Eric Fickes [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 07, 2000 11:05 AM
To: CF-Talk
Subject: cfscript rules of thumb


Ok, I went ahead and have started using CFSCRIPT and I'm loving it so far.
I was wondering if anybody could give me some CFSCRIPT tips, rule of thumb,
best practice type advice.  I've got alot of old code that I want to go back
and trim up, but I want to make sure that I use CFSCRIPT in the best place,
and take advantage of it.

E
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Any known problems using session variables in Oracle 8 that were'nt there in Oracle 7?

2000-12-07 Thread Tim Dempsey

Folks,

I'm getting stymied!

I recently upgraded my Oracle to Oracle 8 and my web server to iPlanet 4.1.

I am running CF 4.5.1 on both Solaris  and on Windows 2K. But on Windows 2K
I have recently installed CF 4.5.1 SP 2.

Now my CF application is breaking. And I find the cuplrit is a couple of
session
variables that are becoming undefined. Not all session variables just a few.

Has anyone heard of this problem? Are there issues with either iPlanet or
Oracle 8 that are not present in Netscape Server 3.63 or Oracle 7.3.4?

Thanks,
  -- Tim Dempsey




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



ot: help with launching docs

2000-12-07 Thread Nick Call

Hello: I am posting my question here because the CF board is by far the most
knowledgeable mailing list I belong to.  Send flame mail to me off-list if
you despise my question.

I am having another problem with Microsoft software trying to think for me.
:(  While viewing a page in IE 5.5, I need to link to a Word document and
have it come up in Word, not Word inside IE.  I have searched the mime types
and file extension settings and cannot figure out how IE does this.  All my
MS Word extensions are set to open using MSWORD.exe. Are there any settings
I can put within my  tag that will spawn this bad-boy in Word??
How about by JavaScript?  Can I call out "application/msword" somehow?

Help.

Nick



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: "CF_SQL_DATE"

2000-12-07 Thread mark_wimer


yes there is an issue - of a confusing name. Use the cf_sql_timestamp,
which is the one that actually corresponds to datetime and smalldatetime.

Mark

Mark Wimer, Bird Point Count Database
American Bird Conservancy, c/o
USGS-Patuxent Wildlife Research Center
12100 Beech Forest Road, Laurel, MD  20708-4038
Ph: 301-497-5596   Email: [EMAIL PROTECTED]




I am using CF 4.0 with MS SQL Server 7.0

Is there an issue with using  cfsqltype="CF_SQL_DATE" in a stored
procedure?

I get the following error code while using a stored procedure

--
ODBC Error Code = S1C00 (Driver not capable)
[Microsoft][ODBC SQL Server Driver]Optional feature not implemented
--

I have isolated the problem to the following code





I have used the regular  tag to do the same query with no problem.

Sebastian
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT: Syndicated Content

2000-12-07 Thread Nick McClure

It is going to be for a localized entertainment portal. Right now what we 
are looking for is movie show and entertainment news.

At 10:51 AM 12/7/2000 -0600, you wrote:
>some good experience.
>
>What is the content for? I may be able to help.
>
>Eric
>
>
>From: Nick McClure <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: CF-Talk <[EMAIL PROTECTED]>
>Subject: OT: Syndicated Content
>Date: Thu, 07 Dec 2000 10:12:45 -0500
>
>I am trying to find some Syndicated Content that also includes movie times.
>
>Anybody out there had any experiences(good or bad) with any companies on
>trying to import content via CF.
>
>
>
>--
>Nick McClure[EMAIL PROTECTED]
>Technical Director  859.245.9656
>squareFish Mediawww.squareFish.com
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Is there a way to access JavaScript variables through CF??

2000-12-07 Thread Joshua Miller


IE code

NS code


Joshua Miller
Web Development
Eagle Technologies Group, Inc.
Business Solutions for the Next Generation
www.eagletgi.com 
[EMAIL PROTECTED] 


-Original Message-
From: ryo watanabe [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 07, 2000 11:43 AM
To: CF-Talk
Subject: Is there a way to access JavaScript variables through CF??


In order to get the client platform in JavaScript, navigator.platform can be
used.  Is there a way to assign those variables to CF variable?
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: OT: Syndicated Content

2000-12-07 Thread Simon Horwith

If you read up on CFHTTP and WDDX in any good CF Book, you'll learn a lot
about writing intelligent agents that grab syndicated content, and how to
syndicate content of your own.

~Simon

> Simon Horwith
> Certified ColdFusion Developer
> Fig Leaf Software
> 1400 16th St NW, # 220
> Washington DC 20036
> 202.797.6570 (direct line)
> www.figleaf.com
> 


-Original Message-
From: Eric Dawson [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 07, 2000 11:52 AM
To: CF-Talk
Subject: Re: OT: Syndicated Content


some good experience.

What is the content for? I may be able to help.

Eric


From: Nick McClure <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: CF-Talk <[EMAIL PROTECTED]>
Subject: OT: Syndicated Content
Date: Thu, 07 Dec 2000 10:12:45 -0500

I am trying to find some Syndicated Content that also includes movie times.

Anybody out there had any experiences(good or bad) with any companies on
trying to import content via CF.



--
Nick McClure[EMAIL PROTECTED]
Technical Director  859.245.9656
squareFish Mediawww.squareFish.com
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: "CF_SQL_DATE"

2000-12-07 Thread Hayes, David

Are StartDate and EndDate ODBC date objects?

If not, it may be that you're telling SQL server to expect ODBC dates, but
you're not them.  (Whereas in your CFQUERY, SQL server is figuring out how
to handle that date data.)

What happens if you use value="#createODBCDate(createDate( ))#"?

-Original Message-
From: sebastian palmigiani [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 07, 2000 10:52 AM
To: CF-Talk
Subject: "CF_SQL_DATE"



I am using CF 4.0 with MS SQL Server 7.0

Is there an issue with using  cfsqltype="CF_SQL_DATE" in a stored procedure?

I get the following error code while using a stored procedure

--
ODBC Error Code = S1C00 (Driver not capable)
[Microsoft][ODBC SQL Server Driver]Optional feature not implemented
--

I have isolated the problem to the following code


 


I have used the regular  tag to do the same query with no problem.

Sebastian
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



???

2000-12-07 Thread ibtoad

How do I store menu images in  to make my pages load faster?

Rich


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: What are the recognized CF variable scopes?

2000-12-07 Thread Jeffrey Davis

This is always a matter of interest in my classes, i.e. where can one find a
definitive listing. The following Allaire Knowledgebase article names many,
but leaves off a few (IMHO), including:

Attributes.
Caller.
CFHTTP.
ERROR.
CFCatch.

http://www.allaire.com/Handlers/index.cfm?ID=14192&Method=Full

Jeff Davis
Allaire Certified Trainer
Fig Leaf Software
__
"If written directions alone would suffice, libraries wouldn't need to have
the rest of the universities attached." 
Miss Manners
__ 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: FW: passing cfquery results to another page

2000-12-07 Thread paul smith

The 100 limit on the number of cached queries is an urban myth.
CFAS 4.5 doesn't even list it anymore.

best,  paul

At 11:30 AM 12/7/00 -0500, you wrote:
>This will only work if you have a limited number of
>query combinations, otherwise the chances of it getting bumped out of memory
>are greater.


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Order By Random?

2000-12-07 Thread Craig M. Rosenblum

Is there any way to have a query give the results in random order?

This is for Oracle...


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Is there a way to access JavaScript variables through CF??

2000-12-07 Thread Nick McClure

What is wrong with using the CGI environment variable?

cgi.HTTP_USER_AGENT

At 11:42 AM 12/7/2000 -0500, you wrote:
>In order to get the client platform in JavaScript, navigator.platform can 
>be used.  Is there a way to assign those variables to CF variable?
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFFILE and IE 5.0 on a Mac doesn't work

2000-12-07 Thread Craig A. Zingerline

Hello,

I'm wondering if anyone has found a workaround to the following
situation...we are using CFFILE to upload .gif and .jpg files to our server.
The scripts work fine on Netscape and IE on a PC, but only work with
Netscape on a Macintosh.  The mac OS is 9.0 and we are using IE 5.0.  I have
a couple of links with relevant information below, but have not been able to
find (nor do I know) if a workaround to this problem exists.  We get the
following error code:

"Error attempting to save uploaded file to path
'D:\inetpub\websites\oursite\.' Access is denied. (error 5)"

Microsoft has a knowledge base article (which doesn't look promising) at:
http://support.microsoft.com/support/kb/articles/Q161/3/95.asp?LN=EN-US&SD=g
n&FR=0&qry=RFC%201867&rnk=3&src=DHCS_MSPSS_gn_SRCH&SPR=IE

A thread in the forums about this is at:
http://forums.allaire.com/devconf/Index.cfm?Message_ID=428762

THANK YOU FOR ANY HELP!!  IT IS GREATLY APPRECIATED!

Cheers,

Craig

Craig A. Zingerline
Advanced Media Productions
Web Application Developer


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Regular Expressions - Programming Interface?

2000-12-07 Thread Steve Bernard

That's a tricky one. Wizards and auto-complete tools work best for tasks
that are defined and repetetive; RE's in my experience are neither. RE's
don't have a rigid syntactical framework like programming languages. By
definition you are matching arbitrary strings. I think the best way, albeit
tricky, would be to create a natural language tool. What I'm envisioning is
something like MS SQL Server's English Language Query engine whereby a user
could enter, in "natural" language, the criteria and have the program
decipher and convert that into a valid RE.

Steve

-Original Message-
From: Don Smith [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 07, 2000 10:57 AM
To: CF-Talk
Subject: Regular Expressions - Programming Interface?


Per a discussion at last night's CFUG,

Is anyone aware of any programming interface that would help new programmers
learn to write regular expressions?  Preferably Perl-style REs, but actually
I would be interested to see if anyone has some kind of "regular expression
builder" or programming interface for CF, Perl or any RE-capable language.
I am not sure what this would look like, but like many of us I have been
casually writing REs by hand for the last 8 years and I don't remember ever
seeing anything to assist new programmers other than books.

thanks for any info,

Don


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Big companies using CF

2000-12-07 Thread Tim Bahlke

>How much traffic does their site receive? daily, weekly, monthly.
>
>How much of that traffic is hitting dynamic CF generated pages?
>
>This is a much better benchmark for you to judge Cold Fusion on.

With a site I developed for Lucent, I had 233,000+ unique users in a 24 hr 
period.

CF had no problems.

Tim Bahlke
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



PL/SQL

2000-12-07 Thread Jeff Britts

Anyone have any luck running PL/SQL through ColdFusion?  The simple stuff
seems to work ok, but if you throw it something complex it chokes.
 
 
Jeff Britts
ColdFusion Engineer
e-Dialog
 


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



ReFresh

2000-12-07 Thread David Clay

Why does it require me to refresh a page to create a new UUID number with 
#CreateUUID()#.

I would like to continue to add a unique number after adding it, but I am a having to 
refresh in order to do that.  Any suggestions.

Thank you for your time. 

Dave Clay
Internet Facilitator
Trus Joist, A Weyerhaeuser Business
5995 Greenwood Plaza Blvd, Suite 100
Greenwood Village, CO 80111
303.770.8506



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



wddx --> SQL Server 7 ?

2000-12-07 Thread mark_wimer


Hi folks,

I'm using CF 4.0.1 and SQL 7. I've built up a fair sized Structure (e.g. up
to about 10K) over several data entry pages, and want to insert the 30 to
60 rows into my database. So these are my options, and I want to do the
third one:

1. CFLOOP through structure in CF, doing insert statements (I won't do
this: too many db calls from CF).
2. Use CF to create a large string, pass that to stored proc, parses and
loop through with inserts. I can do this.
3. Create wddx packet, send that to a stored proc somehow. This is what I'd
like to do.

Any hints, articles, etc on INSERTING xml or Wddx? I know SQL can create
it, but I'm at a total loss on inserting.

TIA,

Mark

Mark Wimer, Bird Point Count Database
American Bird Conservancy, c/o
USGS-Patuxent Wildlife Research Center
12100 Beech Forest Road, Laurel, MD  20708-4038
Ph: 301-497-5596   Email: [EMAIL PROTECTED]



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Big companies using CF

2000-12-07 Thread Ken Wilson

> Internal sites and extranets don't get a lot of traffic.


Not so sure that's a safe assumption to make. Internal sites are frequently
far more data intensive and interactive such that, while actually traffic
volume may be lower, the processing load on a server may be far higher than
a simple Internet site. I agree with the spcific items you suggested asking
about but don't rule out that Intranet/Extranet sites may actually be a
better judge of CF's capabilities in some cases.

Ken




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Setting UltraDev as Dreamweaver Integration

2000-12-07 Thread Ken Wilson

> Perhaps even a toolbar like the CFML Basic and other toolbars that
> launch applications would be nice.


CF Studio already offers that using the Custom Toolbar and Button options.

Ken


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Regular Expressions - Programming Interface?

2000-12-07 Thread JustinMacCarthy

One thing I saw which was pretty cool was a web page with a form with the
fields
value to test:
regex :

It used the RE's in javascipt to do the tests, client side , no source
editing etcjust an alert box... I can't remember where it is but it
chould be replicated easy enough.

Of course I have thought about this in respect of a REGEX builder where for
example:
you would say, here are 10 strings; give me the regex's that will match
them.

But of course this would be very complicated, especially when you get into
'0 or more times' expressions , backrefs etc

You probably have to a lot of 'training', and feed the thing a lot of
strings that  the pattern shouldn't match.  It is probably easier to just
learn RE's !!

But if you find something CC me 

Justin MacCarthy



>-Original Message-
>From: Don Smith [mailto:[EMAIL PROTECTED]]
>Sent: Thursday, December 07, 2000 3:57 PM
>To: CF-Talk
>Subject: Regular Expressions - Programming Interface?
>
>
>Per a discussion at last night's CFUG,
>
>Is anyone aware of any programming interface that would help new
>programmers
>learn to write regular expressions?  Preferably Perl-style REs,
>but actually
>I would be interested to see if anyone has some kind of "regular expression
>builder" or programming interface for CF, Perl or any RE-capable language.
>I am not sure what this would look like, but like many of us I have been
>casually writing REs by hand for the last 8 years and I don't remember ever
>seeing anything to assist new programmers other than books.
>
>thanks for any info,
>
>Don
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Regular Expressions - Programming Interface?

2000-12-07 Thread Greg Wolfinger

Don:

I would like to have the same thing.  That is a good idea.

Greg
- Original Message -
From: "Don Smith" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, December 07, 2000 10:56 AM
Subject: Regular Expressions - Programming Interface?


> Per a discussion at last night's CFUG,
>
> Is anyone aware of any programming interface that would help new
programmers
> learn to write regular expressions?  Preferably Perl-style REs, but
actually
> I would be interested to see if anyone has some kind of "regular
expression
> builder" or programming interface for CF, Perl or any RE-capable language.
> I am not sure what this would look like, but like many of us I have been
> casually writing REs by hand for the last 8 years and I don't remember
ever
> seeing anything to assist new programmers other than books.
>
> thanks for any info,
>
> Don
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Server Configuration Question

2000-12-07 Thread Greg Wolfinger

Heath:

Join the CF-SERVER list from houseoffusion.com, they could probably help you
out.

Greg
- Original Message -
From: "Lord, Heath" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, December 07, 2000 11:01 AM
Subject: Server Configuration Question


> 7 Dec 00   1100
> I need to get an answer on this ASAP today.
>
> We have a server with this configuration.
> Win2000 Server SP 1
> IIS 5  As found on CD
> CF 4.5.1 SP2
> Oracle 8.1.6 Client
> 2 CFX Tags  PGP and Graphics (GifGid)
>
>
> Basically, I need to know what the Stability is expected to be with this
> configuration.
> How this set-up will effect the Speed.
> Any Known Memory Leaks that may be of concern to me with this
configuration.
> Any issues with the use of Auto Locking Session Variables, instead of
> explicitly locking them.  i.e. I don't want to do a whole lot of recoding
at
> this time.
>
> Heath
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: List w/" " delims

2000-12-07 Thread Billy Cravens

Keep in mind that list delimiters can only be 1 character.

-- 
Billy Cravens
[EMAIL PROTECTED]


Eric Fickes wrote:
> 
> Got a List question for you.
> 
> I've got a text file that I need to parse and it's " delimited list, in a
> way.  The list format is this.
> 
> "Full Name" "Email Address" "Group List" "Login Name"
> "Demo user for startup" "" " 1;" "Demo"
> 
> I was hoping to somehow use " " as a delimeter, but that's not working.
> When I do that it takes out the spaces in the column names. I'd like to take
> 
> "Full Name" "Email Address" "Group List" "Login Name"
> 
> and turn it into
> 
> Full Name,Email Address,Group List,Login Name
> 
> Any ideas?
> 
> E
> 
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Setting up CF Server on Windows ME

2000-12-07 Thread Billy Cravens

What errors are you getting?  What web server did you install on ME? 
I've run Server on ME with no problems.. not too different than running
it on 98 (I can't remember if Personal Web Server comes with ME
though... I'm running mostly Win2K boxes now.)

-- 
Billy Cravens
[EMAIL PROTECTED]


Penny Hutten wrote:
> 
> I have set up my CF Server on Windows ME and the  Administrator will not open as it 
>did in NT.
> Does anyone know about this?
> 
> Penny
> 
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Clusters Important and On-Topic =)

2000-12-07 Thread Yanik Lupien

Let see that ...

http://httpd.apache.org/docs/mod/mod_rewrite.html
http://httpd.apache.org/docs/mod/mod_proxy.html

Voila .

Yanik Lupien


- Original Message -
From: "paul smith" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, December 07, 2000 2:11 AM
Subject: Re: Clusters Important and On-Topic =)


> Please explain URLRewriting in more detail.
>
> best,  paul
>
>
> At 12:39 PM 12/6/00 -0500, you wrote:
> >Do you have try to use URLRewriting over a Proxy ?
> >
> >http://www.domain.com/serv1/path/file.cfm Translated to :
> >http://server01/path/file.cfm
> >http://www.domain.com/serv2/path/file.cfm Translated to :
> >http://server02/path/file.cfm
> >
> >Using this way the client never see http://server01/ it always see
> >http://www.domain.com/servX/
> >
> >And if you use this way, you do not need to use Round Robin (DNS) and AOL
> >user are working to.
> >
> >In this way, if the user go on server 1 they always stay on server 1.
> >
> >And if the server 1 need to go down only Rewrite you URL to the second
> >server ...
> >
> >Voila
> >
> >Yanik Lupien
> >
> >
> >
> >- Original Message -
> >From: "William J Wheatley" <[EMAIL PROTECTED]>
> >To: "CF-Talk" <[EMAIL PROTECTED]>
> >Sent: Wednesday, December 06, 2000 9:47 AM
> >Subject: Clusters Important and On-Topic =)
> >
> >
> > > I have a 3 node Linux Btcats Cluster running. I have turned off
SESSION
> > > aware because i use client variables for everything. I also have a
> >database
> > > setup to store my client varibles. Now in allaires help it says
setting
> > > SETDOMAINCOOKIE=YES will cause CFMAGIC cookie to migrate all the data
from
> > > the individual clusters and then set a domain level cookie. i set that
in
> > > all 3 of the APP.cfm and its still not working properly i even deleted
the
> > > client storage db & regenerated it with no luck.
> > >
> > > See when i'm on the same box it remembers the client.username but once
it
> > > fires off to a seperate box it does not remember the client.id and
thus
> >its
> > > a problem.
> > >
> > > Thanks
> > >
> > >
> > > Bill Wheatley
> > > Director of Development
> > > Allaire Certified ColdFusion Developer
> > > AEPS INC
> > > Allaire ColdFusion Consulting Partner
> > > www.aeps.com
> > > www.aeps2000.com
> > > 954-472-6684 X303
> > > ICQ: 417645
> > >
> > >
> > >
> > >
> > >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Regular Expressions - Programming Interface?

2000-12-07 Thread Simon Horwith

Hey Don, take a look at:

http://www.cfcomet.com/cfcomet/other/index.cfm?ArticleID=F0A14065-EF7A-4A9E-
AED5F28EF8C19D65

it's a pretty good resource for a beginning Reg Exer.


~Simon

> Simon Horwith
> Certified ColdFusion Developer
> Fig Leaf Software
> 1400 16th St NW, # 220
> Washington DC 20036
> 202.797.6570 (direct line)
> www.figleaf.com
> 


-Original Message-
From: Don Smith [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 07, 2000 10:57 AM
To: CF-Talk
Subject: Regular Expressions - Programming Interface?


Per a discussion at last night's CFUG, 

Is anyone aware of any programming interface that would help new programmers
learn to write regular expressions?  Preferably Perl-style REs, but actually
I would be interested to see if anyone has some kind of "regular expression
builder" or programming interface for CF, Perl or any RE-capable language.
I am not sure what this would look like, but like many of us I have been
casually writing REs by hand for the last 8 years and I don't remember ever
seeing anything to assist new programmers other than books.

thanks for any info,

Don
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Help!!! Cooke Monster!!

2000-12-07 Thread Emmet McGovern

Is there a way to set up a cookie on one domain and read it from another
domain?  I have 2 servers, one is unix and the other is cf.  I need to
secure the cf server by only allowing access to it if a cookie has been set
by the linux server, only im having problems reading the cookie on the cf
side.  The linux servers domain would be  content.beachin.net while the cf
server is files.beachin.net

right now im trying to meta set the cookie on the unix server
(content.beachin.net)



and check its existence on the cf server (files.beachin.net) with


blah blah blah


Am i doing something wrong? Or should i be doing this another way?



Thanks,

Emmet McGovern
Systems Admin
Byte Size Inc.

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: coldfusion bug

2000-12-07 Thread kwasi

I am using ColdFusion 4.5 SP2, on Windows 2000.

I copied this phrase: 

and when I went to paste it, this was pasted.

---
Warning
---
Another user or process has modified document
"C:\Inetpub\wwwroot\web\wwwroot\imediabriefnew\RFI\Tender\adminviewtender.cf
m."  Do you wish to reload it?
---
Yes   No   
---

Any suggestions as to why this happens.


I would greatly appreciate your reply.


Kwasi Date-Bah






~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CF-Blogger?

2000-12-07 Thread Eric Dawson

yeah.

I have been thinking of it. Just no damn too.

Eric


From: Dave Fobare <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: CF-Talk <[EMAIL PROTECTED]>
Subject: CF-Blogger?
Date: Thu, 07 Dec 2000 10:28:58 -0500


Has anyone done a Blogger-type app in CF?

Thanks,

Dave Fobare
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Verity Questions

2000-12-07 Thread CAlvarado

I am looking through some documentation on Verity searches. Anyone out there
using the Verity Search capabilities on Solaris? Any problems? Anything that
does not function as it does on an NT server? In the book I'm looking at
"Mastering Cold Fusion 4.5" it states that the Verity Engine can search
Microsoft Word for Windows, Macintosh, and DOS. Is this independent of which
flavor of Cold Fusion server you are using?

Thanks for any and all help.

chris.alvarado
cold.fusion - developer
[phone] 512.794.6563
[email] [EMAIL PROTECTED]
[web] http://www.tmanage.com


Privileged/Confidential Information may be contained in this message. It is
not for use or disclosure outside TManage without a written proprietary
agreement.  If you are not the addressee indicated in this message, or agent
responsible for delivery, you may not copy or deliver this message to
anyone.  Please notify the sender as soon as possible and immediately
destroy this message and its attachments entirely.



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Test Post - my last post never showed up.

2000-12-07 Thread Lord, Heath

Testing post - please forgive.
I posted a message earlier that has never come across.

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Setting UltraDev as Dreamweaver Integration

2000-12-07 Thread Paul Ihrig

just a note.
when it comes down to it is all about the code.
whether it is UD4 or CFS, both have sufficient text editing features.
you still need to be able to read, write & understand the base code.

UD4 is incredible visual environment for whipping out fast apps.
It has saved me huge amount of Dev time.
it can handle "complex sites", but that all comes down to the skill level of
the user.
its a WYSIWYG if you use it as such, or it is a nice note pad like studio if
you again use it as such.

in my working environment, i couldn't function, quickly & effectively
without either!
just my 2 cents : ]

-paul

Web Developer, NBBJ
Work:   [EMAIL PROTECTED]
614 241-3534

Home:   [EMAIL PROTECTED]
614 449-1681

[EMAIL PROTECTED]
icq:47658358


> -Original Message-
> From: Greg Wolfinger [SMTP:[EMAIL PROTECTED]]
> Sent: Thursday, December 07, 2000 9:50 AM
> To:   CF-Talk
> Subject:  Re: Setting UltraDev as Dreamweaver Integration
> 
> As much as I like Macromedia, you can't really do to complex site building
> with CF using UD or UD4.  I have gone to an NDA of the UD4 build and was
> impressed about how they improved tables and really did a lot better job
> implementing CF, but for ultimate flexibility you are going to need to be
> using studio or your favorite code editor.  UD4 is a good option for the
> design team though.
> - Original Message -
> From: "Michael Barnum" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Thursday, December 07, 2000 7:20 AM
> Subject: Re: Setting UltraDev as Dreamweaver Integration

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: O'Reilly Website Pro

2000-12-07 Thread Howie Hamlin

Here's an excerpt from a mail I saved a while back...

==
Here are the steps:
1) Connect to HKEY_LOCAL_MACHINE\SOFTWARE\Denny\WebServer\CurrentVersion
2) Read RevNumber
3a) Increment RevNumber by one if you want WSP to reread when idle
OR
3b) If you want WSP to reread immediately, add &H8000 to RevNumber
4) Write RevNumber back
5) Disconnect from the registry

==

HTH,

Howie Hamlin - inFusion Project Manager
On-Line Data Solutions, Inc.
www.CoolFusion.com
631-737-4668 x101
inFusion Mail Server (iMS) - the World's most configurable mail server

- Original Message - 
From: "Thomas Brown" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, December 06, 2000 11:15 PM
Subject: O'Reilly Website Pro


> All,
> 
> I have searched through the archives and I have seen
> other conversations about this topic, but I have a little
> different twist on it.
> 
>I already have all the scripts running that add/edit/delete
> mappings and identities into the registry and all directories
> are created.  All I need is either a command line argument, or
> something that will tell website pro to update with the new
> registry settings. I know that there is a tag cfx_website, but
> that has too much functionality, and if I could just find the 
> command line, that would be awesome!!
> 
> Thanks,



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Error help

2000-12-07 Thread John Anderson

Does anyone know what could be causing this?
John

I currently have over 3GB free space left.
 I am running: Win98 SE Personal Web Server
 ColdFusion 4.01 

--
Error Diagnostic Information 
 An unexpected system error was detected. (Error code is 1) 
This type of error will most likely occur when the server running ColdFusion

 is low on memory and/or system resources. 
If you continue to experience this error in a reproducible fashion you 
 should contact Allaire technical support. 


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: passing cfquery results to another page

2000-12-07 Thread Rick Lamb

Correct me if I'm wrong here, but I didn't think client, form, url, or
cookies variables can hold complex data like a wddx packet. I would suggest
using a session or application variables for these techniques.

Rick

-Original Message-
From: Bob Silverberg [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 07, 2000 9:19 AM
To: CF-Talk
Subject: RE: passing cfquery results to another page


There are a number of ways, the first two that come to mind are:
1. Store it in a session variable.
2. Convert it to a WDDX packet, then store it in a client or cookie
variable, or pass it via a URL or form parameter.  The last two aren't
advisable if the query is of any reasonable size.

Bob


-Original Message-
From: sam sidhom [mailto:[EMAIL PROTECTED]]
Sent: December 7, 2000 9:42 AM
To: CF-Talk
Subject: passing cfquery results to another page


Can anyone tell me if there is anyway CF will pass the results of a CFQuery
to another page without having to requery the database?

Thanks,

Jennifer Johnson
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



  1   2   >