Re: Help with a custom tag

2001-08-04 Thread [EMAIL PROTECTED]

I am not sure that would work for one big reason:Isolated variable scopes.
Take the following code for example:

/



VARIABLES.Name:#VARIABLES.Name#


/

Clearly, there is no CFOUTPUT and the body will display as
"VARIABLES.Name:#VARIABLES.Name#".  The VARIABLES scope is available to this
page though.  When the tag set is called, it will open a 'new' VARIABLES
scope and will not inherit the variable "VARIABLES.Name" UNLESS I pass it as
a parameter.

So, I wrote a file named FRAME.cfm with the following code:

//





Start:#ThisTag.GeneratedContent#









VARIABLES.First_Pound_Location:#VARIABLES.First_Pound_Location#

VARIABLES.Second_Pound_Location:#VARIABLES.Second_Pound_Location#

VARIABLES.Explression_To_Evaluate:#VARIABLES.Explression_To_Evaluate#


##Evaluate(#VARIABLES.Explression_To_Evaluate#))## Yields:


#Evaluate(VARIABLES.Explression_To_Evaluate)#


Type:#CFCATCH.TYPE#
Message:#CFCATCH.MESSAGE#




End:#ThisTag.GeneratedContent#




//

To see this runnign, goto http://WWW.CFAPOSTLE.COM/TESTS/TAGSETS/PAGE.CFM
.   Not the prettiest or most efficient, but should be easy to understand.

A little known attribute of the tag set is that the FORM scope Does pass
without being turned into an attribute.  Which menas that if I create
FORM.Name and I do not pass it as an attribute on the tag set, you can still
se and use it in the tag though the scopes are 'isolated'.

So, Though it may be possible to use Regular Expressions to isolate the
unparsed sections of the ThisTag.GeneratedContent, the variables that need
to be evaluated are largely unavailable.

~.net³


> > For example Search for the First # then the second # and between this do
> > an evaluate on the variable found between them.



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMail - caveats?

2001-08-04 Thread [EMAIL PROTECTED]

Try CFX_iiPOP3
http://iistore.infranet.com

~.net³





- Original Message -
From: "Mike Amburn" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Saturday, August 04, 2001 18:15
Subject: CFMail - caveats?


> i've read several suggestions not to use CFMAIL for sending a lot of
> mail. so, exactly what can and can't CFMAIL handle? is there a general
> load limit that should be understood? are there any limitations (size of
> the mail, number of addresses, etc)?
>
> who's got a 411 on CFMAIL? =)
>
> -mike
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



SOT Make cybercash interface work with cfobject

2001-08-04 Thread Dick Applebaum

Why is a long story, but I am trying to get a cybercash interface to 
work with cfobject.

The interface works fine with an ASP program.

When I try to perform the same operations with cfobject it almost works...

One of the two ways of connecting to cybercash fails because the 
SendMessageBlock method of the Socket object is not well-behaved.

The other way involves encrypting the data with the write method of 
the messageBlock object... this works fine.  Then you are supposed to 
http post the encrypted string to the cybercash URL

This also works fine, but I always get the response:

   MErrMsg=No+merchant+ID+present+in+the+request+URL.&MErrLoc=WRAPPER+
   initalization&MStatus=failure-hard

I have scanned all the Cybercash docs I can find and I can't 
determine what I am doing wrong.

Anyone done this before?

TIA

Dick

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFMail - caveats?

2001-08-04 Thread Mike Amburn

i've read several suggestions not to use CFMAIL for sending a lot of
mail. so, exactly what can and can't CFMAIL handle? is there a general
load limit that should be understood? are there any limitations (size of
the mail, number of addresses, etc)?

who's got a 411 on CFMAIL? =)

-mike

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Verity and Dynamic Pages

2001-08-04 Thread Dave Watts

> Can I use Verity to index the content on dynamic pages? What 
> I mean is, if I put .cfm extension in my CFINDEX tag, will 
> the cfm templates be processed by the coldfusion server 
> before they're indexed?

Yes and no.

Yes, you can index dynamic content. No, if you simply specify .cfm files in
CFINDEX, you'll simply index the file content - your source code.

There are two ways you can index dynamic content. One is to use
TYPE="CUSTOM" in your CFINDEX tags, and feed them queries instead of
directories. This is very easy to do, but you'll typically have to write
some logic in your display code so that when a user selects an item from the
list of matches, the item is displayed appropriately.

The other way you can index dynamic content is to "spider" it. CF 5 provides
the Verity spider for this purpose. You can spider content on your site or
on other sites, with some limitations. Using the Verity spider is explained
within the CF 5 documentation.

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

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: keeping html out of the DB

2001-08-04 Thread Dick Applebaum

Try:

   ]*>", "", "All")>

HTH

DIck


At 9:15 PM + 8/4/01, John Barleycorn wrote:
>Hello, I have form that has a text field in it. if the user types in any
>html code or other code for that matter, i want to be able to remove it. i
>looked for a tag in the tag gallery, but i didn't find one. is there a built
>in fuction that isn't in the book that i can use? thanks for the help.

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Verity and Dynamic Pages

2001-08-04 Thread Willy Ray

Can I use Verity to index the content on dynamic pages?  What I mean is, if I put .cfm 
extension in my CFINDEX tag, will the cfm templates be processed by the coldfusion 
server before they're indexed?

Willy


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



keeping html out of the DB

2001-08-04 Thread John Barleycorn

Hello, I have form that has a text field in it. if the user types in any 
html code or other code for that matter, i want to be able to remove it. i 
looked for a tag in the tag gallery, but i didn't find one. is there a built 
in fuction that isn't in the book that i can use? thanks for the help.

jb
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Help with a custom tag

2001-08-04 Thread Evan Lavidor

That's what I was thinking, but am a little stuck on the regex to do that,
any ideas?

Thanks,

Evan

> -Original Message-
> From: Andrew Scott [mailto:[EMAIL PROTECTED]]
> Sent: Saturday, August 04, 2001 1:17 PM
> To: CF-Talk
> Subject: RE: Help with a  custom tag
>
>
> Yes it is, but you would have to write the code to do this
>
> For example Search for the First # then the second # and between this do
> an evaluate on the variable found between them.
>
>
> > -Original Message-
> > From: Evan Lavidor [mailto:[EMAIL PROTECTED]]
> > Sent: Sunday, 5 August 2001 3:04 AM
> > To: CF-Talk
> > Subject: RE: Help with a  custom tag
> >
> > > 1) Between your custom tags do the following...
> > >   this is #variables.mytest#
> >
> >
> > Right, the original question was whether there was any way to avoid
> having
> > to do this.
> >
> > Basically, I want the functionality that  has in
> being able
> > to parse variables without  tags.  Is this even
> > possible?
> >
> > Thanks,
> >
> > Evan
> >
> >
> > > > -Original Message-
> > > > From: Evan Lavidor [mailto:[EMAIL PROTECTED]]
> > > > Sent: Saturday, 4 August 2001 6:15 AM
> > > > To: CF-Talk
> > > > Subject: RE: Help with a  custom tag
> > > >
> > > > I don't quite get it.
> > > >
> > > > Let's say I have this as the custom tag:
> > > >
> > > > 
> > > > #ThisTag.GeneratedContent#
> > > > 
> > > > 
> > > >
> > > >
> > > > And my call to it is this:
> > > >
> > > > 
> > > >
> > > > 
> > > > this is #variables.mytest#
> > > > 
> > > >
> > > >
> > > > This will give me:
> > > >
> > > > this is this is #variables.mytest#
> > > >
> > > > in bold and italic font.
> > > >
> > > >
> > > > I want it to give me:
> > > >
> > > > this is a test
> > > >
> > > > in bold and italic font.
> > > >
> > > >
> > > > Can I get that without having to nest it in a  or
> something?
> > > I'm
> > > > thinking along the lines of , where it will automatically
> > > Evaluate
> > > > variables inside it.  Is that sort of functionality possible?
> > > >
> > > > Thanks,
> > > >
> > > > Evan
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > > -Original Message-
> > > > > From: Ben Forta [mailto:[EMAIL PROTECTED]]
> > > > > Sent: Friday, August 03, 2001 3:35 PM
> > > > > To: CF-Talk
> > > > > Subject: RE: Help with a  custom tag
> > > > >
> > > > >
> > > > > You don't have to. Once ThisTag.ExecutionMode is "END" all
> > > > > expressions (and
> > > > > tags) in the body will have been processed. You'll have access
> to
> > > > > the output
> > > > > via ThisTag.GeneratedContent.
> > > > >
> > > > > --- Ben
> > > > >
> > > > >
> > > > > -Original Message-
> > > > > From: Evan Lavidor [mailto:[EMAIL PROTECTED]]
> > > > > Sent: Friday, August 03, 2001 2:58 PM
> > > > > To: CF-Talk
> > > > > Subject: Help with a  custom tag
> > > > >
> > > > >
> > > > > I'm working with my first ColdFusion custom tag that's a tag
> > > > > pair.  I've got
> > > > > it working mostly the way I'd like, but I've come up against
> > > > > something that
> > > > > I don't think I'm going to be able to do, but thought I'd ask
> > > anyway.
> > > > >
> > > > > Usage is going to be:
> > > > >
> > > > > 
> > > > > I'll have some text here which the tag will do something with.
> > > > > 
> > > > >
> > > > >
> > > > > But what might be there is the following:
> > > > >
> > > > > 
> > > > > I'll have #variables.text# here which the tag will do something
> > > with.
> > > > > 
> > > > >
> > > > >
> > > > > How can I get the tag to Evaulate the CF variables in between
> it.
> > > Can I?
> > > > > Seems like I'd first have to prefix it with the caller scope
> > > > > (which doesn't
> > > > > seem very doable even with RegEx) and then throw an Evaluate
> > > statement
> > > > > around it.
> > > > >
> > > > > Any ideas?
> > > > >
> > > > > Thanks,
> > > > >
> > > > > Evan
> > > > >
> > > >
> > >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Messy Administrator

2001-08-04 Thread Jay Sudowski - Handy Networks LLC

Hi Darren,

Sounds like you don't have cookies enabled, or for some reason the Admin
is loosing track of your session, which is why you can see the first
frame, but any subsequent requests are denied, and you get the login
page.

Jay Sudowski
-
Handy Networks LLC
TEL: 877-70-HANDY
FAX: 888-300-2FAX
URL: www.handynetworks.com  
-
Providing reseller and dedicated Windows 2000 web hosting solutions.


-Original Message-
From: Darren Labrum [mailto:[EMAIL PROTECTED]] 
Sent: Saturday, August 04, 2001 3:44 PM
To: CF-Talk
Subject: RE: Messy Administrator


Hey Daryl,

Thanks for the reply.  I didn't explain the problem very well but is
what it does is it will bring up the normal log in screen that asks for
the
password.  The administrator in CF 5 is broken into frames.   So when I
log
in it tries to show the previous log in screen in all those frames.  It
looks funky...   Then after a few seconds it will redirect me to the
original log in.

Any way, thanks again for the reply.  Also, my mother was born in
Belfast, N.Ireland.  She grew up there until she was 18 then came to
America.  Half my family is still in that area also.

Thanks,

Darren Labrum

-Original Message-
From: Daryl Fullerton [mailto:[EMAIL PROTECTED]]
Sent: Saturday, August 04, 2001 1:30 PM
To: CF-Talk
Subject: RE: Messy Administrator


Darren,

Do you mean it attempts to download the second page once you login?

If so its a mapping extension that is not setup on IIS for .cfm
filesme thinks

Cheers

D

Daryl Fullerton,
Managing Partner,
BizNet Solutions,
Allaire Premier Partner (Ireland)
133 - 137 Lisburn Road
Belfast
BT9 7AG
N.Ireland

Direct +44 (0) 28 9022 7888
Tel  +44 (0) 028 9022 3224
Fax +44 (0) 028 9022 3223


[EMAIL PROTECTED]
Http://www.BizNet-Solutions.com

[EMAIL PROTECTED] (Chairman)
Http://www.cfug.ie The Irish Cold Fusion User Group


-Original Message-
From: Darren Labrum [mailto:[EMAIL PROTECTED]]
Sent: 04 August 2001 20:21
To: CF-Talk
Subject: Messy Administrator


Hey there,

I am having problems with the ColdFusion administration screen.  When I
log in it looks like the attached file.  What is this all about?  Has
anyone had this happen to them?  I have reinstalled CF server and it
still does it? I don't know what to do.

If anyone has had this occur or knows what is going on please notify me.

Thanks,

Darren Labrum
Infovision, Inc.
email: [EMAIL PROTECTED]
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Messy Administrator

2001-08-04 Thread Darren Labrum

Here is the URL to the image so you can see what it looks like:

http://clickidaho.com/admin.gif

Darren

-Original Message-
From: Daryl Fullerton [mailto:[EMAIL PROTECTED]]
Sent: Saturday, August 04, 2001 1:30 PM
To: CF-Talk
Subject: RE: Messy Administrator


Darren,

Do you mean it attempts to download the second page once you login?

If so its a mapping extension that is not setup on IIS for .cfm
filesme thinks

Cheers

D

Daryl Fullerton,
Managing Partner,
BizNet Solutions,
Allaire Premier Partner (Ireland)
133 - 137 Lisburn Road
Belfast
BT9 7AG
N.Ireland

Direct +44 (0) 28 9022 7888
Tel  +44 (0) 028 9022 3224
Fax +44 (0) 028 9022 3223


[EMAIL PROTECTED]
Http://www.BizNet-Solutions.com

[EMAIL PROTECTED] (Chairman)
Http://www.cfug.ie The Irish Cold Fusion User Group


-Original Message-
From: Darren Labrum [mailto:[EMAIL PROTECTED]]
Sent: 04 August 2001 20:21
To: CF-Talk
Subject: Messy Administrator


Hey there,

I am having problems with the ColdFusion administration screen.  When I
log
in it looks like the attached file.  What is this all about?  Has anyone
had
this happen to them?  I have reinstalled CF server and it still does it?
I
don't know what to do.

If anyone has had this occur or knows what is going on please notify me.

Thanks,

Darren Labrum
Infovision, Inc.
email: [EMAIL PROTECTED]
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Messy Administrator

2001-08-04 Thread Darren Labrum

Thanks Angel,

I noticed that and I replied and addressed that right after I sent the
message to the list.

Thanks,

Darren

-Original Message-
From: Angel Stewart [mailto:[EMAIL PROTECTED]]
Sent: Saturday, August 04, 2001 12:25 PM
To: CF-Talk
Subject: RE: Messy Administrator


Pt..

You can't attach files to this mailing list.
Put the image on a webserver and post the URL instead :)

-Gel


-Original Message-
From: Darren Labrum [mailto:[EMAIL PROTECTED]]

Hey there,

I am having problems with the ColdFusion administration screen.  When I log
in it looks like the attached file.  What is this all about?  Has anyone had
this happen to them?  I have reinstalled CF server and it still does it?  I
don't know what to do.

If anyone has had this occur or knows what is going on please notify me.

Thanks,
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Messy Administrator

2001-08-04 Thread Darren Labrum

Hey Daryl,

Thanks for the reply.  I didn't explain the problem very well but is what it
does is it will bring up the normal log in screen that asks for the
password.  The administrator in CF 5 is broken into frames.   So when I log
in it tries to show the previous log in screen in all those frames.  It
looks funky...   Then after a few seconds it will redirect me to the
original log in.

Any way, thanks again for the reply.  Also, my mother was born in Belfast,
N.Ireland.  She grew up there until she was 18 then came to America.  Half
my family is still in that area also.

Thanks,

Darren Labrum

-Original Message-
From: Daryl Fullerton [mailto:[EMAIL PROTECTED]]
Sent: Saturday, August 04, 2001 1:30 PM
To: CF-Talk
Subject: RE: Messy Administrator


Darren,

Do you mean it attempts to download the second page once you login?

If so its a mapping extension that is not setup on IIS for .cfm
filesme thinks

Cheers

D

Daryl Fullerton,
Managing Partner,
BizNet Solutions,
Allaire Premier Partner (Ireland)
133 - 137 Lisburn Road
Belfast
BT9 7AG
N.Ireland

Direct +44 (0) 28 9022 7888
Tel  +44 (0) 028 9022 3224
Fax +44 (0) 028 9022 3223


[EMAIL PROTECTED]
Http://www.BizNet-Solutions.com

[EMAIL PROTECTED] (Chairman)
Http://www.cfug.ie The Irish Cold Fusion User Group


-Original Message-
From: Darren Labrum [mailto:[EMAIL PROTECTED]]
Sent: 04 August 2001 20:21
To: CF-Talk
Subject: Messy Administrator


Hey there,

I am having problems with the ColdFusion administration screen.  When I
log
in it looks like the attached file.  What is this all about?  Has anyone
had
this happen to them?  I have reinstalled CF server and it still does it?
I
don't know what to do.

If anyone has had this occur or knows what is going on please notify me.

Thanks,

Darren Labrum
Infovision, Inc.
email: [EMAIL PROTECTED]
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Messy Administrator

2001-08-04 Thread Angel Stewart

Pt..

You can't attach files to this mailing list.
Put the image on a webserver and post the URL instead :)

-Gel


-Original Message-
From: Darren Labrum [mailto:[EMAIL PROTECTED]]

Hey there,

I am having problems with the ColdFusion administration screen.  When I log
in it looks like the attached file.  What is this all about?  Has anyone had
this happen to them?  I have reinstalled CF server and it still does it?  I
don't know what to do.

If anyone has had this occur or knows what is going on please notify me.

Thanks,


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Messy Administrator

2001-08-04 Thread Cameron Childress

I have seen this before and I think if you stop/start the cf service it
might go away.  I've also seen this when someone was trying to tinker with
the administrator code and accidentally broke it.

-Cameron


Cameron Childress
elliptIQ Inc.
p.770.460.7277.232
f.770.460.0963

> -Original Message-
> From: Darren Labrum [mailto:[EMAIL PROTECTED]]
> Sent: Saturday, August 04, 2001 3:27 PM
> To: CF-Talk
> Subject: RE: Messy Administrator
>
>
> They stripped the attachment out...  any way, the cf
> administrator is messed
> up in which the login page shows up in all the frames that are in the
> cfadministrator when you log in.  After a few seconds it forwards me back
> out to the log in screen.
>
> Has this happened to anyone?
>
> Thanks,
>
> Darren
>
> -Original Message-
> From: Darren Labrum [mailto:[EMAIL PROTECTED]]
> Sent: Saturday, August 04, 2001 1:21 PM
> To: CF-Talk
> Subject: Messy Administrator
>
>
> Hey there,
>
> I am having problems with the ColdFusion administration screen.
> When I log
> in it looks like the attached file.  What is this all about?  Has
> anyone had
> this happen to them?  I have reinstalled CF server and it still
> does it?  I
> don't know what to do.
>
> If anyone has had this occur or knows what is going on please notify me.
>
> Thanks,
>
> Darren Labrum
> Infovision, Inc.
> email: [EMAIL PROTECTED]
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Messy Administrator

2001-08-04 Thread Daryl Fullerton

Darren,

Do you mean it attempts to download the second page once you login?

If so its a mapping extension that is not setup on IIS for .cfm
filesme thinks

Cheers

D

Daryl Fullerton,
Managing Partner,
BizNet Solutions,
Allaire Premier Partner (Ireland)
133 - 137 Lisburn Road
Belfast
BT9 7AG
N.Ireland

Direct +44 (0) 28 9022 7888
Tel  +44 (0) 028 9022 3224
Fax +44 (0) 028 9022 3223


[EMAIL PROTECTED]
Http://www.BizNet-Solutions.com

[EMAIL PROTECTED] (Chairman)
Http://www.cfug.ie The Irish Cold Fusion User Group


-Original Message-
From: Darren Labrum [mailto:[EMAIL PROTECTED]]
Sent: 04 August 2001 20:21
To: CF-Talk
Subject: Messy Administrator


Hey there,

I am having problems with the ColdFusion administration screen.  When I
log
in it looks like the attached file.  What is this all about?  Has anyone
had
this happen to them?  I have reinstalled CF server and it still does it?
I
don't know what to do.

If anyone has had this occur or knows what is going on please notify me.

Thanks,

Darren Labrum
Infovision, Inc.
email: [EMAIL PROTECTED]
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Messy Administrator

2001-08-04 Thread Darren Labrum

They stripped the attachment out...  any way, the cf administrator is messed
up in which the login page shows up in all the frames that are in the
cfadministrator when you log in.  After a few seconds it forwards me back
out to the log in screen.

Has this happened to anyone?

Thanks,

Darren

-Original Message-
From: Darren Labrum [mailto:[EMAIL PROTECTED]]
Sent: Saturday, August 04, 2001 1:21 PM
To: CF-Talk
Subject: Messy Administrator


Hey there,

I am having problems with the ColdFusion administration screen.  When I log
in it looks like the attached file.  What is this all about?  Has anyone had
this happen to them?  I have reinstalled CF server and it still does it?  I
don't know what to do.

If anyone has had this occur or knows what is going on please notify me.

Thanks,

Darren Labrum
Infovision, Inc.
email: [EMAIL PROTECTED]
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Messy Administrator

2001-08-04 Thread Darren Labrum

Hey there,

I am having problems with the ColdFusion administration screen.  When I log
in it looks like the attached file.  What is this all about?  Has anyone had
this happen to them?  I have reinstalled CF server and it still does it?  I
don't know what to do.

If anyone has had this occur or knows what is going on please notify me.

Thanks,

Darren Labrum
Infovision, Inc.
email: [EMAIL PROTECTED]


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Force download twice on one page?

2001-08-04 Thread Dave Watts

> Is there a method to start a download twice on one page?
> 
> We have a process that generates two files, which need to be 
> pushed to the client's browser for download. But I'm having 
> troubles getting both files to go automagically.
> 
> I know CFContent disables any processing after the tag. So I 
> thought I could get around this by putting it into a custom tag 
> and calling it twice. This only downloads the one file. Including 
> the file/tag would produce the same results.
> 
> Suggestions??
> 
> In the meantime, I'm going to try my luck with CFHTTP to a 
> page with the cfcontent tag. Here's hoping.

I don't think you'll be able to do what you want within a single script.
When a browser sends an HTTP request, the server will only be able to send
one HTTP response to that request. When you use CFCONTENT to serve a file,
that file is the body of the response. Using CFHTTP won't get you around
that basic limitation within the HTTP protocol.

If you want to work around this, you can probably do it by using multiple
frames or a data pipe. One frame could use JavaScript to send multiple
requests to the server, although you might find it difficult to get things
to run exactly the way you'd like.

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

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: cfscript - pros/cons

2001-08-04 Thread Zac Belado

At 03:53 AM 8/5/2001 +1000, you wrote:
>Damn, maybe when CF6.0 comes out then!

Well then we'll just write that sort of code in Java :-)


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: cfscript - pros/cons

2001-08-04 Thread Andrew Scott

Damn, maybe when CF6.0 comes out then!


> -Original Message-
> From: Zac Belado [mailto:[EMAIL PROTECTED]]
> Sent: Sunday, 5 August 2001 3:47 AM
> To: CF-Talk
> Subject: RE: cfscript - pros/cons
>
> At 03:00 AM 8/5/2001 +1000, you wrote:
> >There are many areas where cfscript is not optimised, but having said
> >that I can't vouch for CF5.0.
>
> Just did a quick test under CF 5. Iterated a switch statement 10,000
times
> and iterated a similar CFSwitch statement the same number of times.
(Loop
> was done using CFLoop in order to eliminate loop structures as a
timing issue)
>
> switch (cfscript)  1753
>
> cfsswitch 811
>
> So its still not optimised.
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: cfscript - pros/cons

2001-08-04 Thread Zac Belado

At 03:00 AM 8/5/2001 +1000, you wrote:
>There are many areas where cfscript is not optimised, but having said
>that I can't vouch for CF5.0.

Just did a quick test under CF 5. Iterated a switch statement 10,000 times 
and iterated a similar CFSwitch statement the same number of times. (Loop 
was done using CFLoop in order to eliminate loop structures as a timing issue)

switch (cfscript)  1753

cfsswitch 811

So its still not optimised.


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Help with a custom tag

2001-08-04 Thread Andrew Scott

Yes it is, but you would have to write the code to do this

For example Search for the First # then the second # and between this do
an evaluate on the variable found between them.


> -Original Message-
> From: Evan Lavidor [mailto:[EMAIL PROTECTED]]
> Sent: Sunday, 5 August 2001 3:04 AM
> To: CF-Talk
> Subject: RE: Help with a  custom tag
>
> > 1) Between your custom tags do the following...
> > this is #variables.mytest#
>
>
> Right, the original question was whether there was any way to avoid
having
> to do this.
>
> Basically, I want the functionality that  has in
being able
> to parse variables without  tags.  Is this even
> possible?
>
> Thanks,
>
> Evan
>
>
> > > -Original Message-
> > > From: Evan Lavidor [mailto:[EMAIL PROTECTED]]
> > > Sent: Saturday, 4 August 2001 6:15 AM
> > > To: CF-Talk
> > > Subject: RE: Help with a  custom tag
> > >
> > > I don't quite get it.
> > >
> > > Let's say I have this as the custom tag:
> > >
> > >   
> > >   #ThisTag.GeneratedContent#
> > >   
> > >   
> > >
> > >
> > > And my call to it is this:
> > >
> > >   
> > >
> > >   
> > >   this is #variables.mytest#
> > >   
> > >
> > >
> > > This will give me:
> > >
> > >   this is this is #variables.mytest#
> > >
> > >   in bold and italic font.
> > >
> > >
> > > I want it to give me:
> > >
> > >   this is a test
> > >
> > >   in bold and italic font.
> > >
> > >
> > > Can I get that without having to nest it in a  or
something?
> > I'm
> > > thinking along the lines of , where it will automatically
> > Evaluate
> > > variables inside it.  Is that sort of functionality possible?
> > >
> > > Thanks,
> > >
> > > Evan
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > > > -Original Message-
> > > > From: Ben Forta [mailto:[EMAIL PROTECTED]]
> > > > Sent: Friday, August 03, 2001 3:35 PM
> > > > To: CF-Talk
> > > > Subject: RE: Help with a  custom tag
> > > >
> > > >
> > > > You don't have to. Once ThisTag.ExecutionMode is "END" all
> > > > expressions (and
> > > > tags) in the body will have been processed. You'll have access
to
> > > > the output
> > > > via ThisTag.GeneratedContent.
> > > >
> > > > --- Ben
> > > >
> > > >
> > > > -Original Message-
> > > > From: Evan Lavidor [mailto:[EMAIL PROTECTED]]
> > > > Sent: Friday, August 03, 2001 2:58 PM
> > > > To: CF-Talk
> > > > Subject: Help with a  custom tag
> > > >
> > > >
> > > > I'm working with my first ColdFusion custom tag that's a tag
> > > > pair.  I've got
> > > > it working mostly the way I'd like, but I've come up against
> > > > something that
> > > > I don't think I'm going to be able to do, but thought I'd ask
> > anyway.
> > > >
> > > > Usage is going to be:
> > > >
> > > > 
> > > > I'll have some text here which the tag will do something with.
> > > > 
> > > >
> > > >
> > > > But what might be there is the following:
> > > >
> > > > 
> > > > I'll have #variables.text# here which the tag will do something
> > with.
> > > > 
> > > >
> > > >
> > > > How can I get the tag to Evaulate the CF variables in between
it.
> > Can I?
> > > > Seems like I'd first have to prefix it with the caller scope
> > > > (which doesn't
> > > > seem very doable even with RegEx) and then throw an Evaluate
> > statement
> > > > around it.
> > > >
> > > > Any ideas?
> > > >
> > > > Thanks,
> > > >
> > > > Evan
> > > >
> > >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Help with a custom tag

2001-08-04 Thread Evan Lavidor

> 1) Between your custom tags do the following...
>   this is #variables.mytest#


Right, the original question was whether there was any way to avoid having
to do this.

Basically, I want the functionality that  has in being able
to parse variables without  tags.  Is this even
possible?

Thanks,

Evan


> > -Original Message-
> > From: Evan Lavidor [mailto:[EMAIL PROTECTED]]
> > Sent: Saturday, 4 August 2001 6:15 AM
> > To: CF-Talk
> > Subject: RE: Help with a  custom tag
> >
> > I don't quite get it.
> >
> > Let's say I have this as the custom tag:
> >
> > 
> > #ThisTag.GeneratedContent#
> > 
> > 
> >
> >
> > And my call to it is this:
> >
> > 
> >
> > 
> > this is #variables.mytest#
> > 
> >
> >
> > This will give me:
> >
> > this is this is #variables.mytest#
> >
> > in bold and italic font.
> >
> >
> > I want it to give me:
> >
> > this is a test
> >
> > in bold and italic font.
> >
> >
> > Can I get that without having to nest it in a  or something?
> I'm
> > thinking along the lines of , where it will automatically
> Evaluate
> > variables inside it.  Is that sort of functionality possible?
> >
> > Thanks,
> >
> > Evan
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > > -Original Message-
> > > From: Ben Forta [mailto:[EMAIL PROTECTED]]
> > > Sent: Friday, August 03, 2001 3:35 PM
> > > To: CF-Talk
> > > Subject: RE: Help with a  custom tag
> > >
> > >
> > > You don't have to. Once ThisTag.ExecutionMode is "END" all
> > > expressions (and
> > > tags) in the body will have been processed. You'll have access to
> > > the output
> > > via ThisTag.GeneratedContent.
> > >
> > > --- Ben
> > >
> > >
> > > -Original Message-
> > > From: Evan Lavidor [mailto:[EMAIL PROTECTED]]
> > > Sent: Friday, August 03, 2001 2:58 PM
> > > To: CF-Talk
> > > Subject: Help with a  custom tag
> > >
> > >
> > > I'm working with my first ColdFusion custom tag that's a tag
> > > pair.  I've got
> > > it working mostly the way I'd like, but I've come up against
> > > something that
> > > I don't think I'm going to be able to do, but thought I'd ask
> anyway.
> > >
> > > Usage is going to be:
> > >
> > > 
> > > I'll have some text here which the tag will do something with.
> > > 
> > >
> > >
> > > But what might be there is the following:
> > >
> > > 
> > > I'll have #variables.text# here which the tag will do something
> with.
> > > 
> > >
> > >
> > > How can I get the tag to Evaulate the CF variables in between it.
> Can I?
> > > Seems like I'd first have to prefix it with the caller scope
> > > (which doesn't
> > > seem very doable even with RegEx) and then throw an Evaluate
> statement
> > > around it.
> > >
> > > Any ideas?
> > >
> > > Thanks,
> > >
> > > Evan
> > >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: cfscript - pros/cons

2001-08-04 Thread Andrew Scott

There are many areas where cfscript is not optimised, but having said
that I can't vouch for CF5.0.

There was a lot of talk and I think from memory there are some KB
articles on this, certain loop types are actually slower in cfscript
than cfml. But again this is information based on cf4.5.x!!


> -Original Message-
> From: Zac Belado [mailto:[EMAIL PROTECTED]]
> Sent: Saturday, 4 August 2001 10:13 AM
> To: CF-Talk
> Subject: RE: cfscript - pros/cons
>
> At 04:40 PM 8/3/2001 -0700, you wrote:
> >I find it especially useful for
> >SWITCH/CASE statements since it can do something the CF tags can't:
>
> Correct me if I am wrong but isn't this precisely the one area where
> cfscript isn't optimized?  I thought I read somewhere (the list
perhaps) to
> that effect.
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Help with a custom tag

2001-08-04 Thread Andrew Scott

There are two things wrong here...

1) Between your custom tags do the following...
this is #variables.mytest#


2) There is no need to do this in your custom tag...


The reason behind this is that you treat what is between the custom tag
as you would if the it was not between a custom tag. So the output would
be #variable.mytest#, so treat it the same way as anything else you want
the CF to process...


> -Original Message-
> From: Evan Lavidor [mailto:[EMAIL PROTECTED]]
> Sent: Saturday, 4 August 2001 6:15 AM
> To: CF-Talk
> Subject: RE: Help with a  custom tag
>
> I don't quite get it.
>
> Let's say I have this as the custom tag:
>
>   
>   #ThisTag.GeneratedContent#
>   
>   
>
>
> And my call to it is this:
>
>   
>
>   
>   this is #variables.mytest#
>   
>
>
> This will give me:
>
>   this is this is #variables.mytest#
>
>   in bold and italic font.
>
>
> I want it to give me:
>
>   this is a test
>
>   in bold and italic font.
>
>
> Can I get that without having to nest it in a  or something?
I'm
> thinking along the lines of , where it will automatically
Evaluate
> variables inside it.  Is that sort of functionality possible?
>
> Thanks,
>
> Evan
>
>
>
>
>
>
>
>
>
>
> > -Original Message-
> > From: Ben Forta [mailto:[EMAIL PROTECTED]]
> > Sent: Friday, August 03, 2001 3:35 PM
> > To: CF-Talk
> > Subject: RE: Help with a  custom tag
> >
> >
> > You don't have to. Once ThisTag.ExecutionMode is "END" all
> > expressions (and
> > tags) in the body will have been processed. You'll have access to
> > the output
> > via ThisTag.GeneratedContent.
> >
> > --- Ben
> >
> >
> > -Original Message-
> > From: Evan Lavidor [mailto:[EMAIL PROTECTED]]
> > Sent: Friday, August 03, 2001 2:58 PM
> > To: CF-Talk
> > Subject: Help with a  custom tag
> >
> >
> > I'm working with my first ColdFusion custom tag that's a tag
> > pair.  I've got
> > it working mostly the way I'd like, but I've come up against
> > something that
> > I don't think I'm going to be able to do, but thought I'd ask
anyway.
> >
> > Usage is going to be:
> >
> > 
> > I'll have some text here which the tag will do something with.
> > 
> >
> >
> > But what might be there is the following:
> >
> > 
> > I'll have #variables.text# here which the tag will do something
with.
> > 
> >
> >
> > How can I get the tag to Evaulate the CF variables in between it.
Can I?
> > Seems like I'd first have to prefix it with the caller scope
> > (which doesn't
> > seem very doable even with RegEx) and then throw an Evaluate
statement
> > around it.
> >
> > Any ideas?
> >
> > Thanks,
> >
> > Evan
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CF5 How to generate the Crystal Report templates?

2001-08-04 Thread Reed Powell

The updated CFREPORT tag in CF5 looks interesting, since it has been
upgraded to V8 of Crystal Reports.  I never used the old one though, and
have always been unclear as to what software I needed from Crystal/Seagate
to make all of this happen.  What is the minimal software (since their
products are pricey) I need to buy so that my CF5 pages can use CFREPORT to
display reports to the website users?

thanks
-reed

FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: graphing

2001-08-04 Thread Daryl Fullerton

Brook,

Its www.popchart.com or www.corda.com

We use this a lot.

Another good one is Chart FX 1e 2000 www.softwarefx.com 


and cfxgraphix server.

Contact Michael smith on the new URL for CFX Graphics Server

Cheers 

D

Daryl Fullerton,
Managing Partner,
BizNet Solutions,
Allaire Premier Partner (Ireland)
133 - 137 Lisburn Road
Belfast
BT9 7AG
N.Ireland

Direct +44 (0) 28 9022 7888
Tel  +44 (0) 028 9022 3224
Fax +44 (0) 028 9022 3223


[EMAIL PROTECTED]
Http://www.BizNet-Solutions.com

[EMAIL PROTECTED] (Chairman)
Http://www.cfug.ie The Irish Cold Fusion User Group


-Original Message-
From: Brook Davies [mailto:[EMAIL PROTECTED]]
Sent: 03 August 2001 22:38
To: CF-Talk
Subject: RE: graphing


popcharts.com looks good too. They also have an ASP version of their 
service. Err, ummm, thats Application Service Provider not that "other" 
programming language.

I like the idea of remotely hosted components. I belive their asp
version 
was approx 300-600 per month based on the number of graphs requested

Brook

At 05:25 PM 03/08/01 -0400, you wrote:
>We recently evaluated Crystal Reports Enterprise for doing ad-hoc
>reporting, etc.
>
>The price seemed right..  now we are told we need to spend about $50k
>for unlimited end-user licensing - so web users can view the reports!
>
>What are other people using for ad-hoc query and reporting?
>
> > -Original Message-
> > From: Carlson, Kevin [mailto:[EMAIL PROTECTED]]
> > Sent: Friday, August 03, 2001 5:17 PM
> > To: CF-Talk
> > Subject: Re: graphing
> >
> >
> > One non-applet graphing solution is Flash Charts from
>www.webassist.com for
>only $49.99.  Requires Dreamweaver 4 or Ultradev 4.
>
>CF5 has the new  tag, however, the documentation says that you
>need
>to install Generator in order to use the tag. (So much for saving money
>...)
>
>
>The free Component Kit from Macromedia describes using CF with Flash 5.
>This looks like the most complex approach of the ones mentioned.
>
>An easy-to-use applet solution that I have been using for a long time
is
>KavaChart from Visual Engineering (www.ve.com) - no Java programming is
>required.  Works great.
>
>Good luck,
>Kevin
>
>
>-Original Message-
> > From: Brook Davies [mailto:[EMAIL PROTECTED]]
> > Sent: Sunday, April 22, 2001 4:11 PM
> > To: CF-Talk
> > Subject: graphing
> >
> >
> > Does any one know of a good graphing solution for a cf app? I
> > do not want
> > to use the allaire applets. I would prefer not using an
> > applet at all. I
> > looked at Corda Pop charts (www.popcharts.com). They have a
> > great product
> > (generates flash graphs) just a little out of my price range.
> >
> > Any ideas?
> >
> > Brook Davies
> >
>
>FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists