Re:

2000-12-07 Thread Joseph Thompson

CFSCRIPT is very handy in cases where you would otherwise use many CFSETS.
A good example is when you are working with the Query() functions...
QuerySetCell(), QueryAddrow() etc.

Maybe this link will help?

http://cfhub.com/advanced/cfquery/querysetcell.cfm

> I was wondering if anybody knew of any good tutorials/documentation on
using
> CFSCRIPT.


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

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



Re: Clusters Important and On-Topic =)

2000-12-07 Thread paul smith

Please explain URLRewriting in more detail.

best,  paul


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

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



RE: SQL 7 database transfer from one server to another

2000-12-07 Thread paul smith

Please explain this in more detail.

In addition, does it work for dbo?

best,  paul

At 09:34 PM 12/6/00 -0500, you wrote:
> > Actually... as I recall there is a solution to that which I
> > hacked together.
> >
> > As I recall, there's a stored procedure to delete a user in
> > the master database. Just copy that sp across to the restored
> > database, and run it on those users.
> >
> > Worked for me. Neat, huh?


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

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



Re: Creating A Bulletin Board Using CF

2000-12-07 Thread avex


webmonkey did a pretty cool tutorial (code and DB included) for this type of
thing.

http://hotwired.lycos.com/webmonkey/00/48/index0a.html?tw=programming should
get you started

they actually have a few other interesting tut's on other apps.

and there are some available in the tag gallery...do a search for "message
board"

chad

> Is it possible to create a bulletin board type facility using cf where
members are able to submit comment etc which others can respond to with all
correspondence submitted being displayed on the bulletin board for all other
members to read
>
>
> Kind Regards
>
> Claude Raiola (Director)
> AustralianAccommodation.com Pty. Ltd.
> Email: [EMAIL PROTECTED]
> Developers Of:
>   Website: www.AustralianAccommodation.com
>   Website: www.AccommodationNewZealand.com
>
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: E-mail Javascript question

2000-12-07 Thread Marc Schipperheyn

cf_embedfields

-Original Message-
From: Jon Gage [mailto:[EMAIL PROTECTED]]
Sent: woensdag 6 december 2000 22:16
To: CF-Talk
Subject: OT: E-mail Javascript question


I've got a script that I found that I'm using to validate e-mail addresses:

function isEmail(str) {
  // are regular expressions supported?
  var supported = 0;
  if (window.RegExp) {
var tempStr = "a";
var tempReg = new RegExp(tempStr);
if (tempReg.test(tempStr)) supported = 1;
  }
  if (!supported)
return (str.indexOf(".") > 2) && (str.indexOf("@") > 0);
  var r1 = new RegExp("(@.*@)|(\\.\\.)|(@\\.)|(^\\.)");
  var r2 = new
RegExp("^.+\\@(\\[?)[a-zA-Z0-9\\-\\.]+\\.([a-zA-Z]{2,3}|[0-9]{1,3})(\\]?)$")
;
  return (!r1.test(str) && r2.test(str));
}

My question is, where can I put a msgbox into this?
(I don't know much about Javascript)


> -Original Message-
> From: Jeffry Houser [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, December 06, 2000 12:50 PM
> To: CF-Talk
> Subject: Re: What are the recognized CF variable scopes?
>
>
>
>   I can add in my two cents, although it probalby isn't the complete list.
> The 'variables' scope is for local, or instance variables.  They only
> exist during the execution of the page which they are created (I.E.
> with a CFSET, for example).
>
>   There is also the URL scope.  (Is that a type of instance /
> variable scope
> variable?)  It's for variables passed int he URL.
>
>   I would imagine that Query would also be an example of an instance
> variable, since Queries don't exist beyond the page that creates them.
> Anyone have any other thoughts?
>
>
> "Dempsey, Timothy F." wrote:
> >
> > Folks,
> >
> > I have seen a mention on this list in the last couple of days something
> > called the request scope for CF variables. I had never heard of
> it. Until
> > now I had only heard of the Application, Client, Session, Form,
> Query, and
> > Attributes scopes as well as the local variable scope.
> >
> > Now I have a few questions:
> >
> > 1.) What is the Request scope?
> > 2.) Are there other scopes besides that and the ones I listed above?
> > 3.) Where are things like this documented? I don't see it in
> the CF manuals
> > or help files or in Ben Forta's books.
> >
> > Thanks,
> >  -- Tim Dempsey
> >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE:

2000-12-07 Thread DeVoil, Nick

> any good tutorials/documentation on using CFSCRIPT.
> What you can and can't do. 

Ben Forta has an article on CFDJ. Go to
http://www.sys-con.com/coldfusion/index2.cfm and 
search for cfscript.

On syntax questions, it's usually the same as JavaScript.

The main problem is that you can't use tags or write
functions, which really limits its usefulness.

*But* with user defined functions coming up in CF5,
it should be a better option?

Nick


**
Information in this email is confidential and may be privileged. 
It is intended for the addressee only. If you have received it in error,
please notify the sender immediately and delete it from your system. 
You should not otherwise copy it, retransmit it or use or disclose its
contents to anyone. 
Thank you for your co-operation.
**

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

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



RE: CFX_NNTP and WDDX

2000-12-07 Thread JustinMacCarthy



>-Original Message-
>From: Owens, Howard [mailto:[EMAIL PROTECTED]]

>I've never worked with either CFX_NNTP or WDDX so I'm excited at getting an
>opportunity to do both. But before I over commit myself, I

>I need to use CFX_NNTP to access a private newsgroup and download articles


No problem

>that are all marked up in XML.  I then need to use WDDX to manipulate the
>articles into a database (not sure yet, but either SQL Server or Oracle).

I'm not sure what exactly you mean by 'manipulate' but you might look at
something like http://www.siteobjects.com/index.cfm?fuseaction=showproducts
or the msxml com to deal with the XML. Wddx is NOT XML, it IS an
implementation of XML. This seams to cause some confusion with users.

Justin


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

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



RE: List w/" " delims

2000-12-07 Thread Daniel Lancelot

does this help?






#editedlist#

HTH

Dan.

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

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



Re: CF Hangs

2000-12-07 Thread Jim Gurfein

We're putting out 200,000 - 250,000 pages per day

At 07:41 PM 12/6/2000 -0500, you wrote:
>What type of volume are you guys getting?
>
>
>We've used CF for a little prototype development with VERY low traffic and
>it seems fine.  Would this pose a problem for an intranet site with 20 - 50
>users (50 - 100 hits each) per day?
>
>
>At 02:46 PM 12/06/00 -0500, Jim Gurfein you wrote:
>
> >We have the same problem on NT... this is a killer for production sites.
> >Allaire should be shot for the 4.5 release
> >
> >At 11:36 AM 12/6/00 -0600, you wrote:
> > >We are running Cold Fusion on Solaris here. Periodically the server will
> > >hang and not serve back anymore Cold Fusion requests. We are able to send
> > >http requests to port 80 and Apache responds but Cold Fusion seems dead in
> > >the water. After all is said and done the services have to be killed and
> > >restarted.
> > >
> > >Anyone else having similar problems with *nix flavors of CF?
> > >
> > >Any help would be GREATLY appreciated.
> > >
> > >chris.alvarado
> > >cold.fusion - developer
> > >[phone] 512.794.6563
> > >[email] [EMAIL PROTECTED]
> > >[web] http://www.tmanage.com
> > >
> > >
> > >Privileged/Confidential Information may be contained in this message. 
> It is
> > >not for use or disclosure outside TManage without a written proprietary
> > >agreement.  If you are not the addressee indicated in this message, or 
> agent
> > >responsible for delivery, you may not copy or deliver this message to
> > >anyone.  Please notify the sender as soon as possible and immediately
> > >destroy this message and its attachments entirely.
> > >
> > >
> > >
> > >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: O'Reilly Website Pro

2000-12-07 Thread Philip Arnold - ASP

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

You should really join the Website-Talk list (available from the WebsitePro
website), but Shiloh is probably the man to speak to - www.shanje.com

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.
**


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

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



session variables

2000-12-07 Thread Dominic J. Doucet-Lorang

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

Dominic


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

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



Re: session variables

2000-12-07 Thread KW

Do the systems that loose the session variables have their browsers
set to accept  cookies?

Kevin

On Thu, 07 Dec 2000 12:21:00 +0100, you wrote:

>I am getting a strange occurrences with session variables on a project.  On 
>some systems that login to the project it looses the session variables and 
>on others it does not loose any of the session variables.   Anyone have any 
>ideas?
>
>Dominic
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: session variables

2000-12-07 Thread Andy Ewings

Yep this is most likely the case.  They will have session level cookies
disabled in their browsers.  To get around this put the following code in
your Application.cfm:













and then append &#application.addtoken# to every hyperlink, form posting and
cflocation (with addtoken = "no") in your application.  This will ensure
steate is maintained even if the user has session vars turned off as their
cfid and token will be passed in the url o neach page call.

-- 
Andrew Ewings
Project Manager
Thoughtbubble Ltd 
http://www.thoughtbubble.net 
-- 
United Kingdom 
http://www.thoughtbubble.co.uk/ 
Tel: +44 (0) 20 7387 8890 
-- 
New Zealand 
http://www.thoughtbubble.co.nz/ 
Tel: +64 (0) 9 419 4235 
-- 
The information in this email and in any attachments is confidential and
intended solely for the attention and use of the named addressee(s). Any
views or opinions presented are solely those of the author and do not
necessarily represent those of Thoughtbubble. This information may be
subject to legal, professional or other privilege and further distribution
of it is strictly prohibited without our authority. If you are not the
intended recipient, you are not authorised to disclose, copy, distribute, or
retain this message. Please notify us on +44 (0)207 387 8890. 



-Original Message-
From: KW [mailto:[EMAIL PROTECTED]]
Sent: 07 December 2000 11:35
To: CF-Talk
Subject: Re: session variables


Do the systems that loose the session variables have their browsers
set to accept  cookies?

Kevin

On Thu, 07 Dec 2000 12:21:00 +0100, you wrote:

>I am getting a strange occurrences with session variables on a project.  On

>some systems that login to the project it looses the session variables and 
>on others it does not loose any of the session variables.   Anyone have any

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

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



RE: CF Server Administrator not working in Windows ME

2000-12-07 Thread Philip Arnold - ASP

> The Administrator of CF Server will not open in Windows ME but it
> will in NT.
> It displays a download box which  will not let me view the web
> page. I have installed CF 4.5.
> Does anyone know about this?

Is the server on the machine with ME?
If so, ME is a bitch about running PWS

If not, ME is a bitch about using cookies... I'd say one thing - GET RID OF
IT!

ME is the biggest mistake of an OS that M$ have ever released

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.
**


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

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



RE: session variables

2000-12-07 Thread Nick Betts

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

your code


regards,
Nick Betts
PoulterNet
Leeds
UK.

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


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

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

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



RE: session variables

2000-12-07 Thread Dominic J. Doucet-Lorang

Andrew,

Here is an example of the form statement, in it where would you add the 
&#application.addtoken#?

 


At 11:39 AM 12/7/00 +, you wrote:
>Yep this is most likely the case.  They will have session level cookies
>disabled in their browsers.  To get around this put the following code in
>your Application.cfm:
>
>
> 
> 
> 
> 
> 
> "cfid=#client.cfid#&cftoken=#client.cftoken#">
>
> 
> DE("cfid=#client.cfid#&cftoken=#client.cftoken#"), DE(""))>
>
>
>and then append &#application.addtoken# to every hyperlink, form posting and
>cflocation (with addtoken = "no") in your application.  This will ensure
>steate is maintained even if the user has session vars turned off as their
>cfid and token will be passed in the url o neach page call.
>
>--
>Andrew Ewings
>Project Manager
>Thoughtbubble Ltd
>http://www.thoughtbubble.net
>--
>United Kingdom
>http://www.thoughtbubble.co.uk/
>Tel: +44 (0) 20 7387 8890
>--
>New Zealand
>http://www.thoughtbubble.co.nz/
>Tel: +64 (0) 9 419 4235
>--
>The information in this email and in any attachments is confidential and
>intended solely for the attention and use of the named addressee(s). Any
>views or opinions presented are solely those of the author and do not
>necessarily represent those of Thoughtbubble. This information may be
>subject to legal, professional or other privilege and further distribution
>of it is strictly prohibited without our authority. If you are not the
>intended recipient, you are not authorised to disclose, copy, distribute, or
>retain this message. Please notify us on +44 (0)207 387 8890.
>
>
>
>-Original Message-
>From: KW [mailto:[EMAIL PROTECTED]]
>Sent: 07 December 2000 11:35
>To: CF-Talk
>Subject: Re: session variables
>
>
>Do the systems that loose the session variables have their browsers
>set to accept  cookies?
>
>Kevin
>
>On Thu, 07 Dec 2000 12:21:00 +0100, you wrote:
>
> >I am getting a strange occurrences with session variables on a project.  On
>
> >some systems that login to the project it looses the session variables and
> >on others it does not loose any of the session variables.   Anyone have any
>
> >ideas?
> >
> >Dominic
> >
> >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: Having problem with cfgrid

2000-12-07 Thread Pardeep

Hi,

I'm having a problem getting the cfgrid applet to load in some browsers. 
Message in status bar at bottom says "Applet not found" or perhaps it says 
applet class not found.

In either case, the cfgrid displays just fine in some browsers, and not so 
in others. In all cases Java and Javascript are enabled. Any ideas on what 
may be causing this?

Thanks,
Pardeep.



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

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



RE: session variables

2000-12-07 Thread Andy Ewings

like so:



Remeber that for normal forms  and hyperlinks you will need to encase
it in CFOUTPUT so the #application.addtoken is interpreted.  So if the above
was a normal form you would do the following



Also remeber that the application.addtoken has to be the last variable in
the url string.  This is becaus eif it is in the middle and the user has
session cookies turned on then you wil see a double appersand in the url as
the value of application.addtoken will be set to "" (as in the code I sent
you to put in the application.cfm).

Andy

-- 
Andrew Ewings
Project Manager
Thoughtbubble Ltd 
http://www.thoughtbubble.net 
-- 
United Kingdom 
http://www.thoughtbubble.co.uk/ 
Tel: +44 (0) 20 7387 8890 
-- 
New Zealand 
http://www.thoughtbubble.co.nz/ 
Tel: +64 (0) 9 419 4235 
-- 
The information in this email and in any attachments is confidential and
intended solely for the attention and use of the named addressee(s). Any
views or opinions presented are solely those of the author and do not
necessarily represent those of Thoughtbubble. This information may be
subject to legal, professional or other privilege and further distribution
of it is strictly prohibited without our authority. If you are not the
intended recipient, you are not authorised to disclose, copy, distribute, or
retain this message. Please notify us on +44 (0)207 387 8890. 



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


Andrew,

Here is an example of the form statement, in it where would you add the 
&#application.addtoken#?

 


At 11:39 AM 12/7/00 +, you wrote:
>Yep this is most likely the case.  They will have session level cookies
>disabled in their browsers.  To get around this put the following code in
>your Application.cfm:
>
>
> 
> 
> 
> 
> 
> "cfid=#client.cfid#&cftoken=#client.cftoken#">
>
> 
> DE("cfid=#client.cfid#&cftoken=#client.cftoken#"), DE(""))>
>
>
>and then append &#application.addtoken# to every hyperlink, form posting
and
>cflocation (with addtoken = "no") in your application.  This will ensure
>steate is maintained even if the user has session vars turned off as their
>cfid and token will be passed in the url o neach page call.
>
>--
>Andrew Ewings
>Project Manager
>Thoughtbubble Ltd
>http://www.thoughtbubble.net
>--
>United Kingdom
>http://www.thoughtbubble.co.uk/
>Tel: +44 (0) 20 7387 8890
>--
>New Zealand
>http://www.thoughtbubble.co.nz/
>Tel: +64 (0) 9 419 4235
>--
>The information in this email and in any attachments is confidential and
>intended solely for the attention and use of the named addressee(s). Any
>views or opinions presented are solely those of the author and do not
>necessarily represent those of Thoughtbubble. This information may be
>subject to legal, professional or other privilege and further distribution
>of it is strictly prohibited without our authority. If you are not the
>intended recipient, you are not authorised to disclose, copy, distribute,
or
>retain this message. Please notify us on +44 (0)207 387 8890.
>
>
>
>-Original Message-
>From: KW [mailto:[EMAIL PROTECTED]]
>Sent: 07 December 2000 11:35
>To: CF-Talk
>Subject: Re: session variables
>
>
>Do the systems that loose the session variables have their browsers
>set to accept  cookies?
>
>Kevin
>
>On Thu, 07 Dec 2000 12:21:00 +0100, you wrote:
>
> >I am getting a strange occurrences with session variables on a project.
On
>
> >some systems that login to the project it looses the session variables
and
> >on others it does not loose any of the session variables.   Anyone have
any
>
> >ideas?
> >
> >Dominic
> >
> >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: Setting UltraDev as Dreamweaver Integration

2000-12-07 Thread Michael Barnum

But if he only had DW Ultra dev installed or renamed the executable to what CF is 
looking for it should work ,  I would
think

Joshua Miller wrote:

> Yeah, that sets DREAMWEAVER as the application ...not Dreamweaver UltraDev
>
> Joshua Miller
> Web Development
> Eagle Technologies Group, Inc.
> Business Solutions for the Next Generation
> www.eagletgi.com 
> [EMAIL PROTECTED] 
>
> -Original Message-
> From: Greg Wolfinger [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, December 06, 2000 12:53 PM
> To: CF-Talk
> Subject: Re: Setting UltraDev as Dreamweaver Integration
>
> Josh:
>
> If you go into ColdFusion Studio, goto Options > Settings and then go down
> to the Dreaweaver Icon/Setting and click the checkbox that says enable
> dreamweaver integration.
>
> Greg
> - Original Message -
> From: "Joshua Miller" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Thursday, December 07, 2000 11:35 AM
> Subject: Setting UltraDev as Dreamweaver Integration
>
> > How do I set DW UltraDev to act as Dreamweaver in CFStudio ?
> >
> > So when I click on DW icon it opens UltraDev?
> >
> > Joshua Miller
> > Web Development
> > Eagle Technologies Group, Inc.
> > Business Solutions for the Next Generation
> > www.eagletgi.com
> > [EMAIL PROTECTED]
> >
> >
> >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: CF Server Administrator not working in Windows ME

2000-12-07 Thread Michael Barnum

I know that a month ago, I talked to Allaire support about ME, and they said that wont 
be approached until version 5,
anything to do with ME.

Penny Hutten wrote:

> The Administrator of CF Server will not open in Windows ME but it will in NT.
> It displays a download box which  will not let me view the web page. I have 
>installed CF 4.5.
> Does anyone know about this?
>
> Penny Hutten
> Web Development
> [EMAIL PROTECTED]
> (707)887-7598
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: Setting UltraDev as Dreamweaver Integration

2000-12-07 Thread Michael Barnum

Dreamweaver 4 & Fireworks 4 are there for download purchase not for the demo 30 day 
version, I talked to customer support
last week and they said that the 30 day demos would be available around the end of the 
month maybe earlier, and that
Ultradev 4 would be available in late December early January.   I know a guy that saw 
the last beta, and he said they
really improved alot of things and put alot into this release coming.



Michael Kear wrote:

> This is going to become more and more of  an issue.  I went to the launch
> of Ultradev4 in Sydney yesterday, and from what I can see, they've fixed
> moost of the problems I had with it originally.  It's going to be a viable
> way for web builders to build and maintain sites with  groups of people
> working on it.
>
> I'm also interested in how I set studio to look for Ultradev instead of
> Dreamweaver.
>
> For those who aren't up  with Macromedia's developments, Ultradev4 is
> simply Dreamweaver4 with a whole bunch of added functionality to produce
> CFML, ASP or Jrun instead of just HTML.  It gives you wizards for
> reasonable basic SQL if you want, (or you can type in your detailed SQL
> too) and the wizards let you set up connections to the DSN.  Then you can
> design and layout the page with live data to see how  it's going to be.
>
> This is a great step forward for people who aren't so well versed in CFML.
> For me, it's going to allow me to use people without a lot of ColdFusion
> training for lots of the more routine pages.  I'll need to look for design
> and html skills and knowledge of dreamweaver (which are far more readily
> available), instead of those expensive ColdFusion specialists to lift some
> of the workload off my back.  Then I can use the CF Specialists for really
> difficult or advanced applications.
>
> DISCLAIMER: All this is of course taking Macromedia at face value and will
> need to face the test of real life use.  The presenter said that Ultradev4
> would be on the macromedia web site from Friday.  (But he also said that
> Fireworks4 and Dreamweaver4 are there already and theyweren't this
> morning when I looked.)
>
> Cheers,
> Mike Kear
> Windsor, NSW, Australia
> AFP Web Development
>
> On Thu, 7 Dec 2000, Joshua Miller wrote:
>
> > Yeah, that sets DREAMWEAVER as the application ...not Dreamweaver UltraDev
> >
> > Joshua Miller
> > Web Development
> > Eagle Technologies Group, Inc.
> > Business Solutions for the Next Generation
> > www.eagletgi.com 
> > [EMAIL PROTECTED] 
> >
> >
> > -Original Message-
> > From: Greg Wolfinger [mailto:[EMAIL PROTECTED]]
> > Sent: Wednesday, December 06, 2000 12:53 PM
> > To: CF-Talk
> > Subject: Re: Setting UltraDev as Dreamweaver Integration
> >
> >
> > Josh:
> >
> > If you go into ColdFusion Studio, goto Options > Settings and then go down
> > to the Dreaweaver Icon/Setting and click the checkbox that says enable
> > dreamweaver integration.
> >
> > Greg
> > - Original Message -
> > From: "Joshua Miller" <[EMAIL PROTECTED]>
> > To: "CF-Talk" <[EMAIL PROTECTED]>
> > Sent: Thursday, December 07, 2000 11:35 AM
> > Subject: Setting UltraDev as Dreamweaver Integration
> >
> >
> > > How do I set DW UltraDev to act as Dreamweaver in CFStudio ?
> > >
> > > So when I click on DW icon it opens UltraDev?
> > >
> > > Joshua Miller
> > > Web Development
> > > Eagle Technologies Group, Inc.
> > > Business Solutions for the Next Generation
> > > www.eagletgi.com
> > > [EMAIL PROTECTED]
> > >
> > >
> > >
> > >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: Which message-board to get

2000-12-07 Thread Michael She

Check this out:

http://forum.snitz.com/

It's an ASP message board very similar to UBB.  It's one of the better free 
boards.

If you don't like that board, here are more:

http://www.aspcode.net/showcat.asp?id=4


At 11:19 PM 12/07/00 +, W Luke you wrote:

>Hi,
>
>I'm in a rut trying to decide what I need for my site.  I urgently need to
>add some user-interaction in the form of message boards, or a BBS - but it
>needs to be expandable and customisable, not to mention Access-accessible :)
>
>I want to be able to have different parts of the site available for
>"discussion."  For example; they might want to discuss a product, in which
>case, that particular product would later be flagged as "in discussion."  I
>don't know of any software that is really elasticated enough.  I don't like
>the Perl-based one either, as I find them harder to integrate into my code.
>
>Can anyone advise?
>
>Thanks
>
>Will
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: Radio buttons

2000-12-07 Thread Jon Gage

No, it should only pass the *selected* value, not all of them.

> -Original Message-
> From: Phoeun Pha [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, December 06, 2000 2:11 PM
> To: CF-Talk
> Subject: RE: Radio buttons
>
>
> of course both values get passed. what you should do is name them
> differtently
>
>
>
>
> -Original Message-
> From: Jon Gage [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, December 06, 2000 10:05 AM
> To: CF-Talk
> Subject: Radio buttons
>
>
> I'm having a problem with radio buttons in my form.  Sometimes when I post
> the form, BOTH values of like-named radio buttons get passed.  Example:
>
> ORIGINAL FORM
> 
> 
>
> POSTING FORM
> Form.CC will come up as "VALUE1/VALUE2"
>
> Has anyone had this problem before?  It only happens *very* rarely on our
> site, but it looks like it may be crashing the CF server.
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: Radio buttons

2000-12-07 Thread Jon Gage

> Is this happening with a specific browser? I have an idea that Netscape
> handles multiple "CHECKED"s (i.e. coding error) poorly.

It seems to happen periodically with multiple browsers, I haven't narrowed
it down.


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

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



RE: IncrementValue() or #counter# + 1

2000-12-07 Thread Bob Silverberg

I couldn't say which is faster, but you should get rid of those pound signs
(#) within your cfsets.  They should look like:


or


Bob


-Original Message-
From: Eric Fickes [mailto:[EMAIL PROTECTED]]
Sent: December 6, 2000 8:58 PM
To: CF-Talk
Subject: IncrementValue() or #counter# + 1


Hello,

Got a counter question for you.  Which do you all think is better/faster?



or



I use this code as a counter in my loops and I just learned about
IncrementValue() a few weeks ago and thought about starting to use it but
didn't know if there was any benefit in using it over VAR + 1.

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

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



RE: Clusters Important and On-Topic =)

2000-12-07 Thread mherbene

I use cookies and code like this:




which sets cookies that

1) "expire" when the browser is closed
2) get sent to all the machines in my domain (which includes all the
machines in my cluster)
3) are only sent when the user is accessing the current application (which
is probably not necessary).

It seems to work...

-Original Message-
From: William J Wheatley [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 06, 2000 3:17 PM
To: CF-Talk
Subject: RE: Clusters Important and On-Topic =)


=) but thats the thing i dont wnat them to stay on the same server the whole
time, nobody has answered me this question.
Does the setdomaincookie work? it does not appear to work and i can not get
anyone from allaire to get me anything but USE STICKY sessions, and i have
to keep saying i dont want the user to reside on the same box his whole
session i want him to use the box with the lowest load so is
setdomaincookies broke? is there a certain way to do it because simply doing
setdomaincookie=YES is not working it does not retain my client variable

-Original Message-
From: Yanik Lupien [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 06, 2000 12:39 PM
To: CF-Talk
Subject: Re: Clusters Important and On-Topic =)


Do you have try to use URLRewriting over a Proxy ?

http://www.domain.com/serv1/path/file.cfm Translated to :
http://server01/path/file.cfm
http://www.domain.com/serv2/path/file.cfm Translated to :
http://server02/path/file.cfm

Using this way the client never see http://server01/ it always see
http://www.domain.com/servX/

And if you use this way, you do not need to use Round Robin (DNS) and AOL
user are working to.

In this way, if the user go on server 1 they always stay on server 1.

And if the server 1 need to go down only Rewrite you URL to the second
server ...

Voila

Yanik Lupien



- Original Message -
From: "William J Wheatley" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, December 06, 2000 9:47 AM
Subject: Clusters Important and On-Topic =)


> I have a 3 node Linux Btcats Cluster running. I have turned off SESSION
> aware because i use client variables for everything. I also have a
database
> setup to store my client varibles. Now in allaires help it says setting
> SETDOMAINCOOKIE=YES will cause CFMAGIC cookie to migrate all the data from
> the individual clusters and then set a domain level cookie. i set that in
> all 3 of the APP.cfm and its still not working properly i even deleted the
> client storage db & regenerated it with no luck.
>
> See when i'm on the same box it remembers the client.username but once it
> fires off to a seperate box it does not remember the client.id and thus
its
> a problem.
>
> Thanks
>
>
> Bill Wheatley
> Director of Development
> Allaire Certified ColdFusion Developer
> AEPS INC
> Allaire ColdFusion Consulting Partner
> www.aeps.com
> www.aeps2000.com
> 954-472-6684 X303
> ICQ: 417645
>
>
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: Automatic repair and compact

2000-12-07 Thread monika kon

Thanks Adrian Cesana  and Pan for all of your mails
..Its has been really helpful to me.
I have a question ,Pan you have written in one of your
mails that its better to compact and repair the
database manually rather then using CF programm.Can
you please tell me why yoyu said so.
Shally
--- pan <[EMAIL PROTECTED]> wrote:
> 
> > Thanks for the code you sent> But as I am new to
> all
> > this I would like to know that do I have to
> 
> > the "objectMDB" and "tempmdb".I am failing to
> > understand your programm please help/.
> 
> 
> O.K.
> 
> I'll try to be more helpful.
> 
> objectMDB is the access .mdb file you wish to
> compact and repair. The value of the variable is the
> full path to the .mdb file, e.g.
> c:\db\thisAccessFile.mdb
> 
> tempMDB is likewise a full path for the
> DAO code to use when creating the
> compacted and repaired copy of objectMDB,
> e.g.
> c:\db\tempFile.mdb
> tempFile.mdb doesn't exist until the DAO call
> and will be renamed later by your code.
> 
> The method the DAO call follows is to
> create a new copy of the file you wish to
> compact and repair. It is up to you to rename
> the tempMDB to your original filename after
> deleting the objectMDB.
> 
> The call to the CF function
>  CFUSION_DBCONNECTIONS_FLUSH()>
> is necessary as the cffile delete and rename actions
> will
> fail if the the .mdb is locked (i.e in use).
> 
> In order to correctly assign the value of daoClass,
> look in
> c:\Program Files\Common Files\Microsoft Shared\DAO\
> 
> You should see either dao360.dll or dao350.dll
> depending on
> if you have Access2k or Access97 respectively.
> 
> Advice:
> If you are going to schedule this, pick a time when
> it is less likely the db is going to be in use as
> CFUSION_DBCONNECTIONS_FLUSH() call
> might interrupt a user session. I prefer to use a
> tool
> I built to manually compress and repair any .mdb
> files
> I happen to be using.
> 
> If you have any more questions, please feel free to
> ask.
> 
> Pan
> 
> 
> 
> > >
> > > From: "monika kon" <[EMAIL PROTECTED]>
> > > Subject: Automatic repair and compact
> > >
> > >
> > > > Hi everyone,
> > > > Is it possible to compact and repair Access
> > > databbase
> > > > every day automatically through Coldfusion
> > > code.Please
> > > > help!!
> > > > Shally..
> > >
> > > Yes.
> > > Acc97 DAO 3.5
> > > Acc2k DAO 3.6
> > >
> > > DAO needs to be on the server - there are ADO
> > > calls, but DAO seems better to me.
> > >
> > > The below script is the safest way I use.
> > > You should wrap the below in a cftry/cfcatch
> trap.
> > >
> > > core script: modfy to your needs
> > >   
> > > or,
> > >   
> > >
> > >
> > >  > > Class="#daoClass#">
> > >  > >
> DBEngine.CompactDatabase("#objectMDB#","#tempMDB#")>
> > >  > > CFUSION_DBCONNECTIONS_FLUSH()>
> > >  > >  file="#objectMDB#">
> > >  > >   source="#tempMDB#"
> > >   destination="#objectMDB#">
> > >
> > > Pan
> > >
> > >
> > >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: cftransaction .. single threaded?

2000-12-07 Thread Todd Ashworth

| Yes.  But actually  is used if you have more than one SQL
| statement (insert or update) that have to be either all committed or all
| rollback.(It's all or nothing deal)

Well, I have several select/inserts that span several tables that all need
to be run at once.  All or nothing .. like you said.  There are about 12
queries total.  I just wanted to make sure that no other opperations could
be performed on those tables while the transaction was in progress since I
am using a 'manual' incramenting primary key.

| So my question is: should we lock constants or no?

Well, like you said, it depends.  I'm not sure anyone really knows the exact
trade-off in processing time .. it's kind-of a "use your best judgement"
type of thing.  For example:  If you set up a single DSN and set it to an
application variable, you you *might* have to lock it for every single query
you run.  This is probably more cumbersome than just setting that same
variable with the Request scope on every single page.  But, like you said,
your DSN is not very likely to change throughout the life of your app., so
you could probably get away with not locking it.  Personally, I like to lock
ALL refernces to Session, Application, and Server variables (better safe
than sorry), so I would be more inclined to use the Request scope .. even
with 50-100 variables.  You can set them all in a  block and save
yourself some time, also.

Todd Ashworth

- Original Message -
From: "Marius Milosav" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, December 06, 2000 9:19 PM
Subject: Re: cftransaction .. single threaded?


| Yes.  But actually  is used if you have more than one SQL
| statement (insert or update) that have to be either all committed or all
| rollback.(It's all or nothing deal)
| For a single update or insert statement the table is looked for the time
of
| the transaction by the dbEngine so you don't need the 
around
| it and  won't have any impact on the database.
|
| While we are talking about locking, I have a question too.
| I understand the need to have exclusive locks when (session(application or
| server) variables are being set. I understand that we need read only locks
| around the same variables when we read them.
|
| I understand that CF doesn't have the notion of constants, but I thought
| that by setting
|  and by never changing it during the
| execution of the application in fact
| (for all practical purposes) we declared a constant.
| It seams that the general agreement among people on the list is that even
in
| those cases we should use readonly locks (or set them up with request
| scope). Which probably is OK but if you have 100 (or more of those) to set
| them up for each page it looks to me like a waste of time (even if very
| small, which probably is less than having 50 readonly locks on each page).
|
| Ben Forta in the August edition of  CFDJ said that if you are ABSOLUTELY
| sure that a variable (application,session or server) doesn't change you
can
| leave out the readonly lock.
|
| So my question is: should we lock constants or no?
|
| Marius Milosav
| www.scorpiosoft.com
| It's not about technology, it's about people.
| Virtual Help Desk Demo (VHD)
| www.scorpiosoft.com/vhd/login.cfm
|
|
| - Original Message -
| From: "Todd Ashworth" <[EMAIL PROTECTED]>
| To: "CF-Talk" <[EMAIL PROTECTED]>
| Sent: Wednesday, December 06, 2000 2:34 PM
| Subject: cftransaction .. single threaded?
|
|
| > Is a  block single threaded, or do I have to provide my
own
| > database side locking for it?  The docs aren't very clear on this at
all.
| >
| > Todd Ashworth
| >
| >
| >
| >
|
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: variables passed en masse - what is the tag?

2000-12-07 Thread Daniel Lancelot

There is a tag, i've used it - its available on allaire tag gallery - I
believe its written by Ben Forta - cant remember whatits called... very
simple though - loops through #form.formfields# creates an  for each one...

:> -Original Message-
:> From: Walker, Matthew [mailto:[EMAIL PROTECTED]]
:> Sent: 07 December 2000 03:49
:> To: CF-Talk
:> Subject: RE: variables passed en masse - what is the tag?
:> 
:> 
:> > >I remember several replies to a previous question where a 
:> > tag was referenced
:> > >that gathered all the variables on a form and passed them to 
:> > subsequent
:> > >pages
:> > >what was that tag - I hope I'm not dreaming but it would 
:> > help to replace
:> > >hidden fields.
:> 
:> How about something like (needs CFServer 4.5)
:> 
:> 
:>   value="#Evaluate("Form.#ThisField#")#">
:> 
:>  
:> 
:>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: IncrementValue() or #counter# + 1

2000-12-07 Thread Philip Arnold - ASP

> Got a counter question for you.  Which do you all think is better/faster?
> 
> or
> 
>
> I use this code as a counter in my loops and I just learned about
> IncrementValue() a few weeks ago and thought about starting to use it but
> didn't know if there was any benefit in using it over VAR + 1.

IncrementValue() is now redundant, so it could be removed from future
versions

Without the # and " (on IncrementValue) will be faster anyways, and if
you're doing loads of CFSets then you should use CFScript (which will be
faster again)

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.
**


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

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



RE: CF - to - UNIX

2000-12-07 Thread Aaron Johnson

Eric,

Couple people mentioned perl.  For parsing & general data massage, look @
Regular Expressions, Oreilly has a great book on the topic.

Aaron Johnson, MCSE, MCP+I
MINDSEYE, Inc.
617.350.0339
949.350.8884
66172567
[EMAIL PROTECTED]

___
"Never forget that only dead fish swim with
the stream." -- Malcolm Muggeridge
___


> -Original Message-
> From: Eric Fickes [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, December 06, 2000 2:43 PM
> To: CF-Talk
> Subject: CF - to - UNIX
>
>
> Hello all,
>
> I had a coworker come to me needing ideas on doing some data clean up in
> K-Shell scripts on an AIX box and I was wondering.  Is there anyway, or is
> there any reference type file, that compares CF to other
> languages?  I'm not
> strong in Unix like I am in CF and I was able to tell him how I'd
> parse out
> the .csv he's working with, but I don't know how to translate my CF idea
> into UNIX.  Is there anything like this available on the net?
>
> E
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



passing cfquery results to another page

2000-12-07 Thread sam sidhom

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

Thanks,

Jennifer Johnson

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

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



RE: CF Hangs

2000-12-07 Thread Aaron Johnson

Hey Jim/Chris,

In any case, even if Allaire should be shot for numerous bugs in 4.5, there
are a ton of things you can do to find out WHY CF stops responding. Allaire
has some great knowledge base articles, you can check the logs CF server
creates and so on.. I would suggest going through your server logs with a
fine tooth comb, looking for clues there, what databases are you
using?(Access?), are you locking shared memory variables? are you locking
cfhttp calls?

Aaron Johnson, MCSE, MCP+I
MINDSEYE, Inc.
617.350.0339
949.350.8884
66172567
[EMAIL PROTECTED]

___
"Never forget that only dead fish swim with
the stream." -- Malcolm Muggeridge
___


> -Original Message-
> From: Jim Gurfein [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, December 06, 2000 2:47 PM
> To: CF-Talk
> Subject: Re: CF Hangs
>
>
> We have the same problem on NT... this is a killer for production sites.
> Allaire should be shot for the 4.5 release
>
> At 11:36 AM 12/6/00 -0600, you wrote:
> >We are running Cold Fusion on Solaris here. Periodically the server will
> >hang and not serve back anymore Cold Fusion requests. We are able to send
> >http requests to port 80 and Apache responds but Cold Fusion
> seems dead in
> >the water. After all is said and done the services have to be killed and
> >restarted.
> >
> >Anyone else having similar problems with *nix flavors of CF?
> >
> >Any help would be GREATLY appreciated.
> >
> >chris.alvarado
> >cold.fusion - developer
> >[phone] 512.794.6563
> >[email] [EMAIL PROTECTED]
> >[web] http://www.tmanage.com
> >
> >
> >Privileged/Confidential Information may be contained in this
> message. It is
> >not for use or disclosure outside TManage without a written proprietary
> >agreement.  If you are not the addressee indicated in this
> message, or agent
> >responsible for delivery, you may not copy or deliver this message to
> >anyone.  Please notify the sender as soon as possible and immediately
> >destroy this message and its attachments entirely.
> >
> >
> >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: Setting UltraDev as Dreamweaver Integration

2000-12-07 Thread Greg Wolfinger

It runs my dw ultra dev when i click it.
- Original Message -
From: "Joshua Miller" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, December 07, 2000 3:39 PM
Subject: RE: Setting UltraDev as Dreamweaver Integration


> Yeah, that sets DREAMWEAVER as the application ...not Dreamweaver UltraDev
>
> Joshua Miller
> Web Development
> Eagle Technologies Group, Inc.
> Business Solutions for the Next Generation
> www.eagletgi.com 
> [EMAIL PROTECTED] 
>
>
> -Original Message-
> From: Greg Wolfinger [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, December 06, 2000 12:53 PM
> To: CF-Talk
> Subject: Re: Setting UltraDev as Dreamweaver Integration
>
>
> Josh:
>
> If you go into ColdFusion Studio, goto Options > Settings and then go down
> to the Dreaweaver Icon/Setting and click the checkbox that says enable
> dreamweaver integration.
>
> Greg
> - Original Message -
> From: "Joshua Miller" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Thursday, December 07, 2000 11:35 AM
> Subject: Setting UltraDev as Dreamweaver Integration
>
>
> > How do I set DW UltraDev to act as Dreamweaver in CFStudio ?
> >
> > So when I click on DW icon it opens UltraDev?
> >
> > Joshua Miller
> > Web Development
> > Eagle Technologies Group, Inc.
> > Business Solutions for the Next Generation
> > www.eagletgi.com
> > [EMAIL PROTECTED]
> >
> >
> >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



passing cfquery results to another page

2000-12-07 Thread sam sidhom

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

Thanks,

Jennifer Johnson

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

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



RE: Setting UltraDev as Dreamweaver Integration

2000-12-07 Thread Joshua Miller

I figured out how to make UltraDev open from Studio ... proabably not the
BEST method, but it works nonetheless.

Open Regedit (START>RUN>REGEDIT)
Expand HKEY_LOCAL_MACHINE
Expand Software
Expand Macromedia
Change the Dreamweaver UltraDev folder name to just Dreamweaver
If Dreamweaver is already there (if you have both) rename the original
Dreamweaver to something like DW_Real or whatever you want so you know the
difference.
Then expand the new Dreamweaver Folder and expand the version number (1)
then
open the Installation folder and edit the install path to point to the
UltraDev location
Open the Registration folder and edit the location to point to the UltraDev
location and the exe name as dreamweaver.exe
Then open your Program Files and rename ultradev.exe to dreamweaver.exe

If you have Dreamweaver 1-4 on your machine, rename each so the exe name is
not dreamweaver.exe and then change their repective registry entries in the
same manner.

The key is that Studio looks for the Dreamweaver Folder then Dreamweaver.exe
in the registry ... so that path must point to UltraDev. I suppose by doing
this you could effectively make ANY application launch from Studio ...
perhaps that would be a nice feature for 5.0 ... launch ImageReady or
UltraDev or Photoshop or even Jrun studio or whatever. Perhaps even a
toolbar like the CFML Basic and other toolbars that launch applications
would be nice.

When you click the DW icon in Studio, for some reason, it asked me to
re-enter the serial number, etc. then afterwards it runs just fine.

Any registry gurus out there who know if this would cause any damage to the
system, please let me know!

BTW ... I'm running Win2k if that matters or if the registry is different on
NT or 9x

Thanks.

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


-Original Message-
From: Michael Barnum [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 07, 2000 7:20 AM
To: CF-Talk
Subject: Re: Setting UltraDev as Dreamweaver Integration


Dreamweaver 4 & Fireworks 4 are there for download purchase not for the demo
30 day version, I talked to customer support
last week and they said that the 30 day demos would be available around the
end of the month maybe earlier, and that
Ultradev 4 would be available in late December early January.   I know a guy
that saw the last beta, and he said they
really improved alot of things and put alot into this release coming.



Michael Kear wrote:

> This is going to become more and more of  an issue.  I went to the launch
> of Ultradev4 in Sydney yesterday, and from what I can see, they've fixed
> moost of the problems I had with it originally.  It's going to be a viable
> way for web builders to build and maintain sites with  groups of people
> working on it.
>
> I'm also interested in how I set studio to look for Ultradev instead of
> Dreamweaver.
>
> For those who aren't up  with Macromedia's developments, Ultradev4 is
> simply Dreamweaver4 with a whole bunch of added functionality to produce
> CFML, ASP or Jrun instead of just HTML.  It gives you wizards for
> reasonable basic SQL if you want, (or you can type in your detailed SQL
> too) and the wizards let you set up connections to the DSN.  Then you can
> design and layout the page with live data to see how  it's going to be.
>
> This is a great step forward for people who aren't so well versed in CFML.
> For me, it's going to allow me to use people without a lot of ColdFusion
> training for lots of the more routine pages.  I'll need to look for design
> and html skills and knowledge of dreamweaver (which are far more readily
> available), instead of those expensive ColdFusion specialists to lift some
> of the workload off my back.  Then I can use the CF Specialists for really
> difficult or advanced applications.
>
> DISCLAIMER: All this is of course taking Macromedia at face value and will
> need to face the test of real life use.  The presenter said that Ultradev4
> would be on the macromedia web site from Friday.  (But he also said that
> Fireworks4 and Dreamweaver4 are there already and theyweren't this
> morning when I looked.)
>
> Cheers,
> Mike Kear
> Windsor, NSW, Australia
> AFP Web Development
>
> On Thu, 7 Dec 2000, Joshua Miller wrote:
>
> > Yeah, that sets DREAMWEAVER as the application ...not Dreamweaver
UltraDev
> >
> > Joshua Miller
> > Web Development
> > Eagle Technologies Group, Inc.
> > Business Solutions for the Next Generation
> > www.eagletgi.com 
> > [EMAIL PROTECTED] 
> >
> >
> > -Original Message-
> > From: Greg Wolfinger [mailto:[EMAIL PROTECTED]]
> > Sent: Wednesday, December 06, 2000 12:53 PM
> > To: CF-Talk
> > Subject: Re: Setting UltraDev as Dreamweaver Integration
> >
> >
> > Josh:
> >
> > If you go into ColdFusion Studio, goto Options > Settings and then go
down
> >

Re: Setting UltraDev as Dreamweaver Integration

2000-12-07 Thread Greg Wolfinger

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


> Dreamweaver 4 & Fireworks 4 are there for download purchase not for the
demo 30 day version, I talked to customer support
> last week and they said that the 30 day demos would be available around
the end of the month maybe earlier, and that
> Ultradev 4 would be available in late December early January.   I know a
guy that saw the last beta, and he said they
> really improved alot of things and put alot into this release coming.
>
>
>
> Michael Kear wrote:
>
> > This is going to become more and more of  an issue.  I went to the
launch
> > of Ultradev4 in Sydney yesterday, and from what I can see, they've fixed
> > moost of the problems I had with it originally.  It's going to be a
viable
> > way for web builders to build and maintain sites with  groups of people
> > working on it.
> >
> > I'm also interested in how I set studio to look for Ultradev instead of
> > Dreamweaver.
> >
> > For those who aren't up  with Macromedia's developments, Ultradev4 is
> > simply Dreamweaver4 with a whole bunch of added functionality to produce
> > CFML, ASP or Jrun instead of just HTML.  It gives you wizards for
> > reasonable basic SQL if you want, (or you can type in your detailed SQL
> > too) and the wizards let you set up connections to the DSN.  Then you
can
> > design and layout the page with live data to see how  it's going to be.
> >
> > This is a great step forward for people who aren't so well versed in
CFML.
> > For me, it's going to allow me to use people without a lot of ColdFusion
> > training for lots of the more routine pages.  I'll need to look for
design
> > and html skills and knowledge of dreamweaver (which are far more readily
> > available), instead of those expensive ColdFusion specialists to lift
some
> > of the workload off my back.  Then I can use the CF Specialists for
really
> > difficult or advanced applications.
> >
> > DISCLAIMER: All this is of course taking Macromedia at face value and
will
> > need to face the test of real life use.  The presenter said that
Ultradev4
> > would be on the macromedia web site from Friday.  (But he also said that
> > Fireworks4 and Dreamweaver4 are there already and theyweren't this
> > morning when I looked.)
> >
> > Cheers,
> > Mike Kear
> > Windsor, NSW, Australia
> > AFP Web Development
> >
> > On Thu, 7 Dec 2000, Joshua Miller wrote:
> >
> > > Yeah, that sets DREAMWEAVER as the application ...not Dreamweaver
UltraDev
> > >
> > > Joshua Miller
> > > Web Development
> > > Eagle Technologies Group, Inc.
> > > Business Solutions for the Next Generation
> > > www.eagletgi.com 
> > > [EMAIL PROTECTED] 
> > >
> > >
> > > -Original Message-
> > > From: Greg Wolfinger [mailto:[EMAIL PROTECTED]]
> > > Sent: Wednesday, December 06, 2000 12:53 PM
> > > To: CF-Talk
> > > Subject: Re: Setting UltraDev as Dreamweaver Integration
> > >
> > >
> > > Josh:
> > >
> > > If you go into ColdFusion Studio, goto Options > Settings and then go
down
> > > to the Dreaweaver Icon/Setting and click the checkbox that says enable
> > > dreamweaver integration.
> > >
> > > Greg
> > > - Original Message -
> > > From: "Joshua Miller" <[EMAIL PROTECTED]>
> > > To: "CF-Talk" <[EMAIL PROTECTED]>
> > > Sent: Thursday, December 07, 2000 11:35 AM
> > > Subject: Setting UltraDev as Dreamweaver Integration
> > >
> > >
> > > > How do I set DW UltraDev to act as Dreamweaver in CFStudio ?
> > > >
> > > > So when I click on DW icon it opens UltraDev?
> > > >
> > > > Joshua Miller
> > > > Web Development
> > > > Eagle Technologies Group, Inc.
> > > > Business Solutions for the Next Generation
> > > > www.eagletgi.com
> > > > [EMAIL PROTECTED]
> > > >
> > > >
> > > >
> > > >
> > >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



session structure

2000-12-07 Thread Jeff Beer

Does anyone have the code handy for looping through the active sessions on
the server?  I remember seeing it here before but can't find it in my 18k
message archives :-)

This would be to loop over a specific key (session.x) and grab the values.

Thanks in advance,

Jeff


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

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



Re: variables passed en masse - what is the tag?

2000-12-07 Thread Jamie Keane

It's CF_EMBEDFIELDS.  I based a form-to-struct tag on its logic.  Cool
stuff!

(I know in 4.5 form is a struct, but we're dealing with 4.0 here)

Do a search for "Forta" in the DevEx, and you'll find some nice derivatives
of his works.

--
Jamie Keane
Programmer
SolutionMasters, Inc.
9111 Monroe Rd., Suite 100
Charlotte, NC  28270
www.solutionmasters.com
704.563.5559 x 228  Voice
704.849.9291  Fax
-Original Message-
From: Daniel Lancelot <[EMAIL PROTECTED]>
To: CF-Talk <[EMAIL PROTECTED]>
Date: Thursday, December 07, 2000 9:13 AM
Subject: RE: variables passed en masse - what is the tag?


>There is a tag, i've used it - its available on allaire tag gallery - I
>believe its written by Ben Forta - cant remember whatits called... very
>simple though - loops through #form.formfields# creates an hiidden...> for each one...
>
>:> -Original Message-
>:> From: Walker, Matthew [mailto:[EMAIL PROTECTED]]
>:> Sent: 07 December 2000 03:49
>:> To: CF-Talk
>:> Subject: RE: variables passed en masse - what is the tag?
>:>
>:>
>:> > >I remember several replies to a previous question where a
>:> > tag was referenced
>:> > >that gathered all the variables on a form and passed them to
>:> > subsequent
>:> > >pages
>:> > >what was that tag - I hope I'm not dreaming but it would
>:> > help to replace
>:> > >hidden fields.
>:>
>:> How about something like (needs CFServer 4.5)
>:>
>:> 
>:> :> value="#Evaluate("Form.#ThisField#")#">
>:> 
>:>
>:>
>:>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: CF Hangs

2000-12-07 Thread C Frederic Valone

We have always had trouble with cf on solaris doing this. the issue is much better 
with cf 4.51 sp1 though we still have problems.
I have been told alot of the old code needs to be optimized (some pages seem to be 
running over 1000 miliseconds under noload
conditions.
 We are running a single solaris quad processor machine with a gig of ram, 
apache/stronghold and oracle.
 Most of the issues in the longrunning pages seem to come from cf's inability to 
handle a pl/sql cursor in stored procs. The new
version of cf and cf sqltype make it possible for us to go back and re-engineer these 
bottlenecks... I will trey to keep you
updated on the performance improvements we get if youd like.

On a related note we are getting a really strange error that kept cf and our site down 
for hours the other evening. We took down
the databases for backup. Cold fusion errored out  and then seemed to come back up 
(all the services said they were functioning)
However we recieved the usual error you get when the server is down or restarting. In 
the mean time (6 hours) nothing was written
to any of the cf logs.
Has anyone encountered this before?

[EMAIL PROTECTED] wrote:

> We are running Cold Fusion on Solaris here. Periodically the server will
> hang and not serve back anymore Cold Fusion requests. We are able to send
> http requests to port 80 and Apache responds but Cold Fusion seems dead in
> the water. After all is said and done the services have to be killed and
> restarted.
>
> Anyone else having similar problems with *nix flavors of CF?
>
> Any help would be GREATLY appreciated.
>
> chris.alvarado
> cold.fusion - developer
> [phone] 512.794.6563
> [email] [EMAIL PROTECTED]
> [web] http://www.tmanage.com
>
> Privileged/Confidential Information may be contained in this message. It is
> not for use or disclosure outside TManage without a written proprietary
> agreement.  If you are not the addressee indicated in this message, or agent
> responsible for delivery, you may not copy or deliver this message to
> anyone.  Please notify the sender as soon as possible and immediately
> destroy this message and its attachments entirely.
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: Big companies using CF

2000-12-07 Thread C Frederic Valone

I did alot of work on the EPA intranet with CF

"Janssen Dolores Y (Contractor)" wrote:

> yes, there are various DoD organzations using CF
>
> 
> --
> Dee Janssen
> Web Developer
> LESCO/LOGSA
> 256-955-9579
> [EMAIL PROTECTED]
>
> -Original Message-
> From: Tim Bahlke [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, December 05, 2000 3:43 PM
> To: CF-Talk
> Subject: Re: Big companies using CF
>
> I had Advanced CF training with Dave acouple months ago and there were some
> DoD people in there.
>
> Tim
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: passing cfquery results to another page

2000-12-07 Thread David E. Crawford

Save the query in the session scope, ie:



..



Then the query is available from page to page.

DC

- Original Message -
From: "sam sidhom" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, December 07, 2000 9:41 AM
Subject: passing cfquery results to another page


> Can anyone tell me if there is anyway CF will pass the results of a
CFQuery to another page without having to requery the database?
>
> Thanks,
>
> Jennifer Johnson
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: passing cfquery results to another page

2000-12-07 Thread Top-Link Tech (John Ceci)

Depending on the size of the recordset you could use WDDX to create a packet
and pass that along in a hidden field...

HTH,
John

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


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

Thanks,

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

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



RE: passing cfquery results to another page

2000-12-07 Thread Daniel Lancelot

yes - it is possible to have a query in a custom tag, and make it available
in the calling page...
 SQL... 



I've only used this to pass back to the calling page - no idea if it works
for other scopes  (e.g request, session etc) but I would tend to shy away
from storing queries in the session scope due to the potential for clogging
server memory...)

HTH - if this doesnt quite cover what u need - let me know...

:> -Original Message-
:> From: sam sidhom [mailto:[EMAIL PROTECTED]]
:> Sent: 07 December 2000 14:42
:> To: CF-Talk
:> Subject: passing cfquery results to another page
:> 
:> 
:> Can anyone tell me if there is anyway CF will pass the 
:> results of a CFQuery to another page without having to 
:> requery the database?
:> 
:> Thanks,
:> 
:> Jennifer Johnson
:> 
:>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: CF Hangs

2000-12-07 Thread Jim Gurfein

I was not aware that CFHTTP calls needed to be locked. Please explain.

At 09:46 AM 12/7/00 -0500, you wrote:
>Hey Jim/Chris,
>
>In any case, even if Allaire should be shot for numerous bugs in 4.5, there
>are a ton of things you can do to find out WHY CF stops responding. Allaire
>has some great knowledge base articles, you can check the logs CF server
>creates and so on.. I would suggest going through your server logs with a
>fine tooth comb, looking for clues there, what databases are you
>using?(Access?), are you locking shared memory variables? are you locking
>cfhttp calls?
>
>Aaron Johnson, MCSE, MCP+I
>MINDSEYE, Inc.
>617.350.0339
>949.350.8884
>66172567
>[EMAIL PROTECTED]
>
>___
>"Never forget that only dead fish swim with
>the stream." -- Malcolm Muggeridge
>___
>
>
> > -Original Message-
> > From: Jim Gurfein [mailto:[EMAIL PROTECTED]]
> > Sent: Wednesday, December 06, 2000 2:47 PM
> > To: CF-Talk
> > Subject: Re: CF Hangs
> >
> >
> > We have the same problem on NT... this is a killer for production sites.
> > Allaire should be shot for the 4.5 release
> >
> > At 11:36 AM 12/6/00 -0600, you wrote:
> > >We are running Cold Fusion on Solaris here. Periodically the server will
> > >hang and not serve back anymore Cold Fusion requests. We are able to send
> > >http requests to port 80 and Apache responds but Cold Fusion
> > seems dead in
> > >the water. After all is said and done the services have to be killed and
> > >restarted.
> > >
> > >Anyone else having similar problems with *nix flavors of CF?
> > >
> > >Any help would be GREATLY appreciated.
> > >
> > >chris.alvarado
> > >cold.fusion - developer
> > >[phone] 512.794.6563
> > >[email] [EMAIL PROTECTED]
> > >[web] http://www.tmanage.com
> > >
> > >
> > >Privileged/Confidential Information may be contained in this
> > message. It is
> > >not for use or disclosure outside TManage without a written proprietary
> > >agreement.  If you are not the addressee indicated in this
> > message, or agent
> > >responsible for delivery, you may not copy or deliver this message to
> > >anyone.  Please notify the sender as soon as possible and immediately
> > >destroy this message and its attachments entirely.
> > >
> > >
> > >
> > >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



OT: Syndicated Content

2000-12-07 Thread Nick McClure

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

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



--
Nick McClure[EMAIL PROTECTED]
Technical Director  859.245.9656
squareFish Mediawww.squareFish.com


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

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



Re: passing cfquery results to another page

2000-12-07 Thread paul smith

Cache the query.

best,  paul


At 08:41 AM 12/7/00 -0600, you wrote:
>Can anyone tell me if there is anyway CF will pass the results of a 
>CFQuery to another page without having to requery the database?


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

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



RE: passing cfquery results to another page

2000-12-07 Thread Mark Johnson

You could use wddx to pass the results to the next page via a URL or Form
string.  Alternately you could load the query into application, or the
session scope.

Mark

-Original Message-
From: sam sidhom [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 07, 2000 2:41 PM
To: CF-Talk
Subject: passing cfquery results to another page


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

Thanks,

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

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



RE: passing cfquery results to another page

2000-12-07 Thread Bob Silverberg

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

Bob


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


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

Thanks,

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

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



Re: IncrementValue() or #counter# + 1

2000-12-07 Thread Jeffry Houser



Philip Arnold - ASP wrote:
> 
> > Got a counter question for you.  Which do you all think is better/faster?
> > 
> > or
> > 
> >
> > I use this code as a counter in my loops and I just learned about
> > IncrementValue() a few weeks ago and thought about starting to use it but
> > didn't know if there was any benefit in using it over VAR + 1.
> 
> IncrementValue() is now redundant, so it could be removed from future
> versions

  Redundant, how so?   What was it replaced by?  Are you referring to 
the CFSET above?  Could you not do operations like the cfset in earlier 
versions of CF?  


> Without the # and " (on IncrementValue) will be faster anyways, and if
> you're doing loads of CFSets then you should use CFScript (which will be
> faster again)

  The number I was told, was 3.  If you're doing at least 3 CFSETs, then
CFSCRIPT is faster.  I do not have efficiency numbers, though.  (anyone?)


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

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

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



Re: [RE: CF - to - UNIX]

2000-12-07 Thread Alex

or a one line sed script

"Garza, Jeff" <[EMAIL PROTECTED]> wrote:
Think Perl!  www.perl.org and www.cpan.org

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

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



-Original Message-
From: Eric Fickes [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 06, 2000 12:43 PM
To: CF-Talk
Subject: CF - to - UNIX


Hello all,

I had a coworker come to me needing ideas on doing some data clean up in
K-Shell scripts on an AIX box and I was wondering.  Is there anyway, or is
there any reference type file, that compares CF to other languages?  I'm not
strong in Unix like I am in CF and I was able to tell him how I'd parse out
the .csv he's working with, but I don't know how to translate my CF idea
into UNIX.  Is there anything like this available on the net?

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

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



Re: Big companies using CF

2000-12-07 Thread John Allred

Not a big company, but a big site:

http://www.mscounties.com


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

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



Re: passing cfquery results to another page

2000-12-07 Thread Jamie Keane

Convert the query to a WDDX packet, and store the packet as a hidden form
field.  I've done it before, and it works pretty well.

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


>Can anyone tell me if there is anyway CF will pass the results of a CFQuery
to another page without having to requery the database?
>
>Thanks,
>
>Jennifer Johnson
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: List w/" " delims

2000-12-07 Thread Dain Anderson

Eric,

You can also use Regular Expression to do this, although my example could
likely use some work:



Dain Anderson
Caretaker, CF Comet
http://www.cfcomet.com/


- Original Message -
From: "Eric Fickes" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, December 06, 2000 11:30 PM
Subject: List w/" " delims


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

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



CF-Blogger?

2000-12-07 Thread Dave Fobare


Has anyone done a Blogger-type app in CF?

Thanks,

Dave Fobare


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

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



RE: passing cfquery results to another page

2000-12-07 Thread Philip Arnold - ASP

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

Several ways you can do this:
Put the query into the Application scope,
Cache the query (you run the query as normal, but it takes no time),
Put the query into the Client scope (if it's only for the one person),

Any of these will allow you to return the data quickly without touching the
database server again.

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.
**


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

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



RE: CF Hangs

2000-12-07 Thread Philip Arnold - ASP

> In any case, even if Allaire should be shot for numerous bugs in
> 4.5, there
> are a ton of things you can do to find out WHY CF stops
> responding. Allaire
> has some great knowledge base articles, you can check the logs CF server
> creates and so on.. I would suggest going through your server logs with a
> fine tooth comb, looking for clues there, what databases are you
> using?(Access?), are you locking shared memory variables? are you locking
> cfhttp calls?

Not only that, but if CF runs at 100% utilisation on the server, then check
all of your code for endless loops - we've had some code which only gets
called on very rare occasions, but kills the server whenever it does
(requires a CF stop/start)

Check on all of the KB info and your code before you blame CF for killing
your server, we're running 80+ sites on 4 servers and with a total of around
a million (or so) page hits per day, and we don't have to touch the servers
for weeks on end - these are completely database generated sites, so CF is
hit on all calls.

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.
**


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

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



RE: CF Hangs

2000-12-07 Thread CAlvarado

We are using Oracle and Cold Fusion on Sparc based Solaris servers.

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.



-Original Message-
From: Aaron Johnson [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 07, 2000 8:47 AM
To: CF-Talk
Subject: RE: CF Hangs


Hey Jim/Chris,

In any case, even if Allaire should be shot for numerous bugs in 4.5, there
are a ton of things you can do to find out WHY CF stops responding. Allaire
has some great knowledge base articles, you can check the logs CF server
creates and so on.. I would suggest going through your server logs with a
fine tooth comb, looking for clues there, what databases are you
using?(Access?), are you locking shared memory variables? are you locking
cfhttp calls?

Aaron Johnson, MCSE, MCP+I
MINDSEYE, Inc.
617.350.0339
949.350.8884
66172567
[EMAIL PROTECTED]

___
"Never forget that only dead fish swim with
the stream." -- Malcolm Muggeridge
___


> -Original Message-
> From: Jim Gurfein [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, December 06, 2000 2:47 PM
> To: CF-Talk
> Subject: Re: CF Hangs
>
>
> We have the same problem on NT... this is a killer for production sites.
> Allaire should be shot for the 4.5 release
>
> At 11:36 AM 12/6/00 -0600, you wrote:
> >We are running Cold Fusion on Solaris here. Periodically the server will
> >hang and not serve back anymore Cold Fusion requests. We are able to send
> >http requests to port 80 and Apache responds but Cold Fusion
> seems dead in
> >the water. After all is said and done the services have to be killed and
> >restarted.
> >
> >Anyone else having similar problems with *nix flavors of CF?
> >
> >Any help would be GREATLY appreciated.
> >
> >chris.alvarado
> >cold.fusion - developer
> >[phone] 512.794.6563
> >[email] [EMAIL PROTECTED]
> >[web] http://www.tmanage.com
> >
> >
> >Privileged/Confidential Information may be contained in this
> message. It is
> >not for use or disclosure outside TManage without a written proprietary
> >agreement.  If you are not the addressee indicated in this
> message, or agent
> >responsible for delivery, you may not copy or deliver this message to
> >anyone.  Please notify the sender as soon as possible and immediately
> >destroy this message and its attachments entirely.
> >
> >
> >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: variables passed en masse - what is the tag? ANSWER

2000-12-07 Thread Richard Kern


Thanks to all who replied, the tag I was looking for is CF_embedfields

Richard

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

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



Re: Server Administrator isn't working

2000-12-07 Thread Larry C. Lyons

Penny,

>From the sounds of it, you don't have a web server installed. According
to what has been said on a couple of other news groups, ME does not
work, or doesn't work very well with M$ IIS or PWS. You'd probably be
better off installing Win98SE (if you must go for a "consumer" type
operating system), or better yet Win2000 or NT.

regards,

larry

-- 
Larry C. Lyons
ColdFusion/Web Developer
EBStor.com
8870 Rixlew Lane, Suite 201
Manassas, Virginia 20109-3795
tel: (703) 393-7930 x253
fax: (703) 393-2659
http://www.ebstor.com
http://www.pacel.com
email: [EMAIL PROTECTED]

Chaos, panic, and disorder - my work here is done.
--

Penny Hutten wrote:
> 
> Hello Marius,
> I saw you email on cf-talk and have not been able to post yet on it.  My
> post keep comeing back.  I just loaded CF sever on my Windows ME system at
> home and the Administrator of CF Server will not open in Windows ME but it
> will in NT.
> It displays a download box which  will not let me view the web page. I have
> installed CF 4.5.
> Would you  know  anything about this?
> 
> Penny Hutten
> Web Development
> (707)887-7598

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

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



Re: variables passed en masse - what is the tag?

2000-12-07 Thread Larry C. Lyons

Try Ben Forta's tag CF_EmbedFields. You can find it at
http://devex.allaire.com/developer/gallery/SearchResults.cfm?keywords=cf_embedfields&search=search

hth,
larry

-- 
Larry C. Lyons
ColdFusion/Web Developer
EBStor.com
8870 Rixlew Lane, Suite 201
Manassas, Virginia 20109-3795
tel: (703) 393-7930 x253
fax: (703) 393-2659
http://www.ebstor.com
http://www.pacel.com
email: [EMAIL PROTECTED]

Chaos, panic, and disorder - my work here is done.
--

Daniel Lancelot wrote:
> 
> There is a tag, i've used it - its available on allaire tag gallery - I
> believe its written by Ben Forta - cant remember whatits called... very
> simple though - loops through #form.formfields# creates an  hiidden...> for each one...

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

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



RE: passing cfquery results to another page

2000-12-07 Thread Hayes, David

You would have to copy the query to a scope that persists across pages.

Another option: you could cache the query so that the requery on the next
page will pull the cached version.  This could certainly cause some
problems; it will not be appropriate in many situations.

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


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

Thanks,

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

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



RE: LDAP and single logon how to read logon info from the desktop machine KEEP ALIVE

2000-12-07 Thread Marc Schipperheyn



-Original Message-
From: Marc Schipperheyn [mailto:[EMAIL PROTECTED]]
Sent: dinsdag 5 december 2000 17:59
To: CF-Talk
Subject: LDAP and single logon how to read logon info from the desktop
machine


Hi all,

I'm interested in the way you can use the (LDAP)-logon information a user
provided when he logged on to his Windows machine in order for him to
automatically get the proper access rights when he logs on to the Intranet.
I don't want them to have to log on twice.

Is this possible? Do I need special software for this? How could you do
this?

Kind regards,

Marc Schipperheyn



_  .e>  ___
mr M.Schipperheyn MBA
Technical Director___[EMAIL PROTECTED]
_  .e>  ___
Friesestraatweg 215a
P.o. Box 2010__ tel: +31 (0)50 5757888
9704 CA Groningen__fax: +31 (0)50 5757889
The Netherlands http://www.thefactore.com
_  .e>  ___

 Premium Partner for Allaire. Multimedia development
_   with Macromedia Director, Authorware & Flash.

< The future is technological, but it will not be a world of gray steel.
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: CF Hangs

2000-12-07 Thread CAlvarado

Ive never seen the problem that you mentioned before. I am solely a
developer here. I have nothing to do with the Administration or server
maintenance. I have just been trying to do some damage control. I really
like Cold Fusion, and when I see the UNIX admin running around  saying "its
that damn Cold Fusion, any product that was developed for a MS platform will
always kill a Solaris box", it just puts me on the defensive. Until my
current position all of my CF work has been on an NT platform, where we did
experience the Location Code 25,26 problems under high load. We do not have
that problem on Solaris, but the Cold Fusion server does seem to stop
responging sporatically, and under little to no load. 

I REALLY hope Allaire is addressing this. I am hearing of these kinds of
problems from MANY developers. Sooner or later if the problem is not fixed
people will begin to find other products and I really would hate to see that
happen, as I really think that Cold Fusion has come a long way (I have
worked with it since version 1.5). All kinds of new stuff in the works for
version 5 has me excited. Ill keep my fingers crossed.


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.



-Original Message-
From: C Frederic Valone [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 07, 2000 8:55 AM
To: CF-Talk
Subject: Re: CF Hangs


We have always had trouble with cf on solaris doing this. the issue is much
better with cf 4.51 sp1 though we still have problems.
I have been told alot of the old code needs to be optimized (some pages seem
to be running over 1000 miliseconds under noload
conditions.
 We are running a single solaris quad processor machine with a gig of ram,
apache/stronghold and oracle.
 Most of the issues in the longrunning pages seem to come from cf's
inability to handle a pl/sql cursor in stored procs. The new
version of cf and cf sqltype make it possible for us to go back and
re-engineer these bottlenecks... I will trey to keep you
updated on the performance improvements we get if youd like.

On a related note we are getting a really strange error that kept cf and our
site down for hours the other evening. We took down
the databases for backup. Cold fusion errored out  and then seemed to come
back up (all the services said they were functioning)
However we recieved the usual error you get when the server is down or
restarting. In the mean time (6 hours) nothing was written
to any of the cf logs.
Has anyone encountered this before?

[EMAIL PROTECTED] wrote:

> We are running Cold Fusion on Solaris here. Periodically the server will
> hang and not serve back anymore Cold Fusion requests. We are able to send
> http requests to port 80 and Apache responds but Cold Fusion seems dead in
> the water. After all is said and done the services have to be killed and
> restarted.
>
> Anyone else having similar problems with *nix flavors of CF?
>
> Any help would be GREATLY appreciated.
>
> chris.alvarado
> cold.fusion - developer
> [phone] 512.794.6563
> [email] [EMAIL PROTECTED]
> [web] http://www.tmanage.com
>
> Privileged/Confidential Information may be contained in this message. It
is
> not for use or disclosure outside TManage without a written proprietary
> agreement.  If you are not the addressee indicated in this message, or
agent
> responsible for delivery, you may not copy or deliver this message to
> anyone.  Please notify the sender as soon as possible and immediately
> destroy this message and its attachments entirely.
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: LDAP and secure access how to protect the CF machine - LDAP machine connection KEEP ALIVE

2000-12-07 Thread Marc Schipperheyn

Hi all,

A customer came to me with the following question:
I have LDAP (Novell) set up and my users can authenticate fine. The
connection between my webserver and the client is protected through SSL.
However, how do I connect my connection from the cf server to the LDAP
server. LDAP3 is supposed to support encryption of the communication.

Any experience/ideas on this?

Kind regards,

Marc Schipperheyn

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

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



Regular Expressions - Programming Interface?

2000-12-07 Thread Don Smith

Per a discussion at last night's CFUG, 

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

thanks for any info,

Don

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

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



Server Configuration Question

2000-12-07 Thread Lord, Heath

7 Dec 00   1100
I need to get an answer on this ASAP today.

We have a server with this configuration.
Win2000 Server SP 1
IIS 5  As found on CD
CF 4.5.1 SP2
Oracle 8.1.6 Client
2 CFX Tags  PGP and Graphics (GifGid)


Basically, I need to know what the Stability is expected to be with this
configuration.
How this set-up will effect the Speed.
Any Known Memory Leaks that may be of concern to me with this configuration.
Any issues with the use of Auto Locking Session Variables, instead of
explicitly locking them.  i.e. I don't want to do a whole lot of recoding at
this time.

Heath


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

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



RE: Big companies using CF

2000-12-07 Thread Benjamin Fitts

I've been following this thread on big companies using CF for awhile. Sure a
lot of big companies use CF.  But please think of the type of application
they use CF for.

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

Other questions you might want to ask instead of "Which Big Companies use
CF" are:

What do they use CF for?

How much traffic does their site receive? daily, weekly, monthly.

How much of that traffic is hitting dynamic CF generated pages?

This is a much better benchmark for you to judge Cold Fusion on.

A typical example is BMWUSA web site that was mentioned here earlier. I can
guarantee you this site isn't getting hit nearly as much as VW's new film
web site. Just because BMW is a big name doesn't mean it gets a lot of hits
to it's web site.  What is a lot of hits? 500,000 unique users a month? 5
million unique users a month? 5 million unique users a day?

Benjamin Fitts
Web Developer
uclick
[EMAIL PROTECTED]


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

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



Re: [RE: passing cfquery results to another page]

2000-12-07 Thread Alex

you can cache the query results

[EMAIL PROTECTED] (Top-Link Tech (John Ceci)) wrote:
Depending on the size of the recordset you could use WDDX to create a packet
and pass that along in a hidden field...

HTH,
John

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


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

Thanks,

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

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



Mail Distribution Loop Error

2000-12-07 Thread Lee Surma

Our email server is bouncing some CF Emails with the following error:

07-Dec-2000 10:09:37 -0600 Distribution loop detected


It almost looks as if CF is sending the same message twice. Any ideas?

_
Lee Surma
Public Radio International
[EMAIL PROTECTED]
612-330-9223
_


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

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



Server Setup

2000-12-07 Thread Lord, Heath

7 Dec 00   1100
I need to get an answer on this ASAP today.
I'd like to find out if someone has a different view of this than me.
I think this will be more stable than my current 4.0.1 Install.

We have a server with this configuration.
Win2000 Server SP 1
IIS 5  As found on CD
CF 4.5.1 SP2
Oracle 8.1.6 Client
2 CFX Tags  PGP and Graphics (GifGid)


Basically, I need to know what the Stability is expected to be with this
configuration.
How this set-up will effect the Speed.
Any Known Memory Leaks that may be of concern to me with this configuration.
Any issues with the use of Auto Locking Session Variables, instead of
explicitly locking them.  i.e. I don't want to do a whole lot of recoding at
this time.

Thanks.
Heath

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

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



Get all page variables

2000-12-07 Thread Eric Fickes

Hello,

Is there a way to get a list of all active variables on a page?  I seem to
remember when playing around with debugging, that it showed all of the
current variables, but I can't remember if I ever figured out how to show
them all.

E

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

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



FW: passing cfquery results to another page

2000-12-07 Thread Bob Silverberg


I had another thought.  Just cache the query, and, as long as it doesn't get
bumped out of memory, it will be available on every page without having to
requery the database (you'd still issue the CFQUERY, but it wouldn't need to
hit the database).  This will only work if you have a limited number of
query combinations, otherwise the chances of it getting bumped out of memory
are greater.

Bob

-Original Message-
From: Bob Silverberg [mailto:[EMAIL PROTECTED]]
Sent: December 7, 2000 10:19 AM
To: [EMAIL PROTECTED]
Subject: RE: passing cfquery results to another page


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

Bob


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


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

Thanks,

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

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



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

2000-12-07 Thread ryo watanabe

In order to get the client platform in JavaScript, navigator.platform can be used.  Is 
there a way to assign those variables to CF variable?


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

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



???

2000-12-07 Thread ibtoad

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

Rich

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

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



"CF_SQL_DATE"

2000-12-07 Thread sebastian palmigiani


I am using CF 4.0 with MS SQL Server 7.0

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

I get the following error code while using a stored procedure

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

I have isolated the problem to the following code


 


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

Sebastian



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

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



Re: OT: Syndicated Content

2000-12-07 Thread Eric Dawson

some good experience.

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

Eric


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

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

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



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

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



RE: CF Hangs

2000-12-07 Thread Aaron Johnson

Jim,

Check out the mail archive, I've already done a search for you for "cfhttp"
& "lock"

http://www.mail-archive.com/cgi-bin/htsearch?method=and&format=short&config=
cf-talk_houseoffusion_com&restrict=&exclude=&words=cfhttp+lock

You'll see a bunch of posts regarding locking cfhttp

Aaron Johnson, MCSE, MCP+I
MINDSEYE, Inc.
617.350.0339
949.350.8884
66172567
[EMAIL PROTECTED]

___
"Never forget that only dead fish swim with
the stream." -- Malcolm Muggeridge
___


> -Original Message-
> From: Jim Gurfein [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, December 07, 2000 10:08 AM
> To: CF-Talk
> Subject: RE: CF Hangs
>
>
> I was not aware that CFHTTP calls needed to be locked. Please explain.
>
> At 09:46 AM 12/7/00 -0500, you wrote:
> >Hey Jim/Chris,
> >
> >In any case, even if Allaire should be shot for numerous bugs in
> 4.5, there
> >are a ton of things you can do to find out WHY CF stops
> responding. Allaire
> >has some great knowledge base articles, you can check the logs CF server
> >creates and so on.. I would suggest going through your server logs with a
> >fine tooth comb, looking for clues there, what databases are you
> >using?(Access?), are you locking shared memory variables? are you locking
> >cfhttp calls?
> >
> >Aaron Johnson, MCSE, MCP+I
> >MINDSEYE, Inc.
> >617.350.0339
> >949.350.8884
> >66172567
> >[EMAIL PROTECTED]
> >
> >___
> >"Never forget that only dead fish swim with
> >the stream." -- Malcolm Muggeridge
> >___
> >
> >
> > > -Original Message-
> > > From: Jim Gurfein [mailto:[EMAIL PROTECTED]]
> > > Sent: Wednesday, December 06, 2000 2:47 PM
> > > To: CF-Talk
> > > Subject: Re: CF Hangs
> > >
> > >
> > > We have the same problem on NT... this is a killer for
> production sites.
> > > Allaire should be shot for the 4.5 release
> > >
> > > At 11:36 AM 12/6/00 -0600, you wrote:
> > > >We are running Cold Fusion on Solaris here. Periodically the
> server will
> > > >hang and not serve back anymore Cold Fusion requests. We are
> able to send
> > > >http requests to port 80 and Apache responds but Cold Fusion
> > > seems dead in
> > > >the water. After all is said and done the services have to
> be killed and
> > > >restarted.
> > > >
> > > >Anyone else having similar problems with *nix flavors of CF?
> > > >
> > > >Any help would be GREATLY appreciated.
> > > >
> > > >chris.alvarado
> > > >cold.fusion - developer
> > > >[phone] 512.794.6563
> > > >[email] [EMAIL PROTECTED]
> > > >[web] http://www.tmanage.com
> > > >
> > > >
> > > >Privileged/Confidential Information may be contained in this
> > > message. It is
> > > >not for use or disclosure outside TManage without a written
> proprietary
> > > >agreement.  If you are not the addressee indicated in this
> > > message, or agent
> > > >responsible for delivery, you may not copy or deliver this message to
> > > >anyone.  Please notify the sender as soon as possible and immediately
> > > >destroy this message and its attachments entirely.
> > > >
> > > >
> > > >
> > > >
> > >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



cfscript rules of thumb

2000-12-07 Thread Eric Fickes

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

E

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

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



Re: Automatic repair and compact

2000-12-07 Thread pan




> Thanks Adrian Cesana  and Pan for all of your mails
> ..Its has been really helpful to me.
> I have a question ,Pan you have written in one of your
> mails that its better to compact and repair the
> database manually rather then using CF programm.Can
> you please tell me why yoyu said so.
> Shally

The technique I use involves CFUSION_DBCONNECTIONS_FLUSH() 
call which breaks connections for all datasources. It's necessary
as the DAO call will fail  (and throw an error) if the target .mdb
is locked (i.e. in use and a .ldb file exists for that .mdb).
 It is more convenient from the operator's point of view to
schedule an automatic compress&repair, but I don't like the
idea that a user might get an error when the .mdb is unavailable.
The chances of this occuring is a calculation of the time
involved (milliseconds) vs. traffic making use of the templates
that might be calling the .mdb through a query. In most
case it will be a small probability of a conflict. 

If you want to automate regardless of the above, you might try
what I have done is some applications, i.e. set a value in an
unrelated datasource that any template that references
a .mdb that is the target of a scheduled compress&repair
must check before continuing. The value determines if
the template continues or is switched to a refreshing 
"please wait" page until the compression is done.

You would implement that something like this:

db  system
table dbSTATUS
field  targetMDB (name of dsn)
field  door (default value = "open")


production.cfm 


select door
from dbSTATUS
where targetMDB="foo";



  do normal processing
 
  


-
wait.cfm


select door
from dbSTATUS
where targetMDB="foo";



  
 
  please wait db is being updated


--
compress_repair.cfm 


UPDATE dbSTATUS
set door="closed"
where targetMDB="foo";


[compression code]


UPDATE dbSTATUS
set door="open"
where targetMDB="foo";



This synchronoization technique is also useful when accessing
and integrating a dataflow from a remote source or program 
that is writing realtime values to a dsn. 

Pan



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

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



RE: Syndicated Content

2000-12-07 Thread Jeff Beer

http://www.moviefone.com/pageboy5.cgi?TP:AffilPitchTMPL has an affiliate
progam.  There aren't any real details on the site, but I just signed up and
should have the "welcome kit" in a few days.

> -Original Message-
> From: Nick McClure [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, December 07, 2000 10:13 AM
> To: CF-Talk
> Subject: OT: Syndicated Content
>
>
> I am trying to find some Syndicated Content that also
> includes movie times.
>
> Anybody out there had any experiences(good or bad) with any
> companies on
> trying to import content via CF.
>
>
>
> --
> Nick McClure[EMAIL PROTECTED]
> Technical Director  859.245.9656
> squareFish Mediawww.squareFish.com
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: IncrementValue() or #counter# + 1

2000-12-07 Thread Philip Arnold - ASP

> > IncrementValue() is now redundant, so it could be removed from future
> > versions
> Redundant, how so?   What was it replaced by?  Are you referring to
> the CFSET above?  Could you not do operations like the cfset in earlier
> versions of CF?

IncrementValue() was the only way to add a 1 to a number in CF2, it's been
redundant since CF3 where you can just use CFSet var=var+1 or use CFScript
in CF4

> > Without the # and " (on IncrementValue) will be faster anyways, and if
> > you're doing loads of CFSets then you should use CFScript (which will be
> > faster again)
> The number I was told, was 3.  If you're doing at least 3 CFSETs, then
> CFSCRIPT is faster.  I do not have efficiency numbers, though.  (anyone?)

It's incremental, the more CFSets you have, the faster CFScript will work

The only exception to this is a loop - CFScript runs loops incredibly slowly

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.
**


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

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



RE: CF Hangs

2000-12-07 Thread Aaron Johnson

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Dig deeper.  usr/local/coldfusion/log/

look in your application.log, your executive.log, server.log,
webserver.log, sqlnet.log...

Anything interesting?  Have you applied ALL Cold Fusion related
patches? Oracle patches?  Solaris patches?  Are you locking?

AJ

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, December 07, 2000 10:44 AM
> To: CF-Talk
> Subject: RE: CF Hangs
> 
> 
> We are using Oracle and Cold Fusion on Sparc based Solaris servers.
> 
> 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.
> 
> 
> 
> -Original Message-
> From: Aaron Johnson [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, December 07, 2000 8:47 AM
> To: CF-Talk
> Subject: RE: CF Hangs
> 
> 
> Hey Jim/Chris,
> 
> In any case, even if Allaire should be shot for numerous bugs in 
> 4.5, there
> are a ton of things you can do to find out WHY CF stops 
> responding. Allaire
> has some great knowledge base articles, you can check the logs CF
> server creates and so on.. I would suggest going through your
> server logs with a fine tooth comb, looking for clues there, what
> databases are you
> using?(Access?), are you locking shared memory variables? are you
> locking cfhttp calls?
> 
> Aaron Johnson, MCSE, MCP+I
> MINDSEYE, Inc.
> 617.350.0339
> 949.350.8884
> 66172567
> [EMAIL PROTECTED]
> 
> ___
> "Never forget that only dead fish swim with
> the stream." -- Malcolm Muggeridge
> ___
> 
> 
> > -Original Message-
> > From: Jim Gurfein [mailto:[EMAIL PROTECTED]]
> > Sent: Wednesday, December 06, 2000 2:47 PM
> > To: CF-Talk
> > Subject: Re: CF Hangs
> >
> >
> > We have the same problem on NT... this is a killer for production
> > sites. Allaire should be shot for the 4.5 release
> >
> > At 11:36 AM 12/6/00 -0600, you wrote:
> > >We are running Cold Fusion on Solaris here. Periodically the  
> server will
> > >hang and not serve back anymore Cold Fusion requests. We are 
> able to send
> > >http requests to port 80 and Apache responds but Cold Fusion
> > seems dead in
> > >the water. After all is said and done the services have to be 
> killed and
> > >restarted.
> > >
> > >Anyone else having similar problems with *nix flavors of CF?
> > >
> > >Any help would be GREATLY appreciated.
> > >
> > >chris.alvarado
> > >cold.fusion - developer
> > >[phone] 512.794.6563
> > >[email] [EMAIL PROTECTED]
> > >[web] http://www.tmanage.com
> > >
> > >
> > >Privileged/Confidential Information may be contained in this
> > message. It is
> > >not for use or disclosure outside TManage without a written
> > >proprietary agreement.  If you are not the addressee indicated
> > >in this
> > message, or agent
> > >responsible for delivery, you may not copy or deliver this
> > >message to anyone.  Please notify the sender as soon as possible
> > >and immediately destroy this message and its attachments
> > >entirely.
> > >
> > >
> > >
> > >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: passing cfquery results to another page

2000-12-07 Thread Rick Lamb

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

Rick

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


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

Bob


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


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

Thanks,

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

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



Error help

2000-12-07 Thread John Anderson

Does anyone know what could be causing this?
John

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

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

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


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

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



Re: O'Reilly Website Pro

2000-12-07 Thread Howie Hamlin

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

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

==

HTH,

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

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


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



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

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



RE: Setting UltraDev as Dreamweaver Integration

2000-12-07 Thread Paul Ihrig

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

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

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

-paul

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

Home:   [EMAIL PROTECTED]
614 449-1681

[EMAIL PROTECTED]
icq:47658358


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

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

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



Test Post - my last post never showed up.

2000-12-07 Thread Lord, Heath

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

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

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



Verity Questions

2000-12-07 Thread CAlvarado

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

Thanks for any and all help.

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


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



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

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



Re: CF-Blogger?

2000-12-07 Thread Eric Dawson

yeah.

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

Eric


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


Has anyone done a Blogger-type app in CF?

Thanks,

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

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



RE: coldfusion bug

2000-12-07 Thread kwasi

I am using ColdFusion 4.5 SP2, on Windows 2000.

I copied this phrase: 

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

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

Any suggestions as to why this happens.


I would greatly appreciate your reply.


Kwasi Date-Bah






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

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



Help!!! Cooke Monster!!

2000-12-07 Thread Emmet McGovern

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

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



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


blah blah blah


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



Thanks,

Emmet McGovern
Systems Admin
Byte Size Inc.

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

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



RE: Regular Expressions - Programming Interface?

2000-12-07 Thread Simon Horwith

Hey Don, take a look at:

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

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


~Simon

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


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


Per a discussion at last night's CFUG, 

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

thanks for any info,

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

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



Re: Clusters Important and On-Topic =)

2000-12-07 Thread Yanik Lupien

Let see that ...

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

Voila .

Yanik Lupien


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


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

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



Re: Setting up CF Server on Windows ME

2000-12-07 Thread Billy Cravens

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

-- 
Billy Cravens
[EMAIL PROTECTED]


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

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



Re: List w/" " delims

2000-12-07 Thread Billy Cravens

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

-- 
Billy Cravens
[EMAIL PROTECTED]


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

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



Re: Server Configuration Question

2000-12-07 Thread Greg Wolfinger

Heath:

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

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


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

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



Re: Regular Expressions - Programming Interface?

2000-12-07 Thread Greg Wolfinger

Don:

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

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


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

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



RE: Regular Expressions - Programming Interface?

2000-12-07 Thread JustinMacCarthy

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

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

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

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

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

But if you find something CC me 

Justin MacCarthy



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

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



Re: Setting UltraDev as Dreamweaver Integration

2000-12-07 Thread Ken Wilson

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


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

Ken


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

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



  1   2   >