Re: Nested Structures and Arrays

2000-11-15 Thread David Shadovitz

You aren't using structnew() for Parent as you are for Guardian.
-David 

On Wed, 15 Nov 2000 15:39:14 -0800 "Eric Gilbert" <[EMAIL PROTECTED]>
writes:
> I'm encountering something odd, and I'm not sure if it is a bug with 
> the
> version of CFServer I'm using or a deeper CF issue.
> 
> I get the error "The member "EMPLOYER.ADDRESS" in dimension 1 of 
> object
> "Session.Intake.Parent" cannot be found. Please, modify the member 
> name"
> 
> when I try to execute the following script block (with proper 
> locking..)
> 
> 
>   Session.Intake = structnew();
>   Session.Intake.URLToken = URLToken;
>   Session.Intake.Guardian = arrayNew(1);
>   Session.Intake.Guardian[1] = structnew();
>   Session.Intake.Guardian[1].Employer = structnew();
>   Session.Intake.Guardian[1].Employer.Name = "";
>   Session.Intake.Guardian[1].Employer.Address = structnew();
> 
>   //Works great till here
>   Session.Intake.Parent[1].Employer.Address.StreetAddress = 
> "";
> 

YOU'RE PAYING TOO MUCH FOR THE INTERNET!
Juno now offers FREE Internet Access!
Try it today - there's no risk!  For your FREE software, visit:
http://dl.www.juno.com/get/tagj.

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



RE: Netscape 6 out UGH!!!!

2000-11-15 Thread Robert Everland III

Go to www.dixonusa.com then click no flash then click shopping. That little
application works perfect in IE 4-5 and Netscape 4.7 not 6


Bob

-Original Message-
From: Gavin Myers [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 3:31 PM
To: CF-Talk
Subject: RE: Netscape 6 out UGH


I just downloaded N6 and didn't really see anything wrong with it so far. It
has better support for CSS (a: hover works finally).

But as of yet (last 30 minutes) i haven't seen any mission critical things
with it yet.

Does anyone have any specific examples of things that don't work like they
used to? Like when using js what doesn't work, or websites that used to work
in other browsers that don't in n6?

thanks,
Gavin




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


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



RE: Nested Structures and Arrays

2000-11-15 Thread Paul Mone

Don't you want:

Session.Intake.Parent[1].Employer.Address.StreetAddress = "";

to read:

Session.Intake.Guardian[1].Employer.Address.StreetAddress = "";

-Original Message-
From: Eric Gilbert [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 6:01 PM
To: CF-Talk
Subject: Nested Structures and Arrays


I'm encountering something odd, and I'm not sure if it is a bug with the
version of CFServer I'm using or a deeper CF language issue.

I get the error:
"The member "EMPLOYER.ADDRESS" in dimension 1 of object
"Session.Intake.Parent" cannot be found. Please, modify the member name"

when I try to execute the following script block (with proper locking..)


Session.Intake = structnew();
Session.Intake.URLToken = URLToken;
Session.Intake.Guardian = arrayNew(1);
Session.Intake.Guardian[1] = structnew();
Session.Intake.Guardian[1].Employer = structnew();
Session.Intake.Guardian[1].Employer.Name = "";
Session.Intake.Guardian[1].Employer.Address = structnew();

//Works great till here
Session.Intake.Parent[1].Employer.Address.StreetAddress = "";



I'm running PWS on Win98 with a developer's edition of CFServer.

Server Product ColdFusion Server
 Version 4, 0, 0, 0




Eric Gilbert
Developer
Stone Ground Solutions
560 Sutter St., Suite 400
San Francisco, CA 94102
415.252.0600 voice
415.252.0123 fax
www.stoneground.com



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


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



RE: execute a batch file

2000-11-15 Thread Brad Squires

Is there a way to authenticate an NT user through this method?

We are trying to execute script that modifes multiple servers, but we are
running into the fact that the admin is not logged on to each box...



-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 25, 2000 3:52 PM
To: CF-Talk
Cc: '[EMAIL PROTECTED]'
Subject: RE: execute a batch file


> Can I execute a batch file and send it parameters through cold
> fusion?

Yes. In CF 4.5.x, you can use the CFEXECUTE tag. Here's an example, which
will add a user to the local NT account database:




If you're using an older version of CF, you'll need to install a CFX tag to
run command-line programs. You can get one from Lewis Sellers' site
(http://www.intrafoundation.com/).

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


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


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



RE: Checking/Validating Email

2000-11-15 Thread Brad Squires

Here's the Regular expression server-side approach



Brad Squires
Lead Developer
iConvention.com, LLC
"Extraordinary results through unconventional means."



-Original Message-
From: Jann VanOver [mailto:[EMAIL PROTECTED]]
Sent: Thursday, October 19, 2000 10:39 AM
To: CF-Talk
Subject: RE: Checking/Validating Email


There is also a tag at the Allaire sight that not only checks the syntax of
the email, but also ensures that the mail server exists.  I think it's
called "isEmail" and the only downside I found with it is that it hangs and
causes a timeout if you are not connected to the net when it's used (kinda
makes sense)

> -Original Message-
> From: Steve Bernard [SMTP:[EMAIL PROTECTED]]
> Sent: Wednesday, October 18, 2000 6:59 PM
> To:   CF-Talk
> Subject:  RE: Checking/Validating Email
>
> One way is like the following but, if you know the domain is always the
> same
> you should just have the user enter their user name. You can dynamically
> append the domain if it's needed. This cuts down on user entry time, user
> error, and development time to account for other variances that can occur.
>
> 
> 
>   
> 
>
>
> Steve
>
>
> -Original Message-
> From: Warrick, Mark [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, October 18, 2000 9:41 PM
> To: CF-Talk
> Cc: [EMAIL PROTECTED]
> Subject: RE: Checking/Validating Email
>
>
> If every email address contains the same domain name, then why do you care
> what they put after the @ symbol?  Just ask for their account name.
>
> --
> Mark Warrick
> Phone: (714) 547-5386
> Efax.com Fax: (801) 730-7289
> Personal Email: [EMAIL PROTECTED]
> Personal URL: http://www.warrick.net
> Business Email: [EMAIL PROTECTED]
> Business URL: http://www.fusioneers.com
> ICQ: 346566
> --
>
>
> > -Original Message-
> > From: James Taavon [mailto:[EMAIL PROTECTED]]
> > Sent: Wednesday, October 18, 2000 6:36 PM
> > To: CF-Talk
> > Subject: Checking/Validating Email
> >
> >
> > This is a multi-part message in MIME format.
> > --47385AA601667E1AC68692E3
> > Content-Type: text/plain; charset=us-ascii
> > Content-Transfer-Encoding: 7bit
> >
> > FYI, I first checked the archives, but did not see what I was looking
> > for.
> >
> > I want to make sure that email address (after the @) is in the proper
> > syntax before a form is processed. Say for example [EMAIL PROTECTED] is
> > what I am checking against...if the user types in [EMAIL PROTECTED] can I
> > have CF respond by alerting the user that they typed their email address
> > incorrectly. I will be checking against a gov't email so every user will
> > have the same thing after the @ symbol.
> >
> > Thanks in advance!
> > --47385AA601667E1AC68692E3
> > Content-Type: text/x-vcard; charset=us-ascii;
> >  name="jtaavon.vcf"
> > Content-Transfer-Encoding: 7bit
> > Content-Description: Card for James Taavon
> > Content-Disposition: attachment;
> >  filename="jtaavon.vcf"
> >
> > begin:vcard
> > n:Taavon;James
> > tel;cell:(443) 506-2117
> > tel;fax:(410) 333-5203
> > tel;work:(410) 767-3415
> > x-mozilla-html:FALSE
> > org:Department of Labor, Licensing and Regulation;Office of
> > Information and Technology
> > version:2.1
> > email;internet:[EMAIL PROTECTED]
> > title:Senior Web Developer
> > adr;quoted-printable:;;1100 N. Eutaw Street,=0D=0ARoom
> > 203;Baltimore;MD;21201;
> > fn:James Taavon
> > end:vcard
> >
> > --47385AA601667E1AC68692E3--
> >
> > --
> > --
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
> > or send a message with 'unsubscribe' in the body to
> > [EMAIL PROTECTED]
>
> --
> --
> 
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=sts or send a
> message with 'unsubscribe' in the body to
> [EMAIL PROTECTED]
>
> --
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send
> a message with 'unsubscribe' in the body to
> [EMAIL PROTECTED]


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


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

Custom Tag Resource

2000-11-15 Thread CAlvarado

I was wondering if anyone knew of a good resource for the dos and don'ts of
writing custom tags. I have written quite a few in the past, I was just
curious as to whether or not there were any go references out there?

Thanks,

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.



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



RE: CF Version Control??

2000-11-15 Thread Brad Squires

IS there a simple way to integrate into CF Studio or HomeSite?

Brad

-Original Message-
From: Raymond K. Camden [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 27, 2000 5:12 AM
To: CF-Talk
Subject: RE: CF Version Control??


Let me add to this that I do a lot of my work solo and I still think version
control systems are a must.

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

Email   : [EMAIL PROTECTED]
ICQ UIN : 3679482

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


> -Original Message-
> From: robi sen [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, October 26, 2000 7:07 PM
> To: CF-Talk
> Subject: Re: CF Version Control??
>
>
> If you dont have money you should check out something like CVS
> (there are many freeware version s and clients for most OS's).
> If you have MS Visual Studio
> use VSS, it you have allot of money use Star Team.
>
> Frankly if you are not using at least CVS for version control
> then you might as well not even use anything in my opinion.
>
> R
>
> S R wrote:
>
> > Hi,
> >
> > I'm trying to figure out a way to prevent multiple people from
> working on
> > the same file at the same time. I was looking into Dreamweaver's Check
> > in/Check Out system and its not fool proof, because I can
> override someone
> > else's Check Out and copy over it. Is there a way through CF
> Admin to make
> > all CF files modifiable by only one person at a time? Kind of
> like the way
> > it works if you were to open a Word document and your buddy
> tries to open it
> > up while you have it open and it says 'Document is currently in use by
> > another user. Would you like to view it as a read-only file?'
> >
> > Thanks
> >



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


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



RE: PCodeDocumentNodeImp::validateSelf

2000-11-15 Thread Paul Mone

Yeah, I stay away from nvarchar, etc. for the same reason.  What is the
benefit of using nvarchar over varchar (if any).  i.e. why does it exist?

-Original Message-
From: Michael Ross [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 12:14 PM
To: CF-Talk
Subject: Re: PCodeDocumentNodeImp::validateSelf


I got the pcode error when my variables in SQL 7.0 were nvarchar, ntext and
such.  Once I changed them(varchar, text) it worked.

thanks

>>> [EMAIL PROTECTED] 11/12/00 08:36PM >>>
On 11/13/00, David Cummins penned:
>I've seen it once before. Damned if I know - I think its an internal error.
>
>BTW, does anybody know how to find anything on the Allaire site? I hear
>references to a search that works properly, but I've never seen a
>description of
>a PCode error yet on their site.

The only thing I found in the knowledge base basically said there's
no way to determine what they are. You can do some things that will
help you guess, and do some registry hacks in 4.51 that will cause CF
server to restart. But I'm using 4.01 since 4.51 is such crap. I just
restarted CF server and it went away. I'm using the same custom tag,
that the PCode message said caused the error, under multiple sites
and it only happened on the one, so it seems to be a random thing.
--

Bud Schneehagen - Tropical Web Creations

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


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



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


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



RE: Studio - left panel missing

2000-11-15 Thread Scott, Andrew

A few things could have happened

1) The window resources undocked, which means if you resize Studio you will
see these windows more clearly.

2) For some reason unknown (or even if it has been fixed) that the windows
seemed to get undocked and disappear behind the other tabs on the window.
The only way to find them is by moving these tabs around.


Both are known bugs and bug 2 was supposed to have been looked at and fixed,
but I haven't seen this happen since 4.0. But thats not to say that it is
still around.


regards

Andrew Scott
Senior Cold Fusion Application Developer
ANZ eCommerce Centre
* Ph 9273 0693  
* [EMAIL PROTECTED]


-Original Message-
From: W Luke [mailto:[EMAIL PROTECTED]]
Sent: 16 November 2000 05:29
To: CF-Talk
Subject: Studio - left panel missing


Hi,

For some bizarre reason the left panel, with directory structure and Docs,
in CF Studio has vanished.  The same happened in Homesite a month ago, and
I'm still none the wiser as to how to get it back.

I've looked everywhere (obviously not hard enough) - anyone advise?

Thanks

Will



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

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



OT: SQL Server Licesning

2000-11-15 Thread Paul Mone

I have a client who wants to instal SQL Server on a single processor
dedicated server (to host a web application)

Can anybody fill me in on what sort of licensing he'll need?  I looked at
Microsofts site, but I seem to remember something about an Internet
Connectivity license, and I didn't see any mention of it on their SQL Server
2000 Licensing page.

Thanks,

---
Paul Mone
Ninthlink Consulting Group
[EMAIL PROTECTED]
619.222.7082


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



RE: Netscape 6 out UGH!!!!

2000-11-15 Thread Scott, Andrew

Actually Mike,

 I would consider Web Design easy, because it actually is. However its when
you wish to start to do application development that it becomes harder.


regards

Andrew Scott
Senior Cold Fusion Application Developer
ANZ eCommerce Centre
* Ph 9273 0693  
* [EMAIL PROTECTED]


-Original Message-
From: Michael Kear [mailto:[EMAIL PROTECTED]]
Sent: 15 November 2000 16:05
To: CF-Talk
Subject: RE: Netscape 6 out UGH


Well I for one am thankful that it's not a piece of cake to develop
reliable websites.

If it was easy, there'd be a FrontPage that works fine, and we'd be
besieged with 13 year old school kids taking business from us here highly
qualified professionals.

Whenever I'm sitting fretting over something tricky that isn't working
after 3 hours of working on it, I'm reminded of a sage word of wisdom my
father told me ... "No one pays big money for something any fool could
do!"

Nope.  It takes a special kind of fool to do this web site stuff.

Cheers,
Mike Kear
Windsor, NSW, Australia
AFP Web Development
http://www.afp.zip.com.au



On Wed, 15 Nov 2000, Scott, Andrew wrote:

> *lol* Well we can all wish/hope for miracles!
> 
> regards
> 
> Andrew Scott
> Senior Cold Fusion Application Developer
> ANZ eCommerce Centre
> * Ph 9273 0693  
> * [EMAIL PROTECTED]
> 
> 
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: 15 November 2000 08:44
> To: CF-Talk
> Subject: RE: Netscape 6 out UGH
> 
> 
> Does any of this really matter? All that they should care about is if
there
> browser conforms the W3C specifications so I can count on things to work
how
> they are suppose to. Not how they are suppose to according to Microsoft or
> Netscape or any other browser. I thought that's what the whole point of
the
> W3C. I just always thought Microsoft did a better job at conforming to
these
> standards then Netscape.
> 
> Rick
> 
> -Original Message-
> From: Raymond K. Camden [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, November 14, 2000 3:28 PM
> To: CF-Talk
> Subject: RE: Netscape 6 out UGH
> 
> 
> IE is based off of Mozilla? Did I wake up on another planet today? As far
as
> I know, thats _defintely_ not the case.
> (Although I prefer IE over Netscape as you do.)
> 
> ===
> Raymond Camden, Principal Spectra Compliance Engineer for Allaire
> 
> Email   : [EMAIL PROTECTED]
> ICQ UIN : 3679482
> 
> "My ally is the Force, and a powerful ally it is." - Yoda
> 
> 
> > I also hate to tell you that IE and Netscape are based off of the open
> > source Mozilla project which Opera has followed closely with.
> > Just because
> > it's Microsoft doesn't mean you have to hate it.
> 
>

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

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


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



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

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



RE: 2 instances of Studio

2000-11-15 Thread Scott, Andrew

The best way to take advantage of your dual monitor setup is develop like I
do... Monitor one holds the coding, which is right in front of me. Monitor
two, shows the browser which is just to the right of me. This I find saves
me more time than having two copies of studio running.

regards

Andrew Scott
Senior Cold Fusion Application Developer
ANZ eCommerce Centre
* Ph 9273 0693  
* [EMAIL PROTECTED]


-Original Message-
From: stas [mailto:[EMAIL PROTECTED]]
Sent: 16 November 2000 01:10
To: CF-Talk
Subject: 2 instances of Studio


Hello,

Does anybody know how I can I have two CF Studio Windows open at the same
time? I'd love to take advantage of my duel monitor setup. Thanks!



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

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



RE: RegEx help PLEASE hurry...

2000-11-15 Thread Jason Powers

REreplacenocase("([a-z ])[ ]","\1","ALL")

Jason Powers
Fig Leaf Software
202-797-5440


-Original Message-
From: j p [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 3:42 PM
To: CF-Talk
Subject: RegEx help PLEASE hurry...


Hello all

I have a page of text that looks like this...

H e l l o   A l l

I want to condense it to...

Hello All (getting rid of one space following every character)

I know I can do it with regEx in studio replace pane...
but I don't know the syntax...

Anyone, Anyone, Beuhler???

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

Share information about yourself, create your own public profile at 
http://profiles.msn.com.



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

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



RE: RegEx help PLEASE hurry...

2000-11-15 Thread Jason Powers

Doh!  Try 
REPLACE
([a-z ])[ ]
WITH
\1

Remember to check RegEx.

Jason Powers
Fig Leaf Software
202-797-5440


-Original Message-
From: j p [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 3:42 PM
To: CF-Talk
Subject: RegEx help PLEASE hurry...


Hello all

I have a page of text that looks like this...

H e l l o   A l l

I want to condense it to...

Hello All (getting rid of one space following every character)

I know I can do it with regEx in studio replace pane...
but I don't know the syntax...

Anyone, Anyone, Beuhler???

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

Share information about yourself, create your own public profile at 
http://profiles.msn.com.



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

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



RE: Excel COM object

2000-11-15 Thread Simon Horwith

What you need to do is download OLEView from MicroSloth (it's a free-bee)
and open the COM Object with that.  You'll be able to view all the functions
and properties that way.

~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: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 3:30 PM
To: CF-Talk
Subject: RE: Excel COM object


> http://www.cfcomet.com/cfcomet/ is a good place to start...
> depends on your definition of "decent", though.

A little more than "Here's how you create the COM object" would be nice...

I really wanted a list of commands available via the COM object, unless the
basic VB commands work, in which case I'll have to go and find a decent
Excel VBScript book

I know I can use Record Macro, but it'd be nice to have a hard-copy
reference to look at

Philip Arnold
Director
Certified ColdFusion Developer
ASP Multimedia Limited
T: +44 (0)20 8680 1133

"Websites for the real world"

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




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

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



RE: Certified ColdFusion Developers

2000-11-15 Thread Simon Horwith

Enayet and I think it should be CFSTUD

~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: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 10:09 AM
To: CF-Talk
Subject: Certified ColdFusion Developers


Just out of curiosity... since I notice that most of us who passed the
Certification have adjusted their Sigs to say "Certified ColdFusion
Developer", wouldn't it be easier to use an abbreviation?

I know that most of my customers wouldn't know what that meant if it came up
and bit them, also they ignore most things after the name (such as PhD)

Philip Arnold (CCD, maybe?)
ASP Multimedia Limited
T: +44 (0)20 8680 1133

"Websites for the real world"

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





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

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



RE: cd-rom based applications

2000-11-15 Thread Paul Mone

What are you using to build the application?

If you're using Director, I'm pretty sure you can accompplish something like
this via Lingo.  Then again, this all depends on what you're searching?

If you're searching files, you'll have to consider the different
platforms/filesystems that your CDROM will be running on.

-Original Message-
From: Shawn Regan [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 2:36 PM
To: CF-Talk
Subject: cd-rom based applications


This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.

--_=_NextPart_001_01C04F54.76265940
Content-Type: text/plain;
charset="iso-8859-1"

has anyone done a cd-rom application for any client that had to have
searching functions? If so how did you go about doing it?

Shawn Regan
[EMAIL PROTECTED]
Cold Fusion Developer
Pacific Technology Solutions



--_=_NextPart_001_01C04F54.76265940
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable






cd-rom based applications



has anyone done a cd-rom application for any client =
that had to have searching functions? If so how did you go about doing =
it?

Shawn Regan
[EMAIL PROTECTED]
Cold Fusion Developer
Pacific Technology Solutions


   =20




--_=_NextPart_001_01C04F54.76265940--


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


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



RE: [RegEx help PLEASE hurry...]

2000-11-15 Thread BORKMAN Lee

Guys,

It looks like my previous message didn't make it.

JP was looking for a STUDIO solution.  Here it is.

Use Extended Replace.

Find:
"(.) "  without the quotes

Replace with:
\1

Don't forget to check the Regular Expressions checkbox.

have fun,
Lee Borkman
Senior Web Development Officer
New South Wales Roads and Traffic Authority
(612) 9218 6159




IMPORTANT NOTICE:
This e-mail and any attachment to it is intended only to be read or used by
the named addressee.  It is confidential and may contain legally privileged
information.  No confidentiality or privilege is waived or lost by any
mistaken transmission to you.  If you receive this e-mail in error, please
immediately delete it from your system and notify the sender.  You must not
disclose, copy or use any part of this e-mail if you are not the intended
recipient.  The RTA is not responsible for any unauthorised alterations to
this e-mail or attachment to it.  

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



Re: need help w/ session management

2000-11-15 Thread Justin Scott

Would it help if someone wrote a tutorial covering several different ways to
handle session management stuff?  I'd thought about doing this on more than
one occasion, but I didn't know if it was something that would be useful in
the CF community or not.  If anyone is willing, e-mail me at
[EMAIL PROTECTED] with details and possibly code samples with the way that
you manage sessions and I'll compile it all into a nice tutorial or web page
or something (or both).

Anyway, the method I find to work best for me is this...

1. User enters login_id/password.
2. Check to see if they're correct, if not throw error.
3. Assign a session ID variable using the CreateUUID() function.
4. Pop this variable into a session_id column in their row in the database,
then populate a Session_ID cookie or session variable with this value.
5. On pages that require a login, check for that value, then pull the needed
info from the database using their session_id cookie or session variable.
This info in this case would be the permissions for what database entries
they can update and such.

I find this to be fairly simple to use, and virtually impossible to spoof
since the CreateUUID() function is never supposed to generate the same ID
twice, and because the string is so long.  Not to mention their session_id
value would change every time the user logged in.  Even if someone did have
a good understanding of how that function generated values, it would not be
easy to guess the session_id of someone else in the system.  The best way to
prevent that is to use session timing as well, but that's another topic
entirely.

One drawback is that the user would not be able to login from two different
browsers at once even on the same computer, although this is kind of good in
a way because it prevents multiple people from using a given account at the
same time.

If you have any questions about this method, or if anyone can see any
obvious flaws, please let me know .

___

Justin Scott :: [Staff Developer]
http://www.annex.com


> I'm basically just trying to create an application that requires login.
> depending on what id is used to log in with will depend on what pages that
> person can view and what fields in a shared database they will have access
> to view and or update. I'm still a newbie and use 3 different coldfusion
> books as a reference but still can't figure out how to set this up
> correctly. Does anyone know of any good web based tutorials on this
matter.



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



Re: Dreamweaver Ultradev 4 - any good?

2000-11-15 Thread Stephen M. Aylor


I think I'll wait till after ivanopolo reviews it :-)

kidding...

Steve




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



RE: Jumpin Jesus! Thers a MEMORY LEAK!!!!

2000-11-15 Thread Paul Mone

I think they even tried to pan this off as a 'feature' for a while too.  If
I can recall correctly they claimed it was intentional in order to increase
performance by not wasting time releasing and then re-allocating memory.

-Original Message-
From: Robert Flesher [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 4:29 PM
To: CF-Talk
Subject: Re: Jumpin Jesus! Thers a MEMORY LEAK


Actually, in cf 4.5 it does leak for no reason :-).  Running Windows 2000
server and cf 4.5 there is a memory leak inherent in the cf server service.
It was fixed in 4.5.1, but if you havn't upgraded, that's probably it.

Rob Flesher
Cold Fusion Applications Developer
LivingNexus, LLD.
 N. 19th Street, Suite 210
Arlington, VA 22209
[EMAIL PROTECTED]



>From: "William J Wheatley" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: CF-Talk <[EMAIL PROTECTED]>
>Subject: Re: Jumpin Jesus! Thers a MEMORY LEAK
>Date: Wed, 15 Nov 2000 15:37:57 -0500
>
>i would say ROGUE CODE =) or something is not locked right.
>Memory does not leak for no reason.
>I have thought it did but i found my junior developer went and left alot of
>locks off so i kept crashing out and leaking memory on top of it so check
>=)
>
>
>
>Bill Wheatley
>Director of Development
>AEPS INC
>Allaire ColdFusion Consulting Partner
>Allaire Certified ColdFusion Developer
>http://www.aeps.com
>ICQ: 417645
>http://www.aeps2000.com
>954-472-6684 X303
>
>IMPORTANT NOTICE:
>This e-mail and any attachment to it is intended only to be read or used by
>the named addressee.  It is confidential and may contain legally privileged
>information.  No confidentiality or privilege is waived or lost by any
>mistaken transmission to you.  If you receive this e-mail in error, please
>immediately delete it from your system and notify the sender.  You must not
>disclose, copy or use any part of this e-mail if you are not the intended
>recipient.  The RTA is not responsible for any unauthorized alterations to
>this e-mail or attachment to it
>
>- Original Message -
>From: "Emmet McGovern" <[EMAIL PROTECTED]>
>To: "CF-Talk" <[EMAIL PROTECTED]>
>Sent: Wednesday, November 15, 2000 1:05 PM
>Subject: Jumpin Jesus! Thers a MEMORY LEAK
>
>
> > Anyone know how to track down a memory leak.  I was away for a week and
>now
> > my server is runnin out of virtual memory every 3-4 days. Even under the
> > bright lights, isolation, chinese water torture, and Twisted Sister
>blaring
> > on 10, my junior developers swear they havent written any rogue code.
>Is
>it
> > possible to track this down somehow?
> >
> >
> > Emmet McGovern
> > Byte Size Inc.
> >
>--
>--
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or
>send
>a message with 'unsubscribe' in the body to
>[EMAIL PROTECTED]
> >
>
>---
-
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a
>message with 'unsubscribe' in the body to
>[EMAIL PROTECTED]



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

Share information about yourself, create your own public profile at
http://profiles.msn.com.



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


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



Re: How To Determine Logged In Users

2000-11-15 Thread AustralianAccommodation.com Pty. Ltd.

they already have registered other wise how can they log themselves in lol

I am referring to users that have logged in using their own login name and password

- Original Message - 
From: "Rick Lamb" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, November 16, 2000 9:31 AM
Subject: RE: How To Determine Logged In Users


Make them register, then store the info in a client variable or as a cookie
on the client.

Rick

-Original Message-
From: AustralianAccommodation.com Pty. Ltd.
[mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 2:51 PM
To: CF-Talk
Subject: How To Determine Logged In Users


Just wondering how I can go about coding so I can determine the names of
those members who are currently logged into my website. At the moment I can
determine the number of persons logged in and their ip addresses however I
am wanting  to try and take it to the next step so that I can see who
exactly is logged in


Kind Regards

Claude Raiola (Director)
AustralianAccommodation.com Pty. Ltd.
Email: [EMAIL PROTECTED]
Developers Of:
  Website: www.AustralianAccommodation.com
  Website: www.AccommodationNewZealand.com




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


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



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



RE: Studio - left panel missing

2000-11-15 Thread Caulfield, Michael

You might try hitting F9 (function key 9) if you're on windows. It toggles
the left nav stuff.

-Original Message-
From: W Luke [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 12:29 PM
To: CF-Talk
Subject: Studio - left panel missing


Hi,

For some bizarre reason the left panel, with directory structure and Docs,
in CF Studio has vanished.  The same happened in Homesite a month ago, and
I'm still none the wiser as to how to get it back.

I've looked everywhere (obviously not hard enough) - anyone advise?

Thanks

Will



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

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



RE: append variable to a variable??

2000-11-15 Thread Sandra Clark


#evaluate('Edname#x#')#


-Original Message-
From: S R [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 4:56 PM
To: CF-Talk
Subject: append variable to a variable??


Is there anyway to do this?

I have six variables in my database they are called:

EdName1, EdName2, etc.

It would be awesome if I could set a variable that could dynamically change
the number of each variable for me so I don't have to hard code the
variable.

For example (I know this doesn't work but it will get my point across:



#EdName#numvar## = EdName2

Thanks for your help

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

Share information about yourself, create your own public profile at
http://profiles.msn.com.



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



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



Re: RegEx help PLEASE hurry...

2000-11-15 Thread Rob Keniger

on 11/16/00 10:50 AM, David Cummins at [EMAIL PROTECTED] wrote:

> 

This is the regExp syntax, but you would need to use this regexp to do the
job properly:



-- 

Rob Keniger

big bang solutions





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



RE: append variable to a variable??

2000-11-15 Thread Paul Mone

Wow, I didn't know you could do that.  thanks.

-Original Message-
From: Andrew [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 7:40 PM
To: CF-Talk
Subject: RE: append variable to a variable??


Sal:

Sure there is. try this for instance:




Edname2 is #Edname2#

How's that?


Andrew Hewitt
Web Application Developer
webworld studios, inc.
www.wwstudios.com


-Original Message-
From: S R [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 7:56 PM
To: CF-Talk
Subject: append variable to a variable??


Is there anyway to do this?

I have six variables in my database they are called:

EdName1, EdName2, etc.

It would be awesome if I could set a variable that could dynamically change
the number of each variable for me so I don't have to hard code the
variable.

For example (I know this doesn't work but it will get my point across:



#EdName#numvar## = EdName2

Thanks for your help

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

Share information about yourself, create your own public profile at
http://profiles.msn.com.



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




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


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



RE: append variable to a variable??

2000-11-15 Thread Paul Mone

You can use evaluate to do this to display variables:






#evaluate("EdName" & nIndex)#


However you cannot use it on the left side of an experssion, i.e





Maybe you should use an array.


-Original Message-
From: S R [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 4:56 PM
To: CF-Talk
Subject: append variable to a variable??


Is there anyway to do this?

I have six variables in my database they are called:

EdName1, EdName2, etc.

It would be awesome if I could set a variable that could dynamically change
the number of each variable for me so I don't have to hard code the
variable.

For example (I know this doesn't work but it will get my point across:



#EdName#numvar## = EdName2

Thanks for your help

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

Share information about yourself, create your own public profile at
http://profiles.msn.com.



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


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



Nested Structures and Arrays

2000-11-15 Thread Eric Gilbert

I'm encountering something odd, and I'm not sure if it is a bug with the
version of CFServer I'm using or a deeper CF language issue.

I get the error:
"The member "EMPLOYER.ADDRESS" in dimension 1 of object
"Session.Intake.Parent" cannot be found. Please, modify the member name"

when I try to execute the following script block (with proper locking..)


Session.Intake = structnew();
Session.Intake.URLToken = URLToken;
Session.Intake.Guardian = arrayNew(1);
Session.Intake.Guardian[1] = structnew();
Session.Intake.Guardian[1].Employer = structnew();
Session.Intake.Guardian[1].Employer.Name = "";
Session.Intake.Guardian[1].Employer.Address = structnew();

//Works great till here
Session.Intake.Parent[1].Employer.Address.StreetAddress = "";



I'm running PWS on Win98 with a developer's edition of CFServer.

Server Product ColdFusion Server
 Version 4, 0, 0, 0




Eric Gilbert
Developer
Stone Ground Solutions
560 Sutter St., Suite 400
San Francisco, CA 94102
415.252.0600 voice
415.252.0123 fax
www.stoneground.com


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



Nested Structures and Arrays

2000-11-15 Thread Eric Gilbert

I'm encountering something odd, and I'm not sure if it is a bug with the
version of CFServer I'm using or a deeper CF issue.

I get the error "The member "EMPLOYER.ADDRESS" in dimension 1 of object
"Session.Intake.Parent" cannot be found. Please, modify the member name"

when I try to execute the following script block (with proper locking..)


Session.Intake = structnew();
Session.Intake.URLToken = URLToken;
Session.Intake.Guardian = arrayNew(1);
Session.Intake.Guardian[1] = structnew();
Session.Intake.Guardian[1].Employer = structnew();
Session.Intake.Guardian[1].Employer.Name = "";
Session.Intake.Guardian[1].Employer.Address = structnew();

//Works great till here
Session.Intake.Parent[1].Employer.Address.StreetAddress = "";



I'm running PWS on Win98 with a developer's edition.

Server Product ColdFusion Server
 Version 4, 0, 0, 0
 Edition Enterprise



Eric Gilbert
Developer
Stone Ground Solutions
560 Sutter St., Suite 400
San Francisco, CA 94102
415.252.0600 voice
415.252.0123 fax
www.stoneground.com


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



RE: Counting Checkboxes

2000-11-15 Thread Paul Mone

You can count the number of times a checkbox has been clicked with
Javascript:


function addClick(){
nTemp = Number(document.forms[0].numOfClicks.value);
document.forms[0].numOfClicks.value = nTemp + 1;
}







However, I think using a checkbox will confuse the user. Perhaps you should
have a '+' and '-' icon next to a quantity field.  Like this:


function addClick(){
nTemp = Number(document.forms[0].numOfClicks.value);
if(isNaN(nTemp)){
nTemp = 0;}

document.forms[0].numOfClicks.value = nTemp + 1;
}

function delClick(){
nTemp = Number(document.forms[0].numOfClicks.value);
if(isNaN(nTemp))
nTemp = 0;

if(nTemp > 0)
document.forms[0].numOfClicks.value = nTemp - 1;
else
document.forms[0].numOfClicks.value = nTemp;
}



add
remove




---
Paul Mone
Ninthlink Consulting Group
[EMAIL PROTECTED]
619.222.7082


-Original Message-
From: t nelson [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 5:30 PM
To: CF-Talk
Subject: Counting Checkboxes


Hi all,

I have an application that i am building where the end user can pull up
multiple peripheral parts for any given base system(s). After that they can
select the peripheral parts they want by selecting the corresponding
checkboxes. Next, the user is able to enter the number of parts they would
like to purchase.

I have already set it up so that the page where the user can enter in
quantity, lists every part they selected. Here's the problem:

I want the quantity field to be filled in as the page is loaded. more to the
point the user can select more than one of the same peripheral part as some
parts have multi-compatibility(ie printer cables, they go with just about
everything). Is there a way for me to count the number of times a checkbox
is selected? Otherwise I would have to either leave the field blank or hope
the user can remember how many printer cables they need for each of their
base systems?

so far I have only been able to default it to 1. which doesn't work if the
user has selected more than one of the same part.

any ideas out there?

Thanks in advance everyone.

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

Share information about yourself, create your own public profile at
http://profiles.msn.com.



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


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



cfGRID VARIABLE BEING LOST

2000-11-15 Thread Richard Kern

 To the group,

Strange behavior on the server has just occured.  The cfgrid was working and
now is not.  It works in studio but when transferred to the server the
action page can't find the variable for the cfgrid name.  Debug info
follows.  Any idea as to what might be happening?  Note that the form
variables are filled in when running locally in studio

Thanks
Richard
Form Fields:

server variable result:

__CFGRID__CFFORM_1__LOGINADMIN2=
FIELDNAMES=SUBMIT,__CFGRID__CFFORM_1__LOGINADMIN2
LOGINADMIN2=
SUBMIT=Submit This Change


local variable result:

__CFGRID__CFFORM_1__LOGINADMIN2=__CFGRID__EDIT__=5IDYNAMEYPASSYCOMPAN
YNAMEYUSERNAMEY1U1010bbbbcc
FIELDNAMES=SUBMIT,__CFGRID__CFFORM_1__LOGINADMIN2
LOGINADMIN2.COMPANYNAME[1]=cc
LOGINADMIN2.ID[1]=10
LOGINADMIN2.NAME[1]=bb
LOGINADMIN2.ORIGINAL.COMPANYNAME[1]=
LOGINADMIN2.ORIGINAL.ID[1]=10
LOGINADMIN2.ORIGINAL.NAME[1]=bb
LOGINADMIN2.ORIGINAL.PASS[1]=
LOGINADMIN2.ORIGINAL.USERNAME[1]=
LOGINADMIN2.PASS[1]=
LOGINADMIN2.ROWSTATUS.ACTION[1]=U
LOGINADMIN2.USERNAME[1]=
SUBMIT=Submit This Change

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



RE: Certified ColdFusion Developers

2000-11-15 Thread Richard Kern

FWTW,

CCD also means Charge Coupled Device 

we could go on from there but I think I like the full def better
Richard Kern

-Original Message-
From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 8:09 AM
To: CF-Talk
Subject: Certified ColdFusion Developers


Just out of curiosity... since I notice that most of us who passed the
Certification have adjusted their Sigs to say "Certified ColdFusion
Developer", wouldn't it be easier to use an abbreviation?

I know that most of my customers wouldn't know what that meant if it came up
and bit them, also they ignore most things after the name (such as PhD)

Philip Arnold (CCD, maybe?)
ASP Multimedia Limited
T: +44 (0)20 8680 1133

"Websites for the real world"

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





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

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



RE: RegEx help PLEASE hurry...

2000-11-15 Thread BORKMAN Lee

Try this:

Find:
(.) 
there's a space on the end of that!!, like "(.) "

Replace with:
\1

Make sure you check the Regular Expressions checkbox.

Best of luck,
Lee (Bjork) Borkman
http://bjork.net ColdFusion Tags by Bjork



IMPORTANT NOTICE:
This e-mail and any attachment to it is intended only to be read or used by
the named addressee.  It is confidential and may contain legally privileged
information.  No confidentiality or privilege is waived or lost by any
mistaken transmission to you.  If you receive this e-mail in error, please
immediately delete it from your system and notify the sender.  You must not
disclose, copy or use any part of this e-mail if you are not the intended
recipient.  The RTA is not responsible for any unauthorised alterations to
this e-mail or attachment to it.  

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



Re: [cd-rom based applications]

2000-11-15 Thread Alex

does the client have cf installed?

Shawn Regan <[EMAIL PROTECTED]> wrote:
This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.

--_=_NextPart_001_01C04F54.76265940
Content-Type: text/plain;
charset="iso-8859-1"

has anyone done a cd-rom application for any client that had to have
searching functions? If so how did you go about doing it?

Shawn Regan
[EMAIL PROTECTED]
Cold Fusion Developer
Pacific Technology Solutions



--_=_NextPart_001_01C04F54.76265940
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable






cd-rom based applications



has anyone done a cd-rom application for any client =
that had to have searching functions? If so how did you go about doing =
it?

Shawn Regan
[EMAIL PROTECTED]
Cold Fusion Developer
Pacific Technology Solutions


   =20




--_=_NextPart_001_01C04F54.76265940--

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



Get free email and a permanent address at http://www.netaddress.com/?N=1

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



Re: Certification Exam

2000-11-15 Thread Leong Yew

Hi,

I'm pretty new to this thread. Not knowing what's transpired, I'm just
wondering if anyone who's taken the certification exam could comment on the
following:

1. What sort of familiarity are you expected to have with each CF tag and
function? Are you supposed to know every attribute that you can use with
each tag?

2. Can anyone recommed any exam preparation material or books? I found it
really disappointing that compared to the more established exams (eg
Microsoft's or Novell's) there aren't a lot of published materials or sample
exams (not questions) you can refer to.

3. When you're taking the exam, can you return to previous questions or must
you answer each question there and then? (I guess I'd have to admit that I'm
not sure if its computerized or paper-based).

Leong

- Original Message -
From: "Philip Arnold - ASP" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, November 16, 2000 6:49 AM
Subject: RE: Certification Exam


> > The test is easy enough, especially considering you only need 60%.  Many
> of
> > the questions are ambiguous so if you are not sure you can get a decent
> > amount wrong.
>
> Hopefully they'll change the questions soon.
>
> One thing to note is that they have a large bank of questions, so you
> shouldn't get the same exam if you sit it twice (some people were at the
> Conference)
>
> > If you've been coding for about a year or two and are
> > familiar with the majority of CF tags you'll be fine.
>
> As an ammendment to Andrew's comment - be familiar with the majority of
the
> CF4.5 tags, knowing CF4 will get you by, but they do ask some CF4.5
specific
> questions
>
> > Look over the tags
> > and functions, as well as error processing and how cf handles copying
from
> > one variable to another (remember cf is pass-by-reference).
>
> Also brush up on how CFScript works - it's fairly important... oh, and
> knowing HTML, JavaScript and how a website basically works is a damn good
> idea 
>
> > Brush up on your queries
>
> A decent, but not amazing, knowledge of SQL is (pseudo) required, so
knowing
> only "SELECT * FROM TABLE" won't cut it...
>
> > and last but not least... get a good night's sleep.
>
> Erm, I took it on 3 hours sleep over 40 hours... running on coffee, but
> having sleep is a DAMN good idea 
>
> Overall, know as much about CF as you can - pretty bleeding obvious, but
> there were some people at the Conf who took it after using CF for only a
> couple of months (from those I chatted to and what I heard), which is a
very
> bad idea - you can't just know the manuals parrot fashion - you MUST know
> the material!
>
> BTW, 60% isn't a difficult target to hit, it was annoying when a question
> has multiple answers but the system only allows one!
>
> Philip Arnold
> Director
> Certified ColdFusion Developer
> ASP Multimedia Limited
> T: +44 (0)20 8680 1133
>
> "Websites for the real world"
>
> **
> This email and any files transmitted with it are confidential and
> intended solely for the use of the individual or entity to whom they
> are addressed. If you have received this email in error please notify
> the system manager.
> **
>
>
> --
--
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send
a message with 'unsubscribe' in the body to
[EMAIL PROTECTED]


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



RE: How To Determine Logged In Users

2000-11-15 Thread Rick Lamb

Make them register, then store the info in a client variable or as a cookie
on the client.

Rick

-Original Message-
From: AustralianAccommodation.com Pty. Ltd.
[mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 2:51 PM
To: CF-Talk
Subject: How To Determine Logged In Users


Just wondering how I can go about coding so I can determine the names of
those members who are currently logged into my website. At the moment I can
determine the number of persons logged in and their ip addresses however I
am wanting  to try and take it to the next step so that I can see who
exactly is logged in


Kind Regards

Claude Raiola (Director)
AustralianAccommodation.com Pty. Ltd.
Email: [EMAIL PROTECTED]
Developers Of:
  Website: www.AustralianAccommodation.com
  Website: www.AccommodationNewZealand.com




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


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



Re: cd-rom based applications

2000-11-15 Thread Michael She

You can try a java applet to do this.


At 02:36 PM 11/15/00 -0800, you wrote:

>This message is in MIME format. Since your mail reader does not understand
>this format, some or all of this message may not be legible.
>
>--_=_NextPart_001_01C04F54.76265940
>Content-Type: text/plain;
> charset="iso-8859-1"
>
>has anyone done a cd-rom application for any client that had to have
>searching functions? If so how did you go about doing it?
>
>Shawn Regan
>[EMAIL PROTECTED]
>Cold Fusion Developer
>Pacific Technology Solutions
>
>
>
>--_=_NextPart_001_01C04F54.76265940
>Content-Type: text/html;
> charset="iso-8859-1"
>Content-Transfer-Encoding: quoted-printable
>
>
>cd-rom based applications
>
>has anyone done a cd-rom application for any client = that had to have 
>searching functions? If so how did you go about doing = it?
>
>Shawn Regan
>[EMAIL PROTECTED]
>Cold Fusion Developer
>Pacific Technology Solutions
>
>=20
>--_=_NextPart_001_01C04F54.76265940--
>
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send 
>a message with 'unsubscribe' in the body to [EMAIL PROTECTED]
>
>-=-=-
>SBG-Priority: 4 (Low) http://www.internz.com/SpamBeGone/

-- 
Michael She
I m a g i n e   C o m m u n i c a t i o n s
Company E-mail: [EMAIL PROTECTED]
Personal E-mail: [EMAIL PROTECTED]
ICQ UIN: #243466
Personal Homepage: http://www.michaelshe.com (Under Construction)
Imagine Communications: http://www.imagineer.net
PGP Fingerprint: 9A24 1DA9 39B8 0A0C C5ED 6E5D 45E9 075A 51CD 66A1


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



Re: [RegEx help PLEASE hurry...]

2000-11-15 Thread David Cummins

That's a bit too hardcore, it will become "Helloall"... what about my earlier
suggestion?

David Cummins

Alex wrote:
> 
> rereplace("#text#"," ","","ALL")
> 
> "j p" <[EMAIL PROTECTED]> wrote:
> Hello all
> 
> I have a page of text that looks like this...
> 
> H e l l o   A l l
> 
> I want to condense it to...
> 
> Hello All (getting rid of one space following every character)
> 
> I know I can do it with regEx in studio replace pane...
> but I don't know the syntax...
> 
> Anyone, Anyone, Beuhler???
> 
> TIA
> jp
> _
> Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
> 
> Share information about yourself, create your own public profile at
> http://profiles.msn.com.

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



Re: append variable to a variable??

2000-11-15 Thread Justin Scott

I haven't done this in a while, but I believe this is the correct syntax...



___

Justin Scott :: [Staff Developer]
http://www.annex.com


> EdName1, EdName2, etc.
>
> It would be awesome if I could set a variable that could dynamically
change
> the number of each variable for me so I don't have to hard code the
> variable.
>
> For example (I know this doesn't work but it will get my point across:
>
> 
>
> #EdName#numvar## = EdName2



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



RE: Netscape 6 out UGH!!!!

2000-11-15 Thread Ken Wilson

> The thing that bugged me was the user isn't given an option to not have
> any existing defaults changed during installation, NS6 just makes the
> changes without asking.



I was given the choice during the installation of NS6. Said no and all works
just like it always has.

Ken


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



Re: PCodeDocumentNodeImp::validateSelf

2000-11-15 Thread Michael Ross

I got the pcode error when my variables in SQL 7.0 were nvarchar, ntext and such.  
Once I changed them(varchar, text) it worked.

thanks

>>> [EMAIL PROTECTED] 11/12/00 08:36PM >>>
On 11/13/00, David Cummins penned:
>I've seen it once before. Damned if I know - I think its an internal error.
>
>BTW, does anybody know how to find anything on the Allaire site? I hear
>references to a search that works properly, but I've never seen a 
>description of
>a PCode error yet on their site.

The only thing I found in the knowledge base basically said there's 
no way to determine what they are. You can do some things that will 
help you guess, and do some registry hacks in 4.51 that will cause CF 
server to restart. But I'm using 4.01 since 4.51 is such crap. I just 
restarted CF server and it went away. I'm using the same custom tag, 
that the PCode message said caused the error, under multiple sites 
and it only happened on the one, so it seems to be a random thing.
-- 

Bud Schneehagen - Tropical Web Creations

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

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


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



Re: Moving Studio between machines

2000-11-15 Thread Kay Smoljak

On Wed, 15 Nov 2000 10:03:25 -0500, "Chris Evans" <[EMAIL PROTECTED]>
wrote:

>I am migrating between laptops.  I would like to move all of my prefs and
>setup from my NT machine to my new Win2K machine.  Which files and registry
>settings can I move so all of my preferences are maintained?

I copied the entire reg key for Studio from a win98 machine to a win2k
machine and it worked perfectly. Make sure you grab your snippets folder as
well though (if you use it).

HTH
K.
__
Kay Smoljak - HTML/ColdFusion Developer - PerthWeb Pty Ltd
Internet Solutions for your business!

Level 9/105 St George's Tc - Perth - Western Australia
Ph: (08) 9226 1366 Fax: (08) 9226 1375 Mobile : 0419 949 007
Visit Perth online! : www.perthweb.com.au


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



RE: Novell Advanced Security Woes

2000-11-15 Thread Michael Ross

I know that if you want to do a look up to NDS with cfldap you can.  But you can't 
authenticate to it.  Allaire has never tested it and they say it won't work.  The 
built it for Netscape DS.  The siteminder piece doesn't recognize Novell DS.  I got 
your same problem some time ago and opened a ticket.and nothing..doesn't 
work...You can verify the connection and it works, but if you were to go to your 
policy and check the users your shouldn't see anything...
sorry...

Now should anyone have successfully auth against Novell DS, using cf 4.5.1, and 
advanced security please lets talk.

Thanks



>>> [EMAIL PROTECTED] 11/06/00 10:32AM >>>
Yes, I should have mentioned Rick's tool. I was going down the CF specific
route but, Rick's tool can solve your problem too.

Steve


-Original Message-
From: Rick Osborne [Mojo] [mailto:[EMAIL PROTECTED]] 
Sent: Monday, November 06, 2000 1:06 AM
To: CF-Talk
Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] 
Subject: RE: Novell Advanced Security Woes


FYI, I wrote an ISAPI DLL for IIS to do pretty much exactly what Steve talks
about at the end there.  It is completely free and comes with source.  It is
available at:

http://www.rixsoft.com/NWAuth/ 

Of course, it means that IIS does the authentication instead of CF, but that
may be good or bad depending on your situation.

-Original Message-
From: Steve Bernard [mailto:[EMAIL PROTECTED]] 
Sent: Saturday, November 04, 2000 22:41
To: CF-Talk
Subject: RE: Novell Advanced Security Woes


With native CF capability you'll have to use CFLDAP to query NDS' LDAP
interface directly. This doesn't allow you to use NDS as your AS repository
but, it's better than nothing. You could try hand building the schema in
NDS. Another option is to use native OS authentication/authorization but,
have that redirected to NDS. Like using Client32 for NT.

Steve




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


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


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



Re: need help w/ session management

2000-11-15 Thread Tammy Schilling

Session management was the hardest thing for me to get, too.  None of the CF books 
seem to cover it very well.  The one that I found the "most" helpful was
CFDummies book.  Some people are too proud to use those books, but it was better than 
the others on that subject.

Do you have some specific code that you would like looked at?

Tammy

Jesse wrote:

> I'm basically just trying to create an application that requires login.
> depending on what id is used to log in with will depend on what pages that
> person can view and what fields in a shared database they will have access
> to view and or update. I'm still a newbie and use 3 different coldfusion
> books as a reference but still can't figure out how to set this up
> correctly. Does anyone know of any good web based tutorials on this matter.
>
> thanks
>
> 
>
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
>with 'unsubscribe' in the body to [EMAIL PROTECTED]

--
personal copy designs
better living through computer graphics
http://www.personal-copy.com
410 219 5300



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



RE: RegEx help PLEASE hurry...

2000-11-15 Thread Jay Jennings

Baby way to do it:
1. Replace all 3 spaces with ~~~
2. Replace all single space with nothing
3. Replace all ~~~ with a single space.
 :)


> -Original Message-
> From: j p [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, November 15, 2000 12:42 PM
> To: CF-Talk
> Subject: RegEx help PLEASE hurry...
> 
> 
> Hello all
> 
> I have a page of text that looks like this...
> 
> H e l l o   A l l
> 
> I want to condense it to...
> 
> Hello All (getting rid of one space following every character)
> 
> I know I can do it with regEx in studio replace pane...
> but I don't know the syntax...
> 
> Anyone, Anyone, Beuhler???
> 
> TIA
> jp
> _
> Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
> 
> Share information about yourself, create your own public profile at 
> http://profiles.msn.com.
> 
> --
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists 
> or send a message with 'unsubscribe' in the body to 
> [EMAIL PROTECTED]
> 

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



RE: append variable to a variable??

2000-11-15 Thread Andrew

Sal:

Sure there is. try this for instance:




Edname2 is #Edname2#

How's that?


Andrew Hewitt
Web Application Developer
webworld studios, inc.
www.wwstudios.com


-Original Message-
From: S R [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 7:56 PM
To: CF-Talk
Subject: append variable to a variable??


Is there anyway to do this?

I have six variables in my database they are called:

EdName1, EdName2, etc.

It would be awesome if I could set a variable that could dynamically change
the number of each variable for me so I don't have to hard code the
variable.

For example (I know this doesn't work but it will get my point across:



#EdName#numvar## = EdName2

Thanks for your help

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

Share information about yourself, create your own public profile at
http://profiles.msn.com.



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



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



RE: Locked App Scope vs. Request Scope

2000-11-15 Thread Walker, Matthew

> I thought application.cfm is read every time there is a 
> request to the CF
> server?  Why would anyone set an application scope in the 
> application.cfm
> file? Application scopes have nothing to do with 
> application.cfm? Right?

In application.cfm, you would typically check to see if the application
scope variables are defined, and if not then create them.

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



RE: Back Button on Dynamic pages

2000-11-15 Thread Jaime Garza


Did you catch my previous posting on this same thread???

That is how I deal with this: CFLOCATION

> -Original Message-
> From: Peter Theobald [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, November 15, 2000 3:38 PM
> To: CF-Talk
> Subject: RE: Back Button on Dynamic pages
>
>
> What about going back and NOT resubmitting the data?
> Specifically, I have a page (let's say index.cfm) that displays a
> form, and then based on the presence of a Form variable the same
> page processes the form. But if the user hits 'BACK', instead of
> returning to the blank form, the browser will see the same page
> name and try to resubmit the data again.
> How do I make 'BACK' redisplay the blank form?
>
> At 12:27 PM 11/15/00 -0600, Rick Lamb wrote:
> >I think this would work:
> >
> >onload {
> > window.location.reload(true);}
> >
> >Rick
> >
> >-Original Message-
> >From: Nathan Focht [mailto:[EMAIL PROTECTED]]
> >Sent: Wednesday, November 15, 2000 11:02 AM
> >To: CF-Talk
> >Subject: Back Button on Dynamic pages
> >
> >
> >This is a multi-part message in MIME format.
> >
> >--=_NextPart_000_0106_01C04EFB.D216C7C0
> >Content-Type: text/plain;
> >charset="iso-8859-1"
> >Content-Transfer-Encoding: quoted-printable
> >
> >Hello everyone,
> >
> >I have a large page that people are using the browser back
> button to =
> >return to and get that ugly 'Expired Page' message.  Is there
> any way to =
> >have the page know that it is a history.back command and do an auto =
> >refresh or the like?
> >
> >Thanks in Advance.
> >
> >Nathan A. Focht
> >http://www.fusionlink.com
> >(912)-398-3548
> >
> >
> >
> >
> >--=_NextPart_000_0106_01C04EFB.D216C7C0
> >Content-Type: text/html;
> >charset="iso-8859-1"
> >Content-Transfer-Encoding: quoted-printable
> >
> >
> >Hello everyone,
> >
> >I have a large page = that people=20 are using the browser
> back button to return to and get that ugly = 'Expired Page'=20
> message.  Is there any way to have the page know that it is a =
> history.back=20 command and do an auto refresh or the like?
> >
> >Thanks in Advance.
> >
> >Nathan A. Focht
> ><3d.htm>http://www.fusionlink.com
> >(912)= -398-3548
> >
> >
> >
> >
> >--=_NextPart_000_0106_01C04EFB.D216C7C0--
> >
> >-
> ---
> >
> >Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> >Unsubscribe:
http://www.houseoffusion.com/index.cfm?sidebar=lists or send a
>message with 'unsubscribe' in the body to
[EMAIL PROTECTED]
>
>---
-
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a
message with 'unsubscribe' in the body to [EMAIL PROTECTED]


---
Peter Theobald, Chief Technology Officer
LiquidStreaming http://www.liquidstreaming.com
[EMAIL PROTECTED]
Phone 1.212.545.1232 x204 Fax 1.212.545.0938

To put this contact information into your Palm device, click here:
http://www.coola.com/cgi-bin/addinfo.cgi?pid=15803&rid=972879910&type=A




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


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



RE: Netscape 6 out UGH!!!!

2000-11-15 Thread Chris Montgomery


>-Original Message-
>From: Gavin Myers [mailto:[EMAIL PROTECTED]]
>Sent: Wednesday, November 15, 2000 2:31 PM
>To: CF-Talk
>Subject: RE: Netscape 6 out UGH
>

>
>Does anyone have any specific examples of things that don't
>work like they
>used to? Like when using js what doesn't work, or websites
>that used to work
>in other browsers that don't in n6?
>

Yeah, Internet Explorer.  After installing NS6, clicking on hypertext
links in Outlook email messages start IE, but the page doesn't load.
Also, clicking on the File menu in IE will show you that the "Edit"
option is now set to "Edit with Netscape Navigator."  After uninstalling
NS6, had to go into IE and reset the web settings for it to work
properly again.

The thing that bugged me was the user isn't given an option to not have
any existing defaults changed during installation, NS6 just makes the
changes without asking.

Chris Montgomery [EMAIL PROTECTED]

Web Development & Consulting http://www.astutia.com
Allaire Consulting Partner & NetObjects Reseller
210-490-3249/888-745-7603Fax 210-490-4692


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



RE: RegEx help PLEASE hurry...

2000-11-15 Thread Peter Alexandrou

You could do something "dodgy" like:






But a regular expression replace would be better :-)

> -Original Message-
> From: j p [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, 16 November 2000 07:42
> To: CF-Talk
> Subject: RegEx help PLEASE hurry...
> 
> 
> Hello all
> 
> I have a page of text that looks like this...
> 
> H e l l o  A l l
> 
> I want to condense it to...
> 
> Hello All (getting rid of one space following every character)
> 
> I know I can do it with regEx in studio replace pane...
> but I don't know the syntax...
> 
> Anyone, Anyone, Beuhler???
> 
> TIA
> jp
> __
> ___
> Get Your Private, Free E-mail from MSN Hotmail at 
> http://www.hotmail.com.
> 
> Share information about yourself, create your own public profile at 
> http://profiles.msn.com.
> 
> --
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: 
> http://www.houseoffusion.com/index.cfm?sidebar=lists or send 
> a message with 'unsubscribe' in the body to 
> [EMAIL PROTECTED]

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



RE: Long list lag times?

2000-11-15 Thread Andrew


I've not only experienced lags of a couple hours but also some of the
messages I've posted end up lost on the information super highway and don't
get to the list.  Let's hope this one does.


Andrew Hewitt
Web Application Developer
webworld studios, inc.
www.wwstudios.com


-Original Message-
From: Kevin Miller [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 5:19 PM
To: CF-Talk
Subject: Long list lag times?



Has anyone noticed the reoccurrence of long list post lag times?  Messages
submitted during the day can take in excess of 3-4 hours to appear on the
list.

Kevin



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



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



Re: [RegEx help PLEASE hurry...]

2000-11-15 Thread Alex

rereplace("#text#"," ","","ALL")

"j p" <[EMAIL PROTECTED]> wrote:
Hello all

I have a page of text that looks like this...

H e l l o   A l l

I want to condense it to...

Hello All (getting rid of one space following every character)

I know I can do it with regEx in studio replace pane...
but I don't know the syntax...

Anyone, Anyone, Beuhler???

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

Share information about yourself, create your own public profile at 
http://profiles.msn.com.


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



Get free email and a permanent address at http://www.netaddress.com/?N=1

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



RE: Studio - left panel missing

2000-11-15 Thread Norman Elton

Will-

Press F9, it should pop back. You may have to resize it if it is too small
to see.

Norman Elton
Information Technology
College of William & Mary

-Original Message-
From: W Luke [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 1:29 PM
To: CF-Talk
Subject: Studio - left panel missing


Hi,

For some bizarre reason the left panel, with directory structure and Docs,
in CF Studio has vanished.  The same happened in Homesite a month ago, and
I'm still none the wiser as to how to get it back.

I've looked everywhere (obviously not hard enough) - anyone advise?

Thanks

Will



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


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



RE: Certified ColdFusion Developers

2000-11-15 Thread Braver, Ben:


what about those of us who are just "certifiable"?


> -Original Message-
> From: AustralianAccommodation.com Pty. Ltd.
> [SMTP:[EMAIL PROTECTED]]
> Sent: Wednesday, November 15, 2000 12:18 PM
> To:   CF-Talk
> Subject:  Re: Certified ColdFusion Developers
> 
> not that I am anywhere near being a cold fusion certified developer but
> for what it is worth I suggest your abbreviation be CFCD
> 
> Kind Regards
> 
> Claude Raiola (Director)
> AustralianAccommodation.com Pty. Ltd.
> Email: [EMAIL PROTECTED]
> Developers Of:
>   Website: www.AustralianAccommodation.com
>   Website: www.AccommodationNewZealand.com
> 
> 
> - Original Message - 
> From: "paul smith" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Thursday, November 16, 2000 2:39 AM
> Subject: Re: Certified ColdFusion Developers
> 
> 
> CERF ;-)
> 
> At 03:09 PM 11/15/00 +, you wrote:
> >Just out of curiosity... since I notice that most of us who passed the
> >Certification have adjusted their Sigs to say "Certified ColdFusion
> >Developer", wouldn't it be easier to use an abbreviation?
> >
> >I know that most of my customers wouldn't know what that meant if it came
> up
> >and bit them, also they ignore most things after the name (such as PhD)
> >
> >Philip Arnold (CCD, maybe?)
> >ASP Multimedia Limited
> >T: +44 (0)20 8680 1133
> >
> >"Websites for the real world"
> >
> >**
> >This email and any files transmitted with it are confidential and
> >intended solely for the use of the individual or entity to whom they
> >are addressed. If you have received this email in error please notify
> >the system manager.
> >**
> >
> >
> >
> >-
> ---
> >Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> >Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send
> 
> >a message with 'unsubscribe' in the body to
> [EMAIL PROTECTED]
> 
> --
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send
> a message with 'unsubscribe' in the body to
> [EMAIL PROTECTED]
> 
> 
> --
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send
> a message with 'unsubscribe' in the body to
> [EMAIL PROTECTED]

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



RE: Back Button on Dynamic pages

2000-11-15 Thread Peter Theobald

What about going back and NOT resubmitting the data?
Specifically, I have a page (let's say index.cfm) that displays a form, and then based 
on the presence of a Form variable the same page processes the form. But if the user 
hits 'BACK', instead of returning to the blank form, the browser will see the same 
page name and try to resubmit the data again.
How do I make 'BACK' redisplay the blank form?

At 12:27 PM 11/15/00 -0600, Rick Lamb wrote:
>I think this would work:
>
>onload {
> window.location.reload(true);}
>
>Rick
>
>-Original Message-
>From: Nathan Focht [mailto:[EMAIL PROTECTED]]
>Sent: Wednesday, November 15, 2000 11:02 AM
>To: CF-Talk
>Subject: Back Button on Dynamic pages
>
>
>This is a multi-part message in MIME format.
>
>--=_NextPart_000_0106_01C04EFB.D216C7C0
>Content-Type: text/plain;
>charset="iso-8859-1"
>Content-Transfer-Encoding: quoted-printable
>
>Hello everyone,
>
>I have a large page that people are using the browser back button to =
>return to and get that ugly 'Expired Page' message.  Is there any way to =
>have the page know that it is a history.back command and do an auto =
>refresh or the like?
>
>Thanks in Advance.
>
>Nathan A. Focht
>http://www.fusionlink.com
>(912)-398-3548
>
>
>
>
>--=_NextPart_000_0106_01C04EFB.D216C7C0
>Content-Type: text/html;
>charset="iso-8859-1"
>Content-Transfer-Encoding: quoted-printable
>
>
>Hello everyone,
> 
>I have a large page = that people=20 are using the browser back button to return 
>to and get that ugly = 'Expired Page'=20 message.  Is there any way to have the page 
>know that it is a = history.back=20 command and do an auto refresh or the like?
> 
>Thanks in Advance.
> 
>Nathan A. Focht
><3d.htm>http://www.fusionlink.com
>(912)= -398-3548
> 
>
> 
>
>--=_NextPart_000_0106_01C04EFB.D216C7C0--
>
>
>
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a
>message with 'unsubscribe' in the body to [EMAIL PROTECTED]
>
>
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
>with 'unsubscribe' in the body to [EMAIL PROTECTED] 


---
Peter Theobald, Chief Technology Officer
LiquidStreaming http://www.liquidstreaming.com
[EMAIL PROTECTED]
Phone 1.212.545.1232 x204 Fax 1.212.545.0938

To put this contact information into your Palm device, click here:
http://www.coola.com/cgi-bin/addinfo.cgi?pid=15803&rid=972879910&type=A



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



RE: Locked App Scope vs. Request Scope

2000-11-15 Thread Peter Theobald

If you want an application variable initialized as the very first thing the site does, 
what file is guaranteed to be run first before anything else? Application.cfm.

But you dont want it to re-initialize the variable every time a page is requested, so 
you surround it with a test:

CFLOCK Application
CFIF IsDefined Application.mythingamajiggie
CFSET Application.mythingamajiggie = mydata
/CFIF
/CFLOCK

At 01:46 PM 11/15/00 -0600, Mary Fowler wrote:
>I thought application.cfm is read every time there is a request to the CF
>server?  Why would anyone set an application scope in the application.cfm
>file? Application scopes have nothing to do with application.cfm? Right?
>
>I just finished Advanced CF Development a couple of weeks ago and Bruce Van
>Horn, our instructor, said it was good practice to lock ALL application,
>session and server scope variables. Either you lock them all or don't bother
>with any.
>
>A little confused,
>:)mary
>
>
>
>-Original Message-
>From: David Shadovitz [mailto:[EMAIL PROTECTED]]
>Sent: Wednesday, October 11, 2000 1:00 AM
>To: CF-Talk
>Subject: Locked App Scope vs. Request Scope
>
>
>I have followed the various threads on locking Application scope
>variables and on the use of the Request scope, but I still have a
>question.
>
>I create and populate an Application-scope structure in Application.cfm.
>This is done only once, when the application is first initialized.  I use
>this structure on many pages, within a readonly lock.
>
>I know that I could copy (via Duplicate) the structure into the Request
>scope and omit the lock.
>
>Which method is better?  For what regime does Duplicate beat CFLOCK?  I
>imagine this would be a function of the structure's complexity and of the
>number of CFLOCK calls.
>
>(A variation of the Request scope method would be to create/populate the
>structure directly in the Request scope, eliminating usage of the
>Application scope.  But it seems to me that this would be slower than
>simply copying it from the Application scope into the Request scope.)
>
>Thanks.
>-David
>
>P.S. My Allaire Developer Conference *unofficial* sign-ip sheet has been
>moved to
>www.cfm-resources.com/d/dshadovi/index.html. If you're coming, sign up!
>
>YOU'RE PAYING TOO MUCH FOR THE INTERNET!
>Juno now offers FREE Internet Access!
>Try it today - there's no risk!  For your FREE software, visit:
>http://dl.www.juno.com/get/tagj.
>
>--
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
>send a message to [EMAIL PROTECTED] with 'unsubscribe' in
>the body.
>
>
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
>with 'unsubscribe' in the body to [EMAIL PROTECTED] 


---
Peter Theobald, Chief Technology Officer
LiquidStreaming http://www.liquidstreaming.com
[EMAIL PROTECTED]
Phone 1.212.545.1232 x204 Fax 1.212.545.0938

To put this contact information into your Palm device, click here:
http://www.coola.com/cgi-bin/addinfo.cgi?pid=15803&rid=972879910&type=A



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



append variable to a variable??

2000-11-15 Thread S R

Is there anyway to do this?

I have six variables in my database they are called:

EdName1, EdName2, etc.

It would be awesome if I could set a variable that could dynamically change 
the number of each variable for me so I don't have to hard code the 
variable.

For example (I know this doesn't work but it will get my point across:



#EdName#numvar## = EdName2

Thanks for your help

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

Share information about yourself, create your own public profile at 
http://profiles.msn.com.


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



Re: Jumpin Jesus! Thers a MEMORY LEAK!!!!

2000-11-15 Thread Robert Flesher

Actually, in cf 4.5 it does leak for no reason :-).  Running Windows 2000 
server and cf 4.5 there is a memory leak inherent in the cf server service.  
It was fixed in 4.5.1, but if you havn't upgraded, that's probably it.

Rob Flesher
Cold Fusion Applications Developer
LivingNexus, LLD.
 N. 19th Street, Suite 210
Arlington, VA 22209
[EMAIL PROTECTED]



>From: "William J Wheatley" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: CF-Talk <[EMAIL PROTECTED]>
>Subject: Re: Jumpin Jesus! Thers a MEMORY LEAK
>Date: Wed, 15 Nov 2000 15:37:57 -0500
>
>i would say ROGUE CODE =) or something is not locked right.
>Memory does not leak for no reason.
>I have thought it did but i found my junior developer went and left alot of
>locks off so i kept crashing out and leaking memory on top of it so check 
>=)
>
>
>
>Bill Wheatley
>Director of Development
>AEPS INC
>Allaire ColdFusion Consulting Partner
>Allaire Certified ColdFusion Developer
>http://www.aeps.com
>ICQ: 417645
>http://www.aeps2000.com
>954-472-6684 X303
>
>IMPORTANT NOTICE:
>This e-mail and any attachment to it is intended only to be read or used by
>the named addressee.  It is confidential and may contain legally privileged
>information.  No confidentiality or privilege is waived or lost by any
>mistaken transmission to you.  If you receive this e-mail in error, please
>immediately delete it from your system and notify the sender.  You must not
>disclose, copy or use any part of this e-mail if you are not the intended
>recipient.  The RTA is not responsible for any unauthorized alterations to
>this e-mail or attachment to it
>
>- Original Message -
>From: "Emmet McGovern" <[EMAIL PROTECTED]>
>To: "CF-Talk" <[EMAIL PROTECTED]>
>Sent: Wednesday, November 15, 2000 1:05 PM
>Subject: Jumpin Jesus! Thers a MEMORY LEAK
>
>
> > Anyone know how to track down a memory leak.  I was away for a week and
>now
> > my server is runnin out of virtual memory every 3-4 days. Even under the
> > bright lights, isolation, chinese water torture, and Twisted Sister
>blaring
> > on 10, my junior developers swear they havent written any rogue code.  
>Is
>it
> > possible to track this down somehow?
> >
> >
> > Emmet McGovern
> > Byte Size Inc.
> > 
>--
>--
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or 
>send
>a message with 'unsubscribe' in the body to
>[EMAIL PROTECTED]
> >
>
>
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a 
>message with 'unsubscribe' in the body to 
>[EMAIL PROTECTED]



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

Share information about yourself, create your own public profile at 
http://profiles.msn.com.


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



Re: RegEx help PLEASE hurry...

2000-11-15 Thread David Cummins

I think it goes like this:



Where "." is any character, the brackets denote grouping as a subexpression, and
"\1" is a backreference to that subexpression.

David Cummins

j p wrote:
> 
> Hello all
> 
> I have a page of text that looks like this...
> 
> H e l l o   A l l
> 
> I want to condense it to...
> 
> Hello All (getting rid of one space following every character)
> 
> I know I can do it with regEx in studio replace pane...
> but I don't know the syntax...
> 
> Anyone, Anyone, Beuhler???
> 
> TIA
> jp

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



Counting Checkboxes

2000-11-15 Thread t nelson

Hi all,

I have an application that i am building where the end user can pull up 
multiple peripheral parts for any given base system(s). After that they can 
select the peripheral parts they want by selecting the corresponding 
checkboxes. Next, the user is able to enter the number of parts they would 
like to purchase.

I have already set it up so that the page where the user can enter in 
quantity, lists every part they selected. Here's the problem:

I want the quantity field to be filled in as the page is loaded. more to the 
point the user can select more than one of the same peripheral part as some 
parts have multi-compatibility(ie printer cables, they go with just about 
everything). Is there a way for me to count the number of times a checkbox 
is selected? Otherwise I would have to either leave the field blank or hope 
the user can remember how many printer cables they need for each of their 
base systems?

so far I have only been able to default it to 1. which doesn't work if the 
user has selected more than one of the same part.

any ideas out there?

Thanks in advance everyone.

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

Share information about yourself, create your own public profile at 
http://profiles.msn.com.


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



RE: How To Determine Logged In Users

2000-11-15 Thread Steve Martin

When a user logs in, update an application variable keyed on their userid
with a timestamp. To view a list of logged in users simply list all the
userids which have a timestamp of less than your chosen session timeout
period.

Steve

> -Original Message-
> From: AustralianAccommodation.com Pty. Ltd.
> [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, November 15, 2000 20:51
> To: CF-Talk
> Subject: How To Determine Logged In Users
>
>
> Just wondering how I can go about coding so I can determine the
> names of those members who are currently logged into my website.
> At the moment I can determine the number of persons logged in and
> their ip addresses however I am wanting  to try and take it to
> the next step so that I can see who exactly is logged in
>
>
> Kind Regards
>
> Claude Raiola (Director)
> AustralianAccommodation.com Pty. Ltd.
> Email: [EMAIL PROTECTED]
> Developers Of:
>   Website: www.AustralianAccommodation.com
>   Website: www.AccommodationNewZealand.com
>
>
> --
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=sts
> or send a message with 'unsubscribe' in the body to
> [EMAIL PROTECTED]
>


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



Multi-PKs in Access DB

2000-11-15 Thread Michael She

I'm building a table in Access and here are some columns:

UserID, UserName, UserPassword, Userlevel etc.

If I put a multiple field Primary key on UserID and Username will I also 
have to add a separate index to Username?

Is MS Access or MS Jet smart enough to split the multiple field PK and use 
each column separately (when needed?).
-- 
Michael She
I m a g i n e   C o m m u n i c a t i o n s
Company E-mail: [EMAIL PROTECTED]
Personal E-mail: [EMAIL PROTECTED]
ICQ UIN: #243466
Personal Homepage: http://www.michaelshe.com (Under Construction)
Imagine Communications: http://www.imagineer.net
PGP Fingerprint: 9A24 1DA9 39B8 0A0C C5ED 6E5D 45E9 075A 51CD 66A1


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



RE: SQL Generator

2000-11-15 Thread Michael She

You can modify the SQL that comes out of MS access.  It's quite easy to 
build statements in that.


Crystal Reports also has a SQL builder that is a stand alone utility.

At 10:23 AM 11/15/00 +0100, you wrote:


>What I'm looking for is a SQL generator that will handle table joins and
>multiple criteria. The same kind of functionality as the query builder in
>Studio, but with a more intuitive, CF-based interface. Does anyone know of
>such a thing? Or - if I wrote one, would anyone be interested in it?
>
>Tom
>
> >
> > There is no username and password for the demo.
> >
> > The demo is just hard coded html to give a view of how the generator works
> > and the files that it will produce.  To follow the demo just click the
> > submit buttons as if you were using the actual product ie
> >
> > choose a database and click connect (the demo is using the Coffee 
> database).
> >
> > choose a table and click the link "generate SQL" (the demo is hard 
> coded for
> > the beans table).
> >
> > You can see the sql that is produced. (note all sql in the trial and full
> > version uses
> > #val(form.variable)# to eliminate malicious sql in fields that arent char
> > etc.
> >
> > In addition you can view the files that will be produced.
> >
> > Another option would be to download the trial version and try the product
> > with your own datasources.
> >
> > Here is the url again
> > http://www.aloha-webdesign.com/sqlgen/
>
>
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send 
>a message with 'unsubscribe' in the body to [EMAIL PROTECTED]
>
>-=-=-
>SBG-Priority: 4 (Low) http://www.internz.com/SpamBeGone/

-- 
Michael She
I m a g i n e   C o m m u n i c a t i o n s
Company E-mail: [EMAIL PROTECTED]
Personal E-mail: [EMAIL PROTECTED]
ICQ UIN: #243466
Personal Homepage: http://www.michaelshe.com (Under Construction)
Imagine Communications: http://www.imagineer.net
PGP Fingerprint: 9A24 1DA9 39B8 0A0C C5ED 6E5D 45E9 075A 51CD 66A1


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



cd-rom based applications

2000-11-15 Thread Shawn Regan

This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.

--_=_NextPart_001_01C04F54.76265940
Content-Type: text/plain;
charset="iso-8859-1"

has anyone done a cd-rom application for any client that had to have
searching functions? If so how did you go about doing it?

Shawn Regan
[EMAIL PROTECTED]
Cold Fusion Developer
Pacific Technology Solutions



--_=_NextPart_001_01C04F54.76265940
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable






cd-rom based applications



has anyone done a cd-rom application for any client =
that had to have searching functions? If so how did you go about doing =
it?

Shawn Regan
[EMAIL PROTECTED]
Cold Fusion Developer
Pacific Technology Solutions


   =20




--_=_NextPart_001_01C04F54.76265940--

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



Re: Autonumbers, inserts and queries

2000-11-15 Thread Jim McAtee

- Original Message -
From: "Joseph Thompson" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, November 15, 2000 11:54 AM
Subject: Re: Autonumbers, inserts and queries


> this is something I have used in the past
>
> 
> Insert into events(EventName)
> Values('testing')
> 
>
>
> 
> select @@identity as ID_num
> 
>
>
> 
> #ID_num#
> 



How safe is this?  I believe it's already been established that in a busy
environemt, using the following in Access is not gauranteed to retrieve the
most recently inserted record id:




INSERT INTO mytable (field1, field2)
VALUES ('#blah1#', '#blah2#')



SELECT Max(mytableid) AS id
FROM mytable





Now someone is suggesting running the query for @@identity without
designating a table?  This may be the way Access does things, but what
assurance do you have that it's even going to return an ID from the table
you want?

Another question I've had, concerning the CFTRANSACTION-enclosed queries...
If this doesn't work in Access, it suggests that CFTRANSACTION may have no
affect when working with Acess databases.  Anyone know whether this is true
or not?

Jim




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



RE: Allaire Advanced Fusion Developement Class

2000-11-15 Thread Robert M. Saxon, Jr.

Fig Leaf does a very good job with this class.  Maybe you'd get lucky and
have Dave Watts as your instructor as I did.  He's great!  It was a really
good class.

-Original Message-
From: Willy Ray [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 11:27 AM

I'm trying to get my superiors to send me to the Advanced Developement
class.  Anybody been to this?  How did you like it?



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



RE: Studio - left panel missing

2000-11-15 Thread Andrew



Try Tools > Resource Windows > Dock All.


Andrew Hewitt
Web Application Developer
webworld studios, inc.
www.wwstudios.com


-Original Message-
From: W Luke [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 1:29 PM
To: CF-Talk
Subject: Studio - left panel missing


Hi,

For some bizarre reason the left panel, with directory structure and Docs,
in CF Studio has vanished.  The same happened in Homesite a month ago, and
I'm still none the wiser as to how to get it back.

I've looked everywhere (obviously not hard enough) - anyone advise?

Thanks

Will



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



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



Re: Studio - left panel missing

2000-11-15 Thread W Luke

Thanks Gavin - tandem :)

Will
--
Coming soon: http://www.LocalBounty.com
Local Classified Advertising for the UK


- Original Message -
From: "Gavin Myers" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Wednesday, November 15, 2000 9:30 PM
Subject: RE: Studio - left panel missing


>
> There is an option to hide it, have you tried pressing F9?
> -Original Message-
> From: W Luke [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, November 15, 2000 12:29 PM
> To: CF-Talk
> Subject: Studio - left panel missing
>
>
> Hi,
>
> For some bizarre reason the left panel, with directory structure and Docs,
> in CF Studio has vanished.  The same happened in Homesite a month ago, and
> I'm still none the wiser as to how to get it back.
>
> I've looked everywhere (obviously not hard enough) - anyone advise?
>
> Thanks
>
> Will
>
> --
--
> 
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send
a
> message with 'unsubscribe' in the body to
[EMAIL PROTECTED]
>


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



Long list lag times?

2000-11-15 Thread Kevin Miller


Has anyone noticed the reoccurrence of long list post lag times?  Messages submitted 
during the day can take in excess of 3-4 hours to appear on the list.

Kevin


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



RE: Allaire Advanced Fusion Developement Class

2000-11-15 Thread Kevin Miller


What are the topics covered?

Thanks,

Kevin

>>> [EMAIL PROTECTED] 11/15/00 10:50AM >>>
I liked it a lot!  I would recommend it to anybody who's comfortable
with
the basics of CF.  The course book has a lot of easy to follow
explanations
of everything, and makes for a good reference.  I left with valuable
knowledge.

Marianne Daye

-Original Message-
From: Willy Ray [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, November 15, 2000 11:27 AM
To: CF-Talk
Subject: OT: Allaire Advanced Fusion Developement Class



I'm trying to get my superiors to send me to the Advanced Developement
class.  Anybody been to this?  How did you like it?



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

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

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



RE: Amaya is out!

2000-11-15 Thread Hoffman, Joe (CIT)

Yes ...  it is not a brand new item ... the first time I 
downloaded it was 9/28/99 version 2.1 and the current 
release looks like 4.0

Amaya New Features History
http://www.w3.org/Amaya/User/New.html

>This trraacy person seems to spam us with some regularity. I 
>would suspect he/she is collecting email addresses from the CF 
>and/or JS-Jive discussion lists. NOT cool.

I was wondering were I picked up a spammmer on my gov't work 
email address.  Normally I am good at keeping it away from that 
kind of dishonorable types.  Haven't had any spam for almost a 
year on this account ... just got two in the last month.  
Anybody want to compare notes of header info ... contact me direct.

Joe Hoffman mailto:[EMAIL PROTECTED]
National Institutes of Health 
Center for Information Technology 
Division of Computer System Services

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 12:52 PM
To: CF-Talk
Subject: RE: Amaya is out!


> Anyone else ever heard of this?
>
> -Original Message-
> From: Tracy [mailto:[EMAIL PROTECTED]]
> Sent: Monday, November 15, 1999 8:33 AM
> To: [EMAIL PROTECTED]
> Subject: Amaya is out!
>
>
> Webmonkey, 

Yeah, I have, since I got the same message this morning. This trraacy person
seems to spam us with some regularity. I would suspect he/she is collecting
email addresses from the CF and/or JS-Jive discussion lists. NOT cool. Amaya
may be the greatest thing since butterfly ballots, but it sure doesn't come
across as such when it's introduced by UCE.


Ron Allen Hornbaker
President/CTO
Humankind Systems, Inc.
http://humankindsystems.com
mailto:[EMAIL PROTECTED]





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

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



RE: Studio - left panel missing

2000-11-15 Thread Eric J Hoffman

Several options:

First, make sure you move your mouse along the left edge of the screen and
see if it changes to a draggable cursorit have been shrunk.

2nd, right click on the button bar area...and choose View from the dropdown
list if its not checked.  The furthest left button that has a split window
look with a little folder in the lower right should be depressed to show the
resource tabs.

Let me know if one of those tow things help.

Eric J Hoffman, MAIP
Director of Internet Development
Small Dog Design

-Original Message-
From: W Luke [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 12:29 PM
To: CF-Talk
Subject: Studio - left panel missing


Hi,

For some bizarre reason the left panel, with directory structure and Docs,
in CF Studio has vanished.  The same happened in Homesite a month ago, and
I'm still none the wiser as to how to get it back.

I've looked everywhere (obviously not hard enough) - anyone advise?

Thanks

Will



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


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



Re: Setting up a webserver

2000-11-15 Thread CF-Talk

IIS 4 is part of Option Pack for NT 4. As far as I know Opt-Pack is not
dependent on a SP
IIS 2/3 comes with the original CD or SP1.
Uwe
- Original Message -
From: "Kevin Schmidt" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Mittwoch, 15. November 2000 20:49
Subject: Re: Setting up a webserver


IIS is part of an option pack..I think it was SP3..but I am not sure haven't
done it in awhile myself either.
- Original Message -
From: "Gavin Myers" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, November 15, 2000 9:40 AM
Subject: OT: Setting up a webserver


> hey, i havent done this in awhile, and i've only done it once. But i'm
> trying to set up a webserver on nt, this is going to be a local intranet
> deal.
>
> I'm installing the SP's right now, but isn't there some order that they
get
> installed? I thought it went like sp 5, 6 then 3 or something like that...
>
> any help is appreciated
>
> thanks!
>
> Gavin
> --
--
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send
a message with 'unsubscribe' in the body to
[EMAIL PROTECTED]
>




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



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



Caching CFHTTP results

2000-11-15 Thread Owens, Howard


I would like to use CFHTTP to pull an HTML page from one server to another
(we own both servers ... one Unix, the other NT -- I'm pulling from the NT
to the Unix -- too complicated to explain why.) and have the output cached
so that we cut down on the number of actual requests passing from the Unix
server to the NT.  We really need to cut the load to the NT.

As far as I can tell, using  at the top of my  page doesn't
do the trick.

What happens is that if the NT is overloaded with requests, this page
outputs a "connection failure" error.  I thought if I could cache a good
clean output then the page would then display the output on the Unix box
even if the NT isn't responding.  This isn't happening.  

Any suggestions?

H.



=
Howard Owens
Web Producer
InsideVC.com
mailto:[EMAIL PROTECTED]
=



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



RE: Jumpin Jesus! Thers a MEMORY LEAK!!!!

2000-11-15 Thread Steve Bernard

You can use NT/W2k's Performance Monitor to identify a memory leak.
Unfortunately, all CF templates will show up under one process. There are
tools which will show all child processes spawned by a parent under NT but
most are commercial. Also, CF doesn't spawn children as far as I know but
rather, creates multiple threads under the single process. Calls to internal
objects like CFHTTP, etc. may be treated separately though. The first thing
I'd do is audit all code written in the aforementioned timeframe. If you
make use of COM objects or other external resources make sure to audit those
too. With IIS you may be able to use the Transaction Manager to narrow down
the field a bit as far as COM/DCOM is concerned.

As a start with PerfMon, try these counters:

Memory - Pages/sec
Memory - Available bytes

As Available bytes falls, Pages/sec should increase.



If you have a particular process you'd like to test:

Process -  - Handle count
Process -  - Thread count
Process -  - Working set

Steve

-Original Message-
From: Emmet McGovern [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 1:06 PM
To: CF-Talk
Subject: Jumpin Jesus! Thers a MEMORY LEAK


Anyone know how to track down a memory leak.  I was away for a week and now
my server is runnin out of virtual memory every 3-4 days. Even under the
bright lights, isolation, chinese water torture, and Twisted Sister blaring
on 10, my junior developers swear they havent written any rogue code.  Is it
possible to track this down somehow?


Emmet McGovern
Byte Size Inc.


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


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



RE: Studio - left panel missing

2000-11-15 Thread Philip Arnold - ASP

> For some bizarre reason the left panel, with directory structure and Docs,
> in CF Studio has vanished.  The same happened in Homesite a month ago, and
> I'm still none the wiser as to how to get it back.
>
> I've looked everywhere (obviously not hard enough) - anyone advise?

Simplest way in CFS (not sure about HomeSite)
View/Resource Windows/Dock All

This brings them back to their default width - on the Beta's, just press F9
as it's the toggle to get rid of them and bring them back

HTH

Philip Arnold
Director
Certified ColdFusion Developer
ASP Multimedia Limited
T: +44 (0)20 8680 1133

"Websites for the real world"

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



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



RE: Studio - left panel missing

2000-11-15 Thread Sean Daniels

> For some bizarre reason the left panel, with directory structure and Docs,
> in CF Studio has vanished.  The same happened in Homesite a month ago, and
> I'm still none the wiser as to how to get it back.
>
> I've looked everywhere (obviously not hard enough) - anyone advise?

Press F9 ?

- Sean


  Sean Daniels
  Manager, Engineering
  Marketplace Technologies
  (t) 207.439.6030
  (c) 207.332.6340


http://www.dealforce.com
http://www.dealstream.com
http://www.mergernetwork.com




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



RE: Studio - left panel missing

2000-11-15 Thread Hoffman, Joe (CIT)

In Studio (version ?)

View, Resource Window, Dock All

Joe Hoffman mailto:[EMAIL PROTECTED]
National Institutes of Health 
Center for Information Technology 
Division of Computer System Services

-Original Message-
From: W Luke [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 1:29 PM
To: CF-Talk
Subject: Studio - left panel missing


Hi,

For some bizarre reason the left panel, with directory structure and Docs,
in CF Studio has vanished.  The same happened in Homesite a month ago, and
I'm still none the wiser as to how to get it back.

I've looked everywhere (obviously not hard enough) - anyone advise?

Thanks

Will



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

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



Re: Studio - left panel missing

2000-11-15 Thread Jennifer

At 06:28 PM 11/15/00 +, you wrote:
>Hi,
>
>For some bizarre reason the left panel, with directory structure and Docs,
>in CF Studio has vanished.  The same happened in Homesite a month ago, and
>I'm still none the wiser as to how to get it back.
>
>I've looked everywhere (obviously not hard enough) - anyone advise?

View>Resource Tab should be checked. That toggled it for me.


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



RE: Studio - left panel missing

2000-11-15 Thread Scott Wood

in the studio menu options ... .  go to View -> Resource windows -> Dock All

This should put them all back in their happy place.



G. Scott Wood
Developer
HMWeb.com
520-742-2611 Ext.135


-Original Message-
From: W Luke [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 11:29 AM
To: CF-Talk
Subject: Studio - left panel missing


Hi,

For some bizarre reason the left panel, with directory structure and Docs,
in CF Studio has vanished.  The same happened in Homesite a month ago, and
I'm still none the wiser as to how to get it back.

I've looked everywhere (obviously not hard enough) - anyone advise?

Thanks

Will



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

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



Re: Studio - left panel missing

2000-11-15 Thread Nick Slay

Try pressing F9 to re-open the resource tab!

Nick




> From: "W Luke" <[EMAIL PROTECTED]>
> Reply-To: [EMAIL PROTECTED]
> Date: Wed, 15 Nov 2000 18:28:35 -
> To: CF-Talk <[EMAIL PROTECTED]>
> Subject: Studio - left panel missing
> 
> Hi,
> 
> For some bizarre reason the left panel, with directory structure and Docs,
> in CF Studio has vanished.  The same happened in Homesite a month ago, and
> I'm still none the wiser as to how to get it back.
> 
> I've looked everywhere (obviously not hard enough) - anyone advise?
> 
> Thanks
> 
> Will
> 
> --
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a
> message with 'unsubscribe' in the body to [EMAIL PROTECTED]


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



RE: Studio - left panel missing

2000-11-15 Thread Kevin Langevin

Hit F9 to toggle the Resource Window on and off.  You can also go into the
View menu, and choose View --> Resource Windows --> Dock All to make them
all reappear.


-Kev


> -Original Message-
> From: W Luke [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, November 15, 2000 1:29 PM
> To: CF-Talk
> Subject: Studio - left panel missing
>
>
> Hi,
>
> For some bizarre reason the left panel, with directory structure and Docs,
> in CF Studio has vanished.  The same happened in Homesite a month ago, and
> I'm still none the wiser as to how to get it back.
>
> I've looked everywhere (obviously not hard enough) - anyone advise?
>
> Thanks
>
> Will
>
> --
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
> or send a message with 'unsubscribe' in the body to
> [EMAIL PROTECTED]


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



RE: Locked App Scope vs. Request Scope

2000-11-15 Thread Mary Fowler

I thought application.cfm is read every time there is a request to the CF
server?  Why would anyone set an application scope in the application.cfm
file? Application scopes have nothing to do with application.cfm? Right?

I just finished Advanced CF Development a couple of weeks ago and Bruce Van
Horn, our instructor, said it was good practice to lock ALL application,
session and server scope variables. Either you lock them all or don't bother
with any.

A little confused,
:)mary



-Original Message-
From: David Shadovitz [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 11, 2000 1:00 AM
To: CF-Talk
Subject: Locked App Scope vs. Request Scope


I have followed the various threads on locking Application scope
variables and on the use of the Request scope, but I still have a
question.

I create and populate an Application-scope structure in Application.cfm.
This is done only once, when the application is first initialized.  I use
this structure on many pages, within a readonly lock.

I know that I could copy (via Duplicate) the structure into the Request
scope and omit the lock.

Which method is better?  For what regime does Duplicate beat CFLOCK?  I
imagine this would be a function of the structure's complexity and of the
number of CFLOCK calls.

(A variation of the Request scope method would be to create/populate the
structure directly in the Request scope, eliminating usage of the
Application scope.  But it seems to me that this would be slower than
simply copying it from the Application scope into the Request scope.)

Thanks.
-David

P.S. My Allaire Developer Conference *unofficial* sign-ip sheet has been
moved to
www.cfm-resources.com/d/dshadovi/index.html. If you're coming, sign up!

YOU'RE PAYING TOO MUCH FOR THE INTERNET!
Juno now offers FREE Internet Access!
Try it today - there's no risk!  For your FREE software, visit:
http://dl.www.juno.com/get/tagj.

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


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



Studio - left panel missing

2000-11-15 Thread W Luke

Hi,

For some bizarre reason the left panel, with directory structure and Docs,
in CF Studio has vanished.  The same happened in Homesite a month ago, and
I'm still none the wiser as to how to get it back.

I've looked everywhere (obviously not hard enough) - anyone advise?

Thanks

Will



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



RE: Studio - left panel missing

2000-11-15 Thread Kelly Matthews

yes happened to me a few times Go to View and make sure 
Resource Tab is checked.
Kelly

Stay current with what's happening on AirportNet. Subscribe to our 
Announcement list today: http://www.airportnet.org/email.htm

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

> -Original Message-
> From: W Luke [SMTP:[EMAIL PROTECTED]]
> Sent: Wednesday, November 15, 2000 1:29 PM
> To:   CF-Talk
> Subject:  Studio - left panel missing
> 
> Hi,
> 
> For some bizarre reason the left panel, with directory structure and Docs,
> in CF Studio has vanished.  The same happened in Homesite a month ago, and
> I'm still none the wiser as to how to get it back.
> 
> I've looked everywhere (obviously not hard enough) - anyone advise?
> 
> Thanks
> 
> Will
> 
> --
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send
> a message with 'unsubscribe' in the body to
> [EMAIL PROTECTED]

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



RE: Studio - left panel missing

2000-11-15 Thread Christopher Olive, CIO

try View->Resource Windows-> dock all.

chris olive, cio
cresco technologies
[EMAIL PROTECTED]
http://www.crescotech.com



-Original Message-
From: W Luke [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 1:29 PM
To: CF-Talk
Subject: Studio - left panel missing


Hi,

For some bizarre reason the left panel, with directory structure and Docs,
in CF Studio has vanished.  The same happened in Homesite a month ago, and
I'm still none the wiser as to how to get it back.

I've looked everywhere (obviously not hard enough) - anyone advise?

Thanks

Will



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


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



RE: Studio - left panel missing [F9]

2000-11-15 Thread John Rice

This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.

--_=_NextPart_001_01C04F4C.3757189C
Content-Type: text/plain;
charset="iso-8859-1"



Press F9.


-Original Message-
From: W Luke [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 1:29 PM
To: CF-Talk
Subject: Studio - left panel missing


Hi,

For some bizarre reason the left panel, with directory structure and Docs,
in CF Studio has vanished.  The same happened in Homesite a month ago, and
I'm still none the wiser as to how to get it back.

I've looked everywhere (obviously not hard enough) - anyone advise?

Thanks

Will



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

--_=_NextPart_001_01C04F4C.3757189C
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable






RE: Studio - left panel missing [F9]





Press F9.



-Original Message-
From: W Luke [mailto:[EMAIL PROTECTED]">mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 1:29 PM
To: CF-Talk
Subject: Studio - left panel missing



Hi,


For some bizarre reason the left panel, with =
directory structure and Docs,
in CF Studio has vanished.  The same happened =
in Homesite a month ago, and
I'm still none the wiser as to how to get it =
back.


I've looked everywhere (obviously not hard enough) - =
anyone advise?


Thanks


Will


---=
-
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/" =
TARGET=3D"_blank">http://www.mail-archive.com/cf-talk@houseoffusion.com/=

Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=3Dlists" =
TARGET=3D"_blank">http://www.houseoffusion.com/index.cfm?sidebar=3Dlists=
 or send a message with 'unsubscribe' in the body to =
[EMAIL PROTECTED]



--_=_NextPart_001_01C04F4C.3757189C--

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



RE: Studio - left panel missing

2000-11-15 Thread Garza, Jeff

Select View from the menu.  Make sure there is a check next to the Resource
Tab setting.

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

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



Hi,

For some bizarre reason the left panel, with directory structure and Docs,
in CF Studio has vanished.  The same happened in Homesite a month ago, and
I'm still none the wiser as to how to get it back.

I've looked everywhere (obviously not hard enough) - anyone advise?

Thanks

Will


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



RE: Studio - left panel missing

2000-11-15 Thread Dylan Bromby

View--->Resource Tab

Or just hit F9.

-Original Message-
From: W Luke [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 10:29 AM
To: CF-Talk
Subject: Studio - left panel missing


Hi,

For some bizarre reason the left panel, with directory structure and Docs,
in CF Studio has vanished.  The same happened in Homesite a month ago, and
I'm still none the wiser as to how to get it back.

I've looked everywhere (obviously not hard enough) - anyone advise?

Thanks

Will



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



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



RE: CFML.exe with parameters

2000-11-15 Thread Jaime Garza

This is a multi-part message in MIME format.

--=_NextPart_000_0106_01C04F07.21376DE0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit



You set up environment variables before calling CFML.exe, specially
QUERY_STRING.

- Jaime

> -Original Message-
> From: Olivier Moulene [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, November 15, 2000 10:02 AM
> To: CF-Talk
> Subject: CFML.exe with parameters
>
>
> Hello,
>
> Is it possible to transmit parameter to the called template when using
> CFML.exe in a command line?
>
> the syntax I use is : c:\cfml.exe c:\my_dir\my_file.cfm
> but i cannot pass any parameter to the template.
>
> Is there another syntax that permit it ?
>
> Thanks
>
> --
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
> or send a message with 'unsubscribe' in the body to
> [EMAIL PROTECTED]

--=_NextPart_000_0106_01C04F07.21376DE0
Content-Type: text/x-vcard;
name="Jaime Garza.vcf"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: attachment;
filename="Jaime Garza.vcf"

BEGIN:VCARD
VERSION:2.1
N:Garza;Jaime
FN:Jaime Garza
ORG:Celosis, Inc.
TITLE:Director of Development
TEL;WORK;VOICE:(510) 814-3019
TEL;WORK;FAX:(510) 523-1097
ADR;WORK:;;1420 Harbor Bay Pkwy Suite 280;Alameda;CA;94502;United States =
of America
LABEL;WORK;ENCODING=3DQUOTED-PRINTABLE:1420 Harbor Bay Pkwy Suite =
280=3D0D=3D0AAlameda, CA 94502=3D0D=3D0AUnited States of =3D
America
EMAIL;PREF;INTERNET:[EMAIL PROTECTED]
REV:20001031T222652Z
END:VCARD

--=_NextPart_000_0106_01C04F07.21376DE0--


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



Re: Jumpin Jesus! Thers a MEMORY LEAK!!!!

2000-11-15 Thread Jennifer

At 01:05 PM 11/15/00 -0500, you wrote:
>Anyone know how to track down a memory leak.  I was away for a week and now
>my server is runnin out of virtual memory every 3-4 days. Even under the
>bright lights, isolation, chinese water torture, and Twisted Sister blaring
>on 10, my junior developers swear they havent written any rogue code.  Is it
>possible to track this down somehow?

Ah. I see your problem. You need to turn up the music all the way up to 11.

You could have it log virtual memory for a few days, log all server calls 
and compare them. HAHAHAHAHAhahahahahahaaha. Sorry. That's the only way 
I've tested for memory leaks.

Send server info.


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



How to include ampersand in NT command line SET statement?

2000-11-15 Thread Lawrence B. Afrin, M.D.

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

Howdy --

For reasons not worth going into, I'm trying to run a CF template via a
SQL Server trigger doing an "exec master..xp_cmdshell batchfile.cmd"
where the batchfile invokes cfml.exe to run the template.

My problem is that I need to feed the template a query string with
multiple parameters.

I know that, theoretically, the way to do this is to set the
QUERY_STRING environment variable to the query string I want (e.g., "SET
QUERY_STRING=one=1&two=2&three=3") before running cfml.exe, but my
problem is that the NT cmd interpreter is picking up the ampersand as a
special character and terminating the SET at the first ampersand.

Is there some special "escape" syntax that'll let me include an
ampersand as part of the value for a SET statement?  There are no clues
in HELP SET.  I've tried backslashes, double and single quotes, and
other things, but I can't seem to find the magic combination, and I know
there must be a way to do this.

Anybody?

-- Larry Afrin, M.D.
   Medical University of South Carolina
   [EMAIL PROTECTED]


--E7774448A625D015C2801112
Content-Type: text/x-vcard; charset=us-ascii;
 name="afrinl.vcf"
Content-Transfer-Encoding: 7bit
Content-Description: Card for Lawrence B. Afrin, M.D.
Content-Disposition: attachment;
 filename="afrinl.vcf"

begin:vcard 
n:Afrin, M.D.;Lawrence
tel;fax:843-792-3200
tel;work:843-792-4271
x-mozilla-html:FALSE
org:Hollings Cancer Center and the Division of Hematology/Oncology, Medical University 
of South Carolina
version:2.1
email;internet:[EMAIL PROTECTED]
title:Assistant Professor of Medicine
adr;quoted-printable:;;Division of Hematology/Oncology, CSB903=0D=0AP.O. Box 250623, 
96 Jonathan Lucas Street;Charleston;SC;29425;USA
x-mozilla-cpt:;0
fn:Afrin, M.D., Lawrence
end:vcard

--E7774448A625D015C2801112--


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



RE: Studio - left panel missing

2000-11-15 Thread Gavin Myers


There is an option to hide it, have you tried pressing F9?
-Original Message-
From: W Luke [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 12:29 PM
To: CF-Talk
Subject: Studio - left panel missing


Hi,

For some bizarre reason the left panel, with directory structure and Docs,
in CF Studio has vanished.  The same happened in Homesite a month ago, and
I'm still none the wiser as to how to get it back.

I've looked everywhere (obviously not hard enough) - anyone advise?

Thanks

Will



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

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



RE: Jumpin Jesus! Thers a MEMORY LEAK!!!!

2000-11-15 Thread Jaime Garza

This is a multi-part message in MIME format.

--=_NextPart_000_0103_01C04F06.B89DEED0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit



Chech the batch file cycle.bat in your cfusion\bin directory.  Read the top
and see if it helps.  They blame it on ODBC drivers, and hence they give you
a way to restart CF on a given interval.

- Jaime

> -Original Message-
> From: Emmet McGovern [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, November 15, 2000 10:06 AM
> To: CF-Talk
> Subject: Jumpin Jesus! Thers a MEMORY LEAK
>
>
> Anyone know how to track down a memory leak.  I was away for a
> week and now
> my server is runnin out of virtual memory every 3-4 days. Even under the
> bright lights, isolation, chinese water torture, and Twisted
> Sister blaring
> on 10, my junior developers swear they havent written any rogue
> code.  Is it
> possible to track this down somehow?
>
>
> Emmet McGovern
> Byte Size Inc.
> --
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
> or send a message with 'unsubscribe' in the body to
> [EMAIL PROTECTED]
>

--=_NextPart_000_0103_01C04F06.B89DEED0
Content-Type: text/x-vcard;
name="Jaime Garza.vcf"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: attachment;
filename="Jaime Garza.vcf"

BEGIN:VCARD
VERSION:2.1
N:Garza;Jaime
FN:Jaime Garza
ORG:Celosis, Inc.
TITLE:Director of Development
TEL;WORK;VOICE:(510) 814-3019
TEL;WORK;FAX:(510) 523-1097
ADR;WORK:;;1420 Harbor Bay Pkwy Suite 280;Alameda;CA;94502;United States =
of America
LABEL;WORK;ENCODING=3DQUOTED-PRINTABLE:1420 Harbor Bay Pkwy Suite =
280=3D0D=3D0AAlameda, CA 94502=3D0D=3D0AUnited States of =3D
America
EMAIL;PREF;INTERNET:[EMAIL PROTECTED]
REV:20001031T222652Z
END:VCARD

--=_NextPart_000_0103_01C04F06.B89DEED0--


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



Re: Netscape 6 out UGH!!!!

2000-11-15 Thread Dirk De Bock

there is a 25 meg file at

ftp://ftp.netscape.com//pub/netscape6/english/6.0/windows/win32/sea/N6Setup.
exe

that should be the full install as far as I can tell


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



Re: MAIL, HELP ME FOR THE LOVE OF GOD

2000-11-15 Thread Stephen M. Aylor


try the eval of  www.relayfax.com

MDaemon/Deerfield's - RelayFax Server - I use it with outlook express and
PDF's - works pretty good.

I had a bunch o' problems with efax - major LAG time

Other than that, Im devoid of ideas / solutions for ya.

Is efax a must?  I found it was cool and all, but for local faxing - it
wasnt cost effective, but if all your faxing was long distance - it may be a
bene - also - attachment faxing with them took almost 2x as long as on my
14.4 modems w/ relayfax - go figure.

Steve

- Original Message -
From: "Robert Everland" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, November 15, 2000 10:04 AM
Subject: MAIL, HELP ME FOR THE LOVE OF GOD


> Ok I have been trying all day to find a way to send an email to efax
> with an attachment that will take it. I guesse because of the way cfmail
> encodes the email it doesn't know what type of attachment it has. I have
> been trying to get the Dundas email to work but it uses a collection and
the
> com  object keeps erroring out in the to field. Anyone out there either
find
> a workaround to mail efax or know of an easy com object that will just
> encode an attachment? Need it very urgently.
>
> Robert Everland III
> Web Developer
> Dixon Ticonderoga
> --
--
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send
a message with 'unsubscribe' in the body to
[EMAIL PROTECTED]
>
>



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



RE: Studio - left panel missing

2000-11-15 Thread Aaron Johnson

View -- Resource Windows -- Dock All.

AJ

-Original Message-
From: W Luke [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 1:29 PM
To: CF-Talk
Subject: Studio - left panel missing


Hi,

For some bizarre reason the left panel, with directory structure and Docs,
in CF Studio has vanished.  The same happened in Homesite a month ago, and
I'm still none the wiser as to how to get it back.

I've looked everywhere (obviously not hard enough) - anyone advise?

Thanks

Will



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


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



RE: Netscape 6 out UGH!!!!

2000-11-15 Thread Dan G. Switzer, II

I installed it on 3 different PCs. I can't get it to work at all on one, it
just GPFs and dies. I've tried reinstalling, deleting all the files and
registry settings, reinstalling again, etc, etc. Still no go.  The second PC
wouldn't work the first time I installed it, similar problem, no GPFs, but
it would hang and would never load. A second reinstall fixed the problem.
Finally the third PC I installed it to, it work the first time. So, you're
not the only one that's had problems with it.

-Dan

-Original Message-
From: Jeff Fongemie [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 1:28 PM
To: CF-Talk
Subject: RE: Netscape 6 out UGH

Any one else have trouble running it? I d/loaded and installed it fine, but
It crashes on startup! I even uninstalled it, then reinstalled it and it
still crashes!

I'm not impressed.

Jeff Fongemie

-Original Message-
From: lsellers [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 11:31 AM
To: CF-Talk
Subject: RE: Netscape 6 out UGH


My main question is: is there anyway to download the entire thing at once?

(I hate these stupid internet setup programs that are starting to be
popular. You can't save the thing to cdr or share to setup on intranet
machines.)

--min



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



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


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



Re: Setting up a webserver

2000-11-15 Thread Joseph Thompson

then upgrade the whole mess to win2k server  : )

=
1) Install Windows NT 4.0 and (if necessary) upgrade to SP3 (no higher!)
2) Install Windows NT Option pack with IIS (note if your version of Windows
NT came with Service pack 4 or better, Option pack might be included,
install then)
3) Install the latest Service Pack
4) Install SQL 7.0/2000 (optional) and all service packs needed
5) Install CF 4.0 (optional)


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



RE: Newbie Security Question

2000-11-15 Thread Gieseman, Athelene

The latest is that I setup my website to only allow registered users and the
users are now prompted to login (integrated with NT authentication.)
However, when I use  with the variable #cgi.auth_user#, I get
DOMAINNAME\Administrator as the output.  I'm not logging into anything as
Administrator.  If someone could shed some light I'd be appreciative.  

Also, can someone recommend a good book on using the cgi variables or IIS?
I plan a trip to the book store tonight!  Thanks in advance.

Athelene
[EMAIL PROTECTED]

-Original Message-
From: Deanna L. Schneider [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 14, 2000 10:25 AM
To: CF-Talk
Subject: Re: Newbie Security Question


Have you tried using #cgi.authuser#?, or is it auth_userI can never
remember and have to always test it or look it up.

-d




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





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

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



  1   2   3   >