Re: allaire forums & tag gallery

2001-11-01 Thread Kay Smoljak

"lsellers" <[EMAIL PROTECTED]> wrote 
> A) I monitor cf-talk through the nntp mirror at fusetalk. It would be 
> nice
> if there was an option to sign up to cf-talk but NOT receive any
email. 
> This way I could read nntp posts and then have a registered email that

> would let me reply from there without the message bouncing.

I do the same, but receive the digest version of the list. Two or three
emails a day, and they are filtered to go straight in the bin. NNTP is
*so* much nicer to manage than an email list.

Who maintains the Fuseware mirror? I'd love it if some of the other
House Of Fusion lists could be mirrored there as well. Most of them
would be *much* lower traffic than CF-Talk I would think...

K.

~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



csv loop problem

2001-11-01 Thread list peters

hi,

i am looping over a csv file.
doing this



This works fine for things like
item1,item2

but i get problem for
item1 (line breaks inserted into text), item2

Because of the line breaks in a text block i am getting more than 2 items.

each row is delimited by a CR, however there are CR inside the csv as text
blocks.

How do i loop over it cleanly.
THere are 7 items per row.

thanks
chad
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Managing DNS via a browser

2001-11-01 Thread Justin Scott

> > Does anyone know of a current solution cf based or not, that
> > will allow you to manage DNS records via a browser?
>
> There are several available in perl, some are good, others are not so
good.
> It's been a LONG time since I looked at those (CF ended my Perl days), so
I
> don't remember any specifics on them.  CGI-Resources.com would be a good
> place to locate those.

Note to self: read the rest of the posts BEFORE replying...  Sorry for all
the dupe info.

-Justin Scott

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Managing DNS via a browser

2001-11-01 Thread Justin Scott

> Does anyone know of a current solution cf based or not, that
> will allow you to manage DNS records via a browser?

There are several available in perl, some are good, others are not so good.
It's been a LONG time since I looked at those (CF ended my Perl days), so I
don't remember any specifics on them.  CGI-Resources.com would be a good
place to locate those.

If you're running Linux, there is a DNS plug-in for Webmin that is fairly
simple to use.

If you're looking for an online solution, you could use something like
GraniteCanyon.com, but their stability and support is less then stellar.
For $20/yr per domain, you could use DtDNS (www.dtdns.com, which I operate,
btw).  DynDNS.org also has an online domain management system for $30 per
domain, and does not recur every year.  UltraDNS (www.ultradns.com) is a lot
more expensive, but is exactly what it's name is, Ultra.

I hope the info helps..

-Justin Scott, Lead Developer
 Sceiron Internet Services, Inc.
 http://www.sceiron.com

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



fuuny advanced security error

2001-11-01 Thread Mak Wing Lok

dear all,

I experienced this out of a sudden, i cannot login into my application with
advanced security.
and i test it with this code :



it gives me this error :

CFAuthenticate Tag Error.
Invalid User 'ip004' for Security Context 'sc1'.

the funny thing is that i can login to Spectra webtop, as i know, sc1 should
be the Spectra security context, why in teh world i could login to webtop
but not my application with advanced security??

any help?




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



Re: locking within CFSCRIPT

2001-11-01 Thread James Sleeman

I don't think so...  take for example the following

if locking could be done in 


 do stuff, we don't care about how serviceAvailable() does it's 
job, just that we ask for a service and it
 tells us if it is available

 internally, serviceAvailable must perform a named lock around say 
some code accessing a global structure that
 holds the services that are currently configured in the website, 
say, APPLICATION.Services

 but this calling section of code doesn't care aboutt that we don't 
want to know how the job is done, only that it is


whereas without the locking I have to do


 
 now we have to split the implementation of 
serviceAvailable, no longer do we not care how it is done, we have to
 be a part of it.  If we have to change the lock name for 
example, we can't just change it in serviceAvailable() we have
 to change it here, and anywhere else we use serviceAvailable()

 not to mention, all the code in this if statement is now 
holding, unnecessarily, a lock, so that no other block using
 serviceAvailable() is able to run
 


in conclusion I think that not having locks in CFSCRIPT is causing the 
break of scope.


At 02:37 AM 11/2/2001, you wrote:
>Pete,
>you are right concerning  but I can't see the limitations
>regarding UDFs.
>
>A UDF pre se is meant to be self-contained and therefore not relying on 
>anything outside it's
>own scope. Wouldn't the use of shared data inside a UDF be defeating this
>purpose?
>
>You could read a shared scope variable into a local variable and get
>that into the UDF do what ever you do and than return a new value,
>write that value into your shared data.
>
>Birgit


--
James Sleeman
Innovative Media Ltd
Phone: (03) 377 6262
http://www.websolutions.co.nz/

CAUTION: The information contained in this email message is confidential 
and may be legally privileged. If the reader of this message is not the 
intended recipient you are notified that any use, dissemination, 
distribution or reproduction of this message is prohibited. If you have 
received this message in error please notify the sender immediately and 
destroy the original message and any attachments.

Views expressed in this communication may not be those of Innovative Media 
Ltd.

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Frames and variable scoping

2001-11-01 Thread Bryan Love

Keep in mind that variables are processed server side while the frameset
tags are processed client side.  That means that ONLY the page you call with
the form action can see the form variables - in this case that page will
likely have the FRAMESET tags and nothing else.  Once that page is served up
the browser initiates requests for the frame sources - by this time your
form variables are gone.  Your only option here is to generate the frame
tags on the fly using CF and put the form variables in the url string for
the SRC attribute.  This way when the browser makes the request for the
frame source your variables will be passed in again through the url scope.  

You could also store the variables in a persistant scope, but it's probably
not the best idea.  If you do decide to do this there is one very easy way
to do it:
 (this works because form is actually
a struct pointer which is getting copied into the session.theForm variable)
then you can access the variables later like this
#session.theForm.fieldName#



 

Bryan Love Macromedia Certified Professional
Internet Application Developer / Database Analyst
Telecommunication Systems Inc.
[EMAIL PROTECTED]
 

"What father would hesitate to say 'if there must be trouble let it be in my
day, that my child may have peace'?"
- Thomas Paine, An American Crisis



-Original Message-
From: Lon Lentz [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 2:16 PM
To: CF-Talk
Subject: Frames and variable scoping


  I have a frameset that is called through a form post. How should I 
refer to those posted variables within a frame inside that frameset? Do 
I pass them as url variables in the template call of the frame tag?



Lon Lentz
Applications Developer and CyberEntomolgist
http://ProofitOnline.Com - Free 15 Day Trial

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Goodbye Advanced Security, hello Session Params and eh.. hell o list!

2001-11-01 Thread Maia, Eric

I've downloaded the files and docs, and it looks good, but I'm getting
errors. I'm still running CFStudio 4.01 on my development machine and it's
choking on the URL struct call. I can call specific URL variables (e.g.
#URL.FuseAction#) but the line

for(key in url){

in the file FBX_FUSEBOX30_CF40.CFM is generating an "Error resolving
parameter URL" message. I get the same message when I try to access the URL
struct this way in other files.

Is there a possibility that the wrong file got swapped in for
FBX_FUSEBOX30_CF40.CFM? In the FuseDocs in that file it says it's
FBX_FUSEBOX30_CF50.CFM...

Or is there some problem with my development server's installation or
settings?

Thanks - Eric

-Original Message-
From: Joseph DeVore [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 11:10 AM
To: CF-Talk
Subject: RE: Goodbye Advanced Security, hello Session Params and eh..
hell o list!


FYI: Fusebox 3.0 spec is out now (the Fusebox book mentioned below was 1.0)

You can read more about here:
http://www.fusebox.org/index.cfm?fuseaction=specs.fusebox30

IMO, start using FB3 today!


Joseph DeVore
VeloxWeb Technologies




-Original Message-
From: Brunt, Michael [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 9:39 AM
To: CF-Talk
Subject: RE: Goodbye Advanced Security, hello Session Params and eh..
hell o list!


Fusebox has what I believe is a really good way to manage
Users-Groups-Content Access/Control, it actually works and you can use any
SQL or LDAP User-Group structure as the base (yes including MS Access). I
recommend getting hold of a great book on Fusebox called "Fusebox
Methodology and Techniques" you can get this is either printed and .pdf
format.  http://www.fusebox.org is another great source and the specific
fusebox files that enable Users-Groups-Content Access/Control are typically
called app_login.cfm and app_secure.cfm.

Mike Brunt
Sempra Energy
213.244.5226

"I have NOT lost my mind - I have it backed up on tape somewhere."


-Original Message-
From: Tage Widsell [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 7:17 AM
To: CF-Talk
Subject: Re: Goodbye Advanced Security, hello Session Params and eh..
hello list!


on 01-11-01 16.10, Jochem van Dieten at [EMAIL PROTECTED] wrote:

> Tage Widsell wrote:
>
>> Hi,
>>
>> After weeks of struggling to get Advanced Security to run with Access in
>> ColdFusion 5, i have given up. It works like a charm in CF 4.0.1, but not
>> with the new version. Allaire, sorry, Macromedia support have suggested
that
>> Advanced Security in CF 5 simply doesn't work with Access.
>
>
> It even says so in the manual.
>

Ok. Support just told me the same thing. I feel stupid now.

>
>> Time to create a customized session handling and security system to use
our
>> MySQL server instead. My plan is to use session variables to keep track
of
>> what users are allowed where, but I seem to recall a few concerns about
>> relying on session variables for this from my last time on the list about
a
>> year ago. Is there something that I should keep in mind while doing this?
>
>
> What exactly are your security needs? Obviously sandboxing can't be
> handled with session variables. What scenario would be your worst
nightmare?
>

We don't use sandboxing. I need a role based log-in system that enables me
to control what information goes where. We have groups like allUsers,
RegisteredUser, betaTesters, admins and registered owners of our products.
Apart from the basic server security that wouldn't be handled by this system
- to stop people from breaking into the server and modify/damage data, the
nightmare would be if someone could find a way to pose as a site admin and
get access to product registration, serial numbers etc.



>
>> Also, one of the problems I had in 4.0.1 was locking the shared scope
>> variables. This seems to be much more efficient in CF 5, but I also found
>> the option to run Single Threaded Sessions. This seems like a very easy
>> solution. Would this affect performance a lot?
>
>
> Yes.
>

So I would be stupid not to set  around every shared variable? Ouch.

/Tage




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



Date wierdness in query of query ?

2001-11-01 Thread James Sleeman

Hi all..
 I have a little bit of code that maintains a mirror of some files 
into a seperate mirror directory.  Basically it checks to see if the 
LastModifiedDate of the original file is greater than the lastmodifieddate 
of the mirrored file.  But something is a miss notably one of the rows in 
the Q_NoChangers query says

ALastMod  MLastModName
11/02/2001 12:37:48 PM 10/26/2001 02:28:15 PM index.cfm

which indicates that the query thinks that 11/02/2001 is less than or equal 
to 10/26/2001 so something is very wrong  can anybody see anything 
wrong with my code, have I missed some vitally important caveat with using 
dates with query-of-queries ??  Here is the code...


 
 
 
 
 
 

 
 

 
 SELECT Q_Actual.Name AS Name,
Q_Actual.DateLastModified AS ALastMod,
Q_Mirror.DateLastModified AS MLastMod
 FROM Q_Actual, Q_Mirror
 WHERE
 (
 Q_Actual.DateLastModified > 
Q_Mirror.DateLastModified
 ANDQ_Actual.Name = Q_Mirror.Name
 )
 UNION
 SELECT Q_Actual.Name AS Name,
Q_Actual.DateLastModified AS ALastMod,
Q_Actual.DateLastModified AS MLastMod
 FROM Q_Actual
 WHERE
 Q_Actual.Name NOT IN 
(#QuotedValueList(Q_Mirror.Name)#)
 

 
 
 

 
 
 SELECT Q_Actual.Name AS Name,
Q_Actual.DateLastModified AS ALastMod,
Q_Mirror.DateLastModified AS MLastMod
 FROM Q_Actual, Q_Mirror
 WHERE
 (
 Q_Actual.DateLastModified <= 
Q_Mirror.DateLastModified
 ANDQ_Actual.Name = Q_Mirror.Name
 )
 

 
 
 

 



--
James Sleeman
Innovative Media Ltd
Phone: (03) 377 6262
http://www.websolutions.co.nz/

CAUTION: The information contained in this email message is confidential 
and may be legally privileged. If the reader of this message is not the 
intended recipient you are notified that any use, dissemination, 
distribution or reproduction of this message is prohibited. If you have 
received this message in error please notify the sender immediately and 
destroy the original message and any attachments.

Views expressed in this communication may not be those of Innovative Media 
Ltd.

~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: List of queries in a page

2001-11-01 Thread Keen

Not sure what you are wanting to do with it but the exploded benchmarking /
debug will provide that info as well as number of records returned and
execution time.

-Original Message-
From: Zac Belado [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 12:36 PM
To: CF-Talk
Subject: List of queries in a page


Anyone know of a way, simple or not, to get a full list of the queries used
in the generation of a page?

TIA


--

Zac Belado
Application Developer

Bayleaf Software
#300 948 Homer Street,
Vancouver, BC,
V6B 2W7
Ph: 604.683.1288 x 116

~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Managing DNS via a browser

2001-11-01 Thread Pete Freitag

Webmin works very well for BIND servers http://www.webmin.com


~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Managing DNS via a browser

2001-11-01 Thread lsellers

At 05:06 PM 11/1/2001 -0500, you wrote:
>i'm actually going to be writing something very similar pretty soon.

I wrote code to manage BIND many, many years ago. It's very easy to 
physically do *IF* you read through the BIND documents enough times that 
you've essentially memorized it. :-)

It's a very rigid, very picky format. I'd strongly suggest not doing your 
alpha/beta code on anything important, because the mistakes could be cached 
out in the wild for several days. A very bad situation for a live 
commercial site.

--min
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Single user CF5 license available

2001-11-01 Thread Ben Forta

Well, in all fairness, this is an old Allaire decision - the single user
version always was a Studio add-on. I'd not blame MM for this one, I do need
to try find out why that decision was made in the first place.

For now though, as it was before, it is intended to be used with Studio.

And yes, MM folks do listen very attentively (remember the hosting edition?
it is this list that caused that change). Not saying that anything will
change, but you can be sure that this will be discussed and reviewed.

--- Ben



-Original Message-
From: Scott Brady [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 5:37 PM
To: CF-Talk
Subject: Re: Single user CF5 license available


Ben wrote:

> I hear you, and honestly, I don't know why it was done that way
originally.
> This entire thread is being forwarded to the right folks within MM.

Cool!

Thanks!

I'm also not trying just to vent, because it's actually cool that MM has
people who at least read this list (and others I'm on). So, it's not like
they don't care about developers at all.  This just seems to be one of the .
 .. less developer-friendly moves on their part.

Scott

Scott Brady
http://www.scottbrady.net/

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Single user CF5 license available

2001-11-01 Thread Scott Brady

Ben wrote:

> I hear you, and honestly, I don't know why it was done that way
originally.
> This entire thread is being forwarded to the right folks within MM.

Cool!

Thanks!

I'm also not trying just to vent, because it's actually cool that MM has
people who at least read this list (and others I'm on). So, it's not like
they don't care about developers at all.  This just seems to be one of the .
 .. less developer-friendly moves on their part.

Scott

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



RE: Single user CF5 license available

2001-11-01 Thread Ben Forta

Scott,

I hear you, and honestly, I don't know why it was done that way originally.
This entire thread is being forwarded to the right folks within MM.

--- Ben



-Original Message-
From: Scott Brady [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 5:27 PM
To: CF-Talk
Subject: Re: Single user CF5 license available


BF wrote (can I call ya BF?):

> Scott, that was the same for the prior version too. It is intended for use
> with Studio.
>
> --- Ben

The same for the previous version of the single user license?  If so, then
fine.  They should release a version 5 of CFExpress.  They have a lot of
users who develop at home, (but don't host at home), and don't want to be
forced to purchase CF Studio in order to do so.  I mean, we're not even
talking about a product they sell (single-user version of the server) and
it's not usable in a production environment.  If someone is stupid enough to
actually host from home while using it, then they risk getting caught with a
simple visit to Netcraft.

I love Cold Fusion and I'm quite good at it (not trying to sound arrogant,
really).  But, I'm also good enough to switch to a non-MM technology [I've
been learning ASP and am learning JSP, which doesn't require JRun], which
would allow me to develop at home without shelling out $500 for a program
that has more features than I really need for home development.

(I'm not trying to harass you, Ben, since you're just the Evangelist.)

I'd even be happy with letting HomeSite users (at $100, that's at least much
more reasonable) use the single-user license.

Scott


Scott Brady
http://www.scottbrady.net/

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



Re: Single user CF5 license available

2001-11-01 Thread Scott Brady

BF wrote (can I call ya BF?):

> Scott, that was the same for the prior version too. It is intended for use
> with Studio.
>
> --- Ben

The same for the previous version of the single user license?  If so, then
fine.  They should release a version 5 of CFExpress.  They have a lot of
users who develop at home, (but don't host at home), and don't want to be
forced to purchase CF Studio in order to do so.  I mean, we're not even
talking about a product they sell (single-user version of the server) and
it's not usable in a production environment.  If someone is stupid enough to
actually host from home while using it, then they risk getting caught with a
simple visit to Netcraft.

I love Cold Fusion and I'm quite good at it (not trying to sound arrogant,
really).  But, I'm also good enough to switch to a non-MM technology [I've
been learning ASP and am learning JSP, which doesn't require JRun], which
would allow me to develop at home without shelling out $500 for a program
that has more features than I really need for home development.

(I'm not trying to harass you, Ben, since you're just the Evangelist.)

I'd even be happy with letting HomeSite users (at $100, that's at least much
more reasonable) use the single-user license.

Scott


Scott Brady
http://www.scottbrady.net/
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Frames and variable scoping

2001-11-01 Thread Kelly Matthews

Check out this:
http://www.cfugorama.com/cfugorama/DevCon.cfm
Download the Ninja Javascript Presentation.
Steve went through something like this although using a hidden frame
but it's still passing variables through a frame.
Kelly


-Original Message-
From: Lon Lentz [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, November 01, 2001 5:16 PM
To: CF-Talk
Subject: Frames and variable scoping


  I have a frameset that is called through a form post. How should I 
refer to those posted variables within a frame inside that frameset? Do 
I pass them as url variables in the template call of the frame tag?



Lon Lentz
Applications Developer and CyberEntomolgist http://ProofitOnline.Com - Free
15 Day Trial 
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: List of queries in a page

2001-11-01 Thread Zac Belado

> If you aren't able to turn on debugging, another option would be to place
> all of your queries into a structure.. then either loop over that
> structure
> using CFLOOP or use CFDUMP.

I can use debugging. I have built a custom tool to help debug sites and it
displays vars etc in a pop-up window. I want to be able to list and view the
queries in a page as well.

Since this is going to be used site wide and won't be used on live sites its
not feasible to manually copy the queries to a struct on each page.

I was hoping, vainly I imagine,  that the queries were set in a scope (or
scoped) var similar to the FORM, CGI and REQUEST vars.

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Generator Issues

2001-11-01 Thread Zac Belado

> > What I meant to ask was "Does it happen in all browsers?".
>
> Yup, Netscape and IE - it's actually the graphic that's generated - if we
> open it in PhotoShop it's got a dapple effect on it

I'm assuming that it doesn't do this if you use a websafe colour in the
background?

~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Single user CF5 license available

2001-11-01 Thread Ben Forta

Scott, that was the same for the prior version too. It is intended for use
with Studio.

--- Ben


-Original Message-
From: Scott Brady [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 4:38 PM
To: CF-Talk
Subject: Re: Single user CF5 license available


Ben Forta wrote:
> Actually, there is a single user version license like there was in CF5.
> There is info on it on www.macromedia.com.

Yeah, but if I understand it right, you have to have a version of CF Studio
on your machine to use it.  When I was employed, I was able to have CF
Studio on my home machine, but now that I'm not, I got rid of it.  (Figures,
my honesty came back to bite me in the butt).

> As for CF Express, right now it is still at v4.5, and is still available
for
> download.

Yeah, but that's not helpful in trying to practice with CF5.  Personally,
I'd rather have a single-user license of the full thing, but I'd settle for
CFExpress.

Scott

Scott Brady
http://www.scottbrady.net/

~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Frames and variable scoping

2001-11-01 Thread Lon Lentz

  I have a frameset that is called through a form post. How should I 
refer to those posted variables within a frame inside that frameset? Do 
I pass them as url variables in the template call of the frame tag?



Lon Lentz
Applications Developer and CyberEntomolgist
http://ProofitOnline.Com - Free 15 Day Trial
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: structure ?

2001-11-01 Thread Douglas L. Brown

Well here is the struct, I did a  and got the following results..

Struct




if (not(isDefined("session.cart"))){
session.cart = structNew();
}
// create a temp structure
tempValue = StructNew();
   StructInsert(tempValue, "sysModelNum", attributes.sysModelNum);
   StructInsert(tempValue, "show_price_top", FORM.show_price_top);
   StructInsert(tempValue, "qty", attributes.qty);
   StructInsert(tempValue, "cse", attributes.cse);
   StructInsert(tempValue, "cpu", attributes.cpu);
   StructInsert(tempValue, "ram", attributes.ram);
   StructInsert(tempValue, "hdd", attributes.hdd);
   StructInsert(tempValue, "sec_hdd", attributes.sec_hdd);
   StructInsert(tempValue, "mtr", attributes.mtr);
   StructInsert(tempValue, "ctr", attributes.ctr);
   StructInsert(tempValue, "vid", attributes.vid);
   StructInsert(tempValue, "snd", attributes.snd);
   StructInsert(tempValue, "cdr", attributes.cdr);
   StructInsert(tempValue, "dvd", attributes.dvd);
   StructInsert(tempValue, "crw", attributes.crw);
   StructInsert(tempValue, "modem", attributes.modem);
   StructInsert(tempValue, "stg", attributes.stg);
   StructInsert(tempValue, "spk", attributes.spk);
   StructInsert(tempValue, "nic", attributes.nic);
   StructInsert(tempValue, "clng", attributes.clng);
   StructInsert(tempValue, "os", attributes.os);
   StructInsert(tempValue, "war", attributes.war);

/* check if the model number is in the cart, and if it is, update your temp
structure with the new quantity */


if (structKeyExists(session.cart,attributes.sysModelNum)) {
newquantity = attributes.qty;
StructInsert(tempValue, "qty", newquantity, true);

}
/* now update the cart. This will either add a new structure, or overwrite
an existing one with an updated quantity */
StructInsert(session.cart,attributes.sysModelNum,tempValue, true);








Results of dump, the center one is the one it is trying to output back to
the page.

TEST-SYS1 CDR none
CLNG none
CPU test-cpu2
CRW none
CSE test-cse3
CTR none
DVD none
HDD test-hdd1
MODEM none
MTR none
NIC none
OS test-os1
QTY 1
RAM test-ram1
SEC_HDD none
SHOW_PRICE_TOP 2748
SND none
SPK none
STG none
SYSMODELNUM test-sys1
VID test-vid1
WAR warranty

  TEST-SYS1,TEST-SYS2 CDR none,none
CLNG none,none
CPU test-cpu2,test-cpu5
CRW none,none
CSE test-cse3,test-cse2
CTR none,none
DVD none,none
HDD test-hdd1,test-hdd1
MODEM none,test-modem1
MTR none,none
NIC none,none
OS test-os1,test-os1
QTY 1,20
RAM test-ram1,test-ram1
SEC_HDD none,none
SHOW_PRICE_TOP 2748,2673
SND none,none
SPK none,none
STG none,none
SYSMODELNUM test-sys1,test-sys2
VID test-vid1,test-vid1
WAR warranty,warranty

  TEST-SYS2 CDR none
CLNG none
CPU test-cpu5
CRW none
CSE test-cse2
CTR none
DVD none
HDD test-hdd1
MODEM test-modem1
MTR none
NIC none
OS test-os1
QTY 1
RAM test-ram1
SEC_HDD none
SHOW_PRICE_TOP 2673
SND none
SPK none
STG none
SYSMODELNUM test-sys2
VID test-vid1
WAR warranty

- Original Message -
From: "Tim Stadinski" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, November 01, 2001 2:07 PM
Subject: RE: structure ?


> can you provide a source snippet?
>
> tim
>
> -Original Message-
> From: Douglas L. Brown [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, November 01, 2001 4:29 PM
> To: CF-Talk
> Subject: structure ?
>
>
> I have a struct that adds and updates a shopping cart, and I get an
> error when updating the cart when their is more than one item. It is
> sending a comma delimeted list of the values to the structure for update
> and when it tries to display the values it is also comma delimeted and
> causes the errror. It is not updating the item based upon the identifier
> which in this case is "sysModelNum". If I have lets say model1 and model
> 2 in the cart and hit the update button it will try to display model1
> and model2 in the same field. Can someone tell me what I may be doing
> wrong.
>
>
>
>
>  NAME="Douglas L. Brown"
> EMAIL="[EMAIL PROTECTED]"
> PHONE="714.538.6611"
> WEB="http://www.carnivorepc.com";>
>
>
> 
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.the

Re: Single user CF5 license available

2001-11-01 Thread tom muck

> the only people who are upset about this are the ones who want to stay
> "honest" - there's nothing to stop anyone from simply using the expired CF
> evaluation as a single-user developer version.
>
> Dave Watts, CTO, Fig Leaf Software


Exactly.  As MM is trying to push UltraDev as an alternative for ColdFusion
development, I think it would be fitting to allow the use of the single-user
server for those people, or people using Homesite (another MM product).  I'm
only thinking of the people who are buying UltraDev without CF Studio, as
they will have no reason to use features of CF Server 5.0 such as UDFs if
they can't make them work on their development machines.  Homesite comes
free with UltraDev, and for many people this is enough -- no need for CF
Studio.  Personally I wouldn't be without CF Studio, and it's my tool of
choice for most development, but that's besides the point.  ;-)

tom

~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Single user CF5 license available

2001-11-01 Thread Scott Brady

> I'll join in late ;-)  Personally, I think this is gay as well.

Ummm . . . you think it's "happy"?  If you meant it the other way (as I
believe you did), then it's pretty offensive.  But anyway . . .

> I'll join in late ;-)  Personally, I think this is gay as well.  What if I
> have no
> interest in using CF Studio as my IDE?  The more I see software
requirements
> like this,
> the more I dig into alternatives like MySQL and PhP...

Yeah, the upgrade from HS to CFStudio is $499  (only $399 if you own
DreamWeaver). The Professional version of the server is only $1,300.
Instead of paying $500 for the development tool I don't necessarily want [I
like CF Studio, but Homesite suits my needs] in order to get a single-user
license of the server, why not just pony up the whole price for the actual
server?

Scott

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



Re: Single user CF5 license available

2001-11-01 Thread Douglas L. Brown

Considering the word gay is meant to be happy or jolly, I find not to be
offensive but the wrong terminology




DB
- Original Message -
From: "Dave Watts" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, November 01, 2001 2:08 PM
Subject: RE: Single user CF5 license available


> > Personally, I think this is gay as well.
>
> Personally, I find the use of the word "gay" to describe something as bad
or
> stupid a bit offensive.
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> voice: (202) 797-5496
> fax: (202) 797-5444
> 
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: BOOKS for XML

2001-11-01 Thread Tim Stadinski

"XML in a Nutshell" Orielly...excellent starting place.  Describes all of
the basics and XML technologies.  Good reference manual as well.

tim

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 9:51 AM
To: CF-Talk
Subject: BOOKS for XML


any good book for xml?


ycc

PGI - The Event and Communications Agency
Experience.  The Difference.
http://www.pgi.com

GOD BLESS AMERICA !


~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Encrypting CF APPS

2001-11-01 Thread Dave Watts

> Is there some specific program used to encrypt all the files??

With CF 5, it's c:\cfusion\bin\cfencode.exe. I think it used to be
cfencrypt.exe in CF 4.x.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Encrypting CF APPS

2001-11-01 Thread John Cummings

Probably they're just using cfencode.exe.   Should be in your
cfusion/bin directory.

John Cummings
ColdFusion Product Support
Macromedia, Inc.
(703) 629-1833
[EMAIL PROTECTED]
AIM: jcummings1974

-Original Message-
From: Kelly Matthews [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, November 01, 2001 5:02 PM
To: CF-Talk
Subject: Encrypting CF APPS

Ok question.  People who put apps on Allaires Dev Exchange, for example.

Some of them are encrypted. Is there some specific program used to 
encrypt all the files??
Kelly

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: structure ?

2001-11-01 Thread Tim Stadinski

can you provide a source snippet?

tim

-Original Message-
From: Douglas L. Brown [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 4:29 PM
To: CF-Talk
Subject: structure ?


I have a struct that adds and updates a shopping cart, and I get an 
error when updating the cart when their is more than one item. It is 
sending a comma delimeted list of the values to the structure for update 
and when it tries to display the values it is also comma delimeted and 
causes the errror. It is not updating the item based upon the identifier 
which in this case is "sysModelNum". If I have lets say model1 and model 
2 in the cart and hit the update button it will try to display model1 
and model2 in the same field. Can someone tell me what I may be doing 
wrong.




http://www.carnivorepc.com";>


~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Managing DNS via a browser

2001-11-01 Thread Christopher Olive

i'm actually going to be writing something very similar pretty soon.

christopher olive, cto, vp of web development
cresco technologies, inc
410.825.0383
http://www.crescotech.com


-Original Message-
From: Clint Tredway [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 10:08 AM
To: CF-Talk
Subject: OT: Managing DNS via a browser


Does anyone know of a current solution cf based or not, that will allow
you to manage DNS records via a browser?

Thanks in advance!


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



RE: Single user CF5 license available

2001-11-01 Thread Dave Watts

> Personally, I think this is gay as well.

Personally, I find the use of the word "gay" to describe something as bad or
stupid a bit offensive.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Encrypting CF APPS

2001-11-01 Thread Kelly Matthews

Ok question.  People who put apps on Allaires Dev Exchange, for example. 
Some of them are encrypted. Is there some specific program used to 
encrypt all the files??
Kelly
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Single user CF5 license available

2001-11-01 Thread tom muck

Yes, I believe that it checks to make sure you have CF Studio installed or
it won't install.  That means if you use Homesite or UltraDev, or any other
tool, you can't install 5.0 as a development server.  UltraDev does come
with a single-user version of CF server 4.5, but if someone wants to use 5.0
legally, they have to buy CF Studio.

tom

"Ben Forta" <[EMAIL PROTECTED]> wrote in message
001601c1631c$c2c59f90$1e02a8c0@MILLIWAYS">news:001601c1631c$c2c59f90$1e02a8c0@MILLIWAYS...
> Actually, there is a single user version license like there was in CF5.
> There is info on it on www.macromedia.com.
>
> As for CF Express, right now it is still at v4.5, and is still available
for
> download.
>
> --- Ben


~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Single user CF5 license available

2001-11-01 Thread Kurt Ward

I'll join in late ;-)  Personally, I think this is gay as well.  What if I
have no
interest in using CF Studio as my IDE?  The more I see software requirements
like this,
the more I dig into alternatives like MySQL and PhP...

Kurt

-Original Message-
From: Peter Tilbrook [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 4:44 PM
To: CF-Talk
Subject: Re: Single user CF5 license available


The ColdFusion Server 5 Single User Activation Kit is now available on
Macromedia.com. The Activation Kit converts the ColdFusion Server 5
evaluation software into a non-expiring, Single User Version of ColdFusion
Server 5.

NOTE: A licensed version of ColdFusion Studio (any version) must already be
present on the server to use the Activation Kit.

The kit is available at
http://www.macromedia.com/software/coldfusion/downloads/update/

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Single user CF5 license available

2001-11-01 Thread Dave Watts

> Actually, there is a single user version license like there 
> was in CF5. There is info on it on www.macromedia.com.

There is a single-user version, but it requires a Studio license, which I
believe is Tom Muck's complaint.

I have to agree with him - I think the single-user Developer license for
JRun would be a great idea for CF, and wouldn't cost MM any money. After
all, the only people who are upset about this are the ones who want to stay
"honest" - there's nothing to stop anyone from simply using the expired CF
evaluation as a single-user developer version.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: BOOKS for XML

2001-11-01 Thread BILL BROWN

I've really liked "Inside XML" by Steven Holzner published by New Riders. 
Amazon's got 71 sample pages online and some really great information.

http://www.amazon.com/exec/obidos/ASIN/0735710201/ 

Bill Brown
Web Developer
Desert Schools Federal Credit Union

>>> [EMAIL PROTECTED] 11/1/01 7:51 AM >>>
any good book for xml?

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



Re: Single user CF5 license available

2001-11-01 Thread Peter Tilbrook

The ColdFusion Server 5 Single User Activation Kit is now available on
Macromedia.com. The Activation Kit converts the ColdFusion Server 5
evaluation software into a non-expiring, Single User Version of ColdFusion
Server 5.

NOTE: A licensed version of ColdFusion Studio (any version) must already be
present on the server to use the Activation Kit.

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



Re: Single user CF5 license available

2001-11-01 Thread Scott Brady

Ben Forta wrote:
> Actually, there is a single user version license like there was in CF5.
> There is info on it on www.macromedia.com.

Yeah, but if I understand it right, you have to have a version of CF Studio
on your machine to use it.  When I was employed, I was able to have CF
Studio on my home machine, but now that I'm not, I got rid of it.  (Figures,
my honesty came back to bite me in the butt).

> As for CF Express, right now it is still at v4.5, and is still available
for
> download.

Yeah, but that's not helpful in trying to practice with CF5.  Personally,
I'd rather have a single-user license of the full thing, but I'd settle for
CFExpress.

Scott

Scott Brady
http://www.scottbrady.net/
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Single user CF5 license available

2001-11-01 Thread Massimo Foti

Especially when you consider what's available for JRun...

Massimo



"tom muck" <[EMAIL PROTECTED]> wrote in message news:3be1bbe6
> Apparently MM wants to lose their potential ColdFusion developers to ASP,
> where you can always have a free server on your local machine.  There is
no
> conceivable reason why MM would not allow a developer to use a single-user
> version of CF server indefinitely.  It's absolutely useless as a
production
> server and it's only possible use is as a development server.  Either that
> or they are content that developers will have to stick with 4.5.  They
> aren't even allowing UltraDev users the benefit of using a local
development
> server after spending $500 on the software.  It doesn't make any sense to
> me. ;-)
>
> tom


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



RE: Single user CF5 license available

2001-11-01 Thread Ben Forta

Actually, there is a single user version license like there was in CF5.
There is info on it on www.macromedia.com.

As for CF Express, right now it is still at v4.5, and is still available for
download.

--- Ben



-Original Message-
From: tom muck [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 4:11 PM
To: CF-Talk
Subject: Re: Single user CF5 license available


Apparently MM wants to lose their potential ColdFusion developers to ASP,
where you can always have a free server on your local machine.  There is no
conceivable reason why MM would not allow a developer to use a single-user
version of CF server indefinitely.  It's absolutely useless as a production
server and it's only possible use is as a development server.  Either that
or they are content that developers will have to stick with 4.5.  They
aren't even allowing UltraDev users the benefit of using a local development
server after spending $500 on the software.  It doesn't make any sense to
me. ;-)

tom

"Scott Brady" <[EMAIL PROTECTED]> wrote in message
005f01c16317$83db0090$f5b36441@dsbrady">news:005f01c16317$83db0090$f5b36441@dsbrady...
> Ok, since you have to own CF Studio, are there plans to release a CF
Express
> version 5?  I'd heard the answer was "No" before, but then we were told
that
> the CF Server Evalaution reverts to a single user license after
expiration.
> But, I understand that the Server license doesn't allow you to use that
for
> development?



~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: List of queries in a page

2001-11-01 Thread BILLY CRAVENS

If you aren't able to turn on debugging, another option would be to place
all of your queries into a structure.. then either loop over that structure
using CFLOOP or use CFDUMP.

- Original Message -
From: "Pete Freitag" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, November 01, 2001 2:55 PM
Subject: RE: List of queries in a page


> Turn on debugging, there is an option to list the queries and their SQL.
>
> +
> Pete Freitag ([EMAIL PROTECTED])
> CFDEV.COM
> ColdFusion Developer Resources
> http://www.cfdev.com/
>
>
> -Original Message-
> From: Zac Belado [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, November 01, 2001 3:36 PM
> To: CF-Talk
> Subject: List of queries in a page
>
>
> Anyone know of a way, simple or not, to get a full list of the queries
used
> in the generation of a page?
>
> TIA
>
>
> --
>
> Zac Belado
> Application Developer
>
> Bayleaf Software
> #300 948 Homer Street,
> Vancouver, BC,
> V6B 2W7
> Ph: 604.683.1288 x 116
>
> 
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Single user CF5 license available

2001-11-01 Thread tom muck

Apparently MM wants to lose their potential ColdFusion developers to ASP,
where you can always have a free server on your local machine.  There is no
conceivable reason why MM would not allow a developer to use a single-user
version of CF server indefinitely.  It's absolutely useless as a production
server and it's only possible use is as a development server.  Either that
or they are content that developers will have to stick with 4.5.  They
aren't even allowing UltraDev users the benefit of using a local development
server after spending $500 on the software.  It doesn't make any sense to
me. ;-)

tom

"Scott Brady" <[EMAIL PROTECTED]> wrote in message
005f01c16317$83db0090$f5b36441@dsbrady">news:005f01c16317$83db0090$f5b36441@dsbrady...
> Ok, since you have to own CF Studio, are there plans to release a CF
Express
> version 5?  I'd heard the answer was "No" before, but then we were told
that
> the CF Server Evalaution reverts to a single user license after
expiration.
> But, I understand that the Server license doesn't allow you to use that
for
> development?


~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



FW: CFDIST.INI

2001-11-01 Thread Denis Piquette

-Original Message-
From: Denis Piquette [mailto:[EMAIL PROTECTED]]
Sent: Thursday, October 18, 2001 7:10 PM
To: CF-Server
Subject: CFDIST.INI


Has anyone implemented a CF5 Pro distributed environment using the
CFDIST.INI changes.

Thanks,

Denis Piquette
I.S. Manager
140 Fullarton, Suite 700
London, Ontario
519-672-6703 x212 

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



structure ?

2001-11-01 Thread Douglas L. Brown

I have a struct that adds and updates a shopping cart, and I get an 
error when updating the cart when their is more than one item. It is 
sending a comma delimeted list of the values to the structure for update 
and when it tries to display the values it is also comma delimeted and 
causes the errror. It is not updating the item based upon the identifier 
which in this case is "sysModelNum". If I have lets say model1 and model 
2 in the cart and hit the update button it will try to display model1 
and model2 in the same field. Can someone tell me what I may be doing 
wrong.




http://www.carnivorepc.com";>

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



Re: Deleting a Query???

2001-11-01 Thread BILLY CRAVENS

I think Dave is right - trying to optimize by garbage collecting on your
recordsets might be stretching it - perhaps you should look elsewhere in
your code.  Additionally, I agree that using ColdFusion to make a mass
mailer isn't the best use of ColdFusion.  There's plenty of other
applications that do a much better job of this.

However, for the academic sake of it, the best approach might be to
encapsulate logic in COM or CFX tags.  You'll have better memory control, so
there's no concerns once control gets returned to the CF engine (what you do
in your COM object or CFX tag controls your memory situation).

- Original Message -
From: "Dave Watts" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, November 01, 2001 2:36 PM
Subject: RE: Deleting a Query???


> > Does anyone know if there is a way to delete query results,
> > before the page is done processing??? I have a couple of pages
> > that compile info and send mass emails, but some of the queries
> > are only needed for a short period, but (correct me if I am
> > wrong) the results of those queries will stay in memory until
> > the page is done. Well, when one of the results can easily have
> > over 50,000 rows, that is a lot of memory that could be freed
> > up and either speed up the other processes running, or allow
> > more to be run simultaniously. Any answer or push in the right
> > direction would be VERY much appreciated.
>
> I'd guess that the resultset is retained in memory for the duration of the
> page processing, but I don't know for sure - it's not unimaginable that
the
> parsing process notes when something is no longer needed as a basis for
> garbage collection at runtime.
>
> You might be able to flush the recordset from memory by simply overwriting
> the variable:
>
> 
> ..
> 
>
> However, ideally your page won't take so long to run that this makes any
> significant difference. If your page is doing something that takes that
> long, you should look at doing that within something else, and perhaps
> triggering the start from CF. For example, if you're sending these mass
> emails, and it takes a very long time to run, maybe you should handle the
> mass emails from something else, and let your CF engine stick with what it
> does best - generate HTML output dynamically.
>
> Finally, I don't think you'll get more processes running as a result of
> freeing the memory. With CF, you get a set number of threads that exist
over
> the life of the service. This is specified within the CF Administrator.
> Those existing threads might execute more efficiently given the additional
> free memory, though.
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> voice: (202) 797-5496
> fax: (202) 797-5444
> 
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: The Case of the Disappearing Cookies

2001-11-01 Thread Dave Watts

> What I'm planning to do is when I get another email, to call 
> the group home and have whoever is there do some snooping for 
> me. Assuming the person on the phone with me has nothing to 
> hide and will try to help me, what steps should I tell them 
> to take to inspect the history? I am working with IE 5.x here.

I don't know how much this will vary between IE 5.5 on Win2K (what I'm
using) and and IE 5.x on Win98.

I've got a History folder within my temp directory. Within that folder,
there's a special system folder (hidden from the command line) called
History.IE5. When browsed through Windows Explorer, it shows a list of the
history entries divided by day, for the last four days.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: The Case of the Disappearing Cookies

2001-11-01 Thread Dave Babbitt

What I'm planning to do is when I get another email, to call the group home
and have whoever is there do some snooping for me. Assuming the person on
the phone with me has nothing to hide and will try to help me, what steps
should I tell them to take to inspect the history? I am working with IE 5.x
here.

Thanx

Dave

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 3:25 PM
To: CF-Talk
Subject: RE: The Case of the Disappearing Cookies


[snip]
> 3) Is their a way to catch them in the act? It's possible that,
> depending on what non-work related websites the staff are visiting,
> our client would want to know and take appropriate action.

[snip] On an even more
casual note, these people probably aren't deleting their history, just their
cookies, so you could take a look at that.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
[snip]
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Processing an HTTP Post (not form)

2001-11-01 Thread Lomvardias, Christopher

Ben,

What type of data is the applet posting? Can you tell why it is posting it
using the application/octet-stream content type? This content type is more
commonly used to transport files.

Chris
--
Chris Lomvardias
[EMAIL PROTECTED]
Syscom, Inc.
400 E. Pratt Street, Suite 300
Baltimore, MD 21202
(410)539-3737 x1722 voice
(410)539-7302 fax
[EMAIL PROTECTED] (pager via email)
http://www.syscom.com/
--

-Original Message-
From: Ben Koshy [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 12:35 PM
To: CF-Talk
Subject: Processing an HTTP Post (not form)


I have a java applet that posting some data to my cold fusion template.  But
I can't seem to access the data.  It doesn't appear to be showing up in a
FORM post, more of a raw-socket post as far as I can tell from the
documentation. When I output the CGI structure seen by the webserver via the
Cold Fusion Template, I get the list attached at the bottom.

As you can see, 46K of some data is being detected but I don't know how to
access this data.  I also notice the request method is now set to POST
instead of GET.  Even though I loop from the form structure and the variable
fieldnames it doesn't see any named variables.  The java applet also has the
ability to transmit a header before the post, is there a way I can fake a
form header so this data does show up as a form field?

HTTP_CONTENT_LENGTH - 46840
HTTP_CONTENT_TYPE - application/octet-stream

These CGI variables show the 46K of data coming through...

Any ideas?

INSTRUCTIONS ON THE POST FORMAT:
==
this is the format of POST Data

P(1Byte Character)
Length of The header for CGI author(8byte Characters)
The header for CGI author
Length of Image(8byte Characters)
\r\n(CR LF)
Image data(format is PNG or JPEG)
Length of thumbnail(8byte Characters)
thumbnail(format is PING or JPEG or AnimationData)
Length of thumbnail2(8byte Characters)
thumbnail(format is PING or JPEG or AnimationData )

Length is not transmitted, either, when there is not thumbnail.

format of poo=true
0x
\r\n(CR LF)
Image data(format is PNG or JPEG)
Lnegth of thumbnaill(8byte characters)
thumbnail(format is PING or JPEG or AnimationData)


MY CGI ENVIRONMENT RECEIVED AFTER THE POST:
==
CF_TEMPLATE_PATH - d:\index.cfm
CONTENT_LENGTH - 46840
CONTENT_TYPE - application/octet-stream
GATEWAY_INTERFACE - CGI/1.1
HTTP_ACCEPT_LANGUAGE - en
HTTP_CONNECTION - close
HTTP_CONTENT_LENGTH - 46840
HTTP_CONTENT_TYPE - application/octet-stream
HTTP_HOST - 127.0.0.1
HTTP_REFERER - http://127.0.0.1/
HTTP_USER_AGENT - PaintBBS/2.x (Windows NT;5.0)
HTTPS - off
HTTPS_KEYSIZE -
HTTPS_SECRETKEYSIZE -
HTTPS_SERVER_ISSUER -
HTTPS_SERVER_SUBJECT -
QUERY_STRING - fuseaction=test
REMOTE_USER -
REQUEST_METHOD - POST
SERVER_NAME - 127.0.0.1
SERVER_PORT - 80
SERVER_PORT_SECURE - 0
SERVER_PROTOCOL - HTTP/1.0
SERVER_SOFTWARE - Microsoft-IIS/5.0
WEB_SERVER_API - ISAPI



~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Single user CF5 license available

2001-11-01 Thread Scott Brady

Ok, since you have to own CF Studio, are there plans to release a CF Express
version 5?  I'd heard the answer was "No" before, but then we were told that
the CF Server Evalaution reverts to a single user license after expiration.
But, I understand that the Server license doesn't allow you to use that for
development?

I own Homesite, but can't really afford CF Studio at this time (not having a
job and all).  What do I do for my development at home?  Use the illegal
single-server version? Stop all home development and use my web host as my
development server?

Scott

Scott Brady
http://www.scottbrady.net/
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: List of queries in a page

2001-11-01 Thread Pete Freitag

Turn on debugging, there is an option to list the queries and their SQL.

+
Pete Freitag ([EMAIL PROTECTED])
CFDEV.COM
ColdFusion Developer Resources
http://www.cfdev.com/
 

-Original Message-
From: Zac Belado [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 3:36 PM
To: CF-Talk
Subject: List of queries in a page


Anyone know of a way, simple or not, to get a full list of the queries used
in the generation of a page?

TIA


--

Zac Belado
Application Developer

Bayleaf Software
#300 948 Homer Street,
Vancouver, BC,
V6B 2W7
Ph: 604.683.1288 x 116

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Generator Issues

2001-11-01 Thread Philip Arnold - ASP

> Well this is odd since my outgoing message had actual text in it.

It's the "Crop Last Line From Message" syndrome

> What I meant to ask was "Does it happen in all browsers?".

Yup, Netscape and IE - it's actually the graphic that's generated - if we
open it in PhotoShop it's got a dapple effect on it

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
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: List of queries in a page

2001-11-01 Thread Bruce, Rodney

debug will display all queries that are ran.


-Original Message-
From: Koo Pai Lao [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 1:43 PM
To: CF-Talk
Subject: Re: List of queries in a page


you mean the names of the queries???








>From: "Zac Belado" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: CF-Talk <[EMAIL PROTECTED]>
>Subject: List of queries in a page
>Date: Thu, 1 Nov 2001 12:35:49 -0800
>
>Anyone know of a way, simple or not, to get a full list of the queries used
>in the generation of a page?
>
>TIA
>
>
>--
>
>Zac Belado
>Application Developer
>
>Bayleaf Software
>#300 948 Homer Street,
>Vancouver, BC,
>V6B 2W7
>Ph: 604.683.1288 x 116
>

~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Cold Fusion Error on Solaris

2001-11-01 Thread John Cummings

Steven,

I think you're running up against an OS issue here.You might try
appending the following to your /etc/system file:

set tcp:tcp_conn_hash_size=1048576 
set sq_max_size=1024 
set rlim_fd_max=4096 
set rlim_fd_cur=1024

Also, there are a couple of KB's that address this.   Take a look at:
http://www.allaire.com/Handlers/index.cfm?ID=11772&Method=Full

The default number of file descriptors on Solaris is *I think* still at
64.   You're basically just being told that the process can't have any
more files open because you've reached that limit.   If you increase the
limit, you should be fine.

Hope that helps.

John Cummings
Macromedia, Inc.
[EMAIL PROTECTED]
AIM: jcummings1974

-Original Message-
From: Steven Monaghan [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, November 01, 2001 12:20 PM
To: CF-Talk
Subject: Cold Fusion Error on Solaris

We have just taken over hosting of a Cold Fusion website in-house.  We
are
running on Solaris and have been live for just over 2 days without any
problems.  All of a sudden, everyone trying to connect to the site
received
the following error:

Unix error number 24 occurred: Too many open files

This was displayed in a standard Cold Fusion error format.  My Sysadmin
stopped and started the webserver running on the box, and the problem
was
resolved.  Anyone else had a similar problem and willing to offer some
guidance?

Thanks,
Steve
-
Steven Monaghan
Oracle DBA / Cold Fusion Developer
MSC Industrial Direct Co., Inc.
Melville, NY
[EMAIL PROTECTED]
http://www.mscdirect.com
-



This e-mail is intended for the use of the addressee(s) only and may
contain
privileged, confidential, or proprietary information that is exempt from
disclosure under law.  If you are not the intended recipient, please do
not
read, copy, use or disclose the contents of this communication to
others.
Please notify the sender that you have received this e-mail in error by
replying to the e-mail.  Please then delete the e-mail and destroy any

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT: online chat facilities

2001-11-01 Thread John Dowdell

At 6:57 AM 11/1/1, Katherine Maltby wrote:
> I'm needing another bit of help. We're looking for an online
> chat room programme. We don't really know anymore details than
> this at the moment, but I was wondering if anyone out there
> knew of any such thing that we could buy off the shelf?

No purchase necessary:
http://www.macromedia.com/software/director/download/power_aps/


Other implementations:
http://directory.google.com/Top/Computers/Software/Internet/Servers/Chat/


jd





John Dowdell, Macromedia Tech Support, San Francisco CA US
Search technotes: http://www.macromedia.com/support/search/
Offlist email risks capture by the spam filters. I may not see your
email if it's not on the list. Private one-on-one email options are
available via Priority Access: http://www.macromedia.com/support/

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Deleting a Query???

2001-11-01 Thread Philip Arnold - ASP

> Does anyone know if there is a way to delete query results,
> before the page
> is done processing???
> I have a couple of pages that compile info and send mass emails,
> but some of
> the queries are only needed for a short period, but (correct me if I am
> wrong) the results of those queries will stay in memory until the page is
> done.  Well, when one of the results can easily have over 50,000
> rows, that
> is a lot of memory that could be freed up and either speed up the other
> processes running, or allow more to be run simultaniously.  Any answer or
> push in the right direction would be VERY much appreciated.



It (should) replace the query in memory with an empty string... but I think
the template memory is held until the template has finished anyways

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

~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: List of queries in a page

2001-11-01 Thread Koo Pai Lao

you mean the names of the queries???








>From: "Zac Belado" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: CF-Talk <[EMAIL PROTECTED]>
>Subject: List of queries in a page
>Date: Thu, 1 Nov 2001 12:35:49 -0800
>
>Anyone know of a way, simple or not, to get a full list of the queries used
>in the generation of a page?
>
>TIA
>
>
>--
>
>Zac Belado
>Application Developer
>
>Bayleaf Software
>#300 948 Homer Street,
>Vancouver, BC,
>V6B 2W7
>Ph: 604.683.1288 x 116
>
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Studio 5 Install

2001-11-01 Thread Matthew Fusfield

John,
Just wanted to say thanks again for your assistance - we got UltraDev and
Studio installed and running just fine.

Thanks!

Matt Fusfield

-Original Message-
From: John Cummings [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 30, 2001 4:58 PM
To: CF-Talk
Subject: RE: Studio 5 Install


You shouldn't have to, no - but if you'll contact me off-line I'll see
if I can help get you to the right place.

John Cummings
ColdFusion Product Support
Macromedia, Inc.
[EMAIL PROTECTED]
AIM: jcummings1974

-Original Message-
From: Matthew Fusfield [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, October 30, 2001 4:54 PM
To: CF-Talk
Subject: RE: Studio 5 Install

John,
Thanks, I tried this and they insisted I need to contact tech support
for
installation assistance. Is there a specific wording that I need to use
to
describe the problem to them?

Thanks,

Matt

-Original Message-
From: John Cummings [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 30, 2001 4:37 PM
To: CF-Talk
Subject: RE: Studio 5 Install


Matt,

If you'll call 888-939-2545 and follow the prompts to get to customer
service, they should be able to point you to a direct FTP location so
long as you can provide them with your order # so they can verify
purchase.   Be aware though, that the number I'm giving you is Customer
Service in Newton.   6PM EST and later, I think these roll to SF (though
they can still probably help you there too!).

Good luck, and sorry you've had this much trouble so far.

John Cummings
ColdFusion Product Support
Macromedia, Inc.
[EMAIL PROTECTED]
AIM: jcummings1974

-Original Message-
From: Matthew Fusfield [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, October 30, 2001 4:24 PM
To: CF-Talk
Subject: RE: Studio 5 Install

Did you get it from the Macromedia store? Did it open a IE window during
the
install?

Thanks,
Matt

-Original Message-
From: Michael T. Tangorre [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 30, 2001 4:26 PM
To: CF-Talk
Subject: Re: Studio 5 Install


I have successfully installed it   :-)   I am running XP Pro on an
AlienWare
box  :-)  hhehehe, stellar box


- Original Message -
From: "Matthew Fusfield" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, October 30, 2001 4:16 PM
Subject: Studio 5 Install


> Has anyone successfully installed Studio 5? We purchased it from the
> Macromedia online store. It downloaded successfully, however, the
installer
> insists that I need to "acquire a license" and opens a webpage on
> ziplock.macromedia.com - however, the page returns a 404 Not Found and
the
> installer won't let me continue.
>
> Anyone from MM care to comment on why this is required and what I am
to do
> when it doesn't work?
>
> Thanks,
>
> Matt
>
> Matthew I. Fusfield
> Data Systems Development Manager
> InterActive Network Systems, Inc
> 856-227-4428 x15   [EMAIL PROTECTED]
> 





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



RE: Generator Issues [OT]

2001-11-01 Thread John Dowdell

At 10:45 AM 11/1/1, Philip Arnold - ASP wrote:
>Nobody got any ideas about this?
>Damn
>>
>> I know this is a CF list, but, what the hell... we can't get an
>> answer from
>> any of the Generator lists on this, so maybe one of you knows the answer

Sorry, I don't remember if there's a default palette for GIF compression. I
don't know which lists you tried, but the support contract included with
Macromedia Generator is one option, or the macromedia.generator newsgroup
is another.

jd






John Dowdell, Macromedia Tech Support, San Francisco CA US
Search technotes: http://www.macromedia.com/support/search/
Offlist email risks capture by the spam filters. I may not see your
email if it's not on the list. Private one-on-one email options are
available via Priority Access: http://www.macromedia.com/support/

~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Deleting a Query???

2001-11-01 Thread Dave Watts

> Does anyone know if there is a way to delete query results, 
> before the page is done processing??? I have a couple of pages 
> that compile info and send mass emails, but some of the queries 
> are only needed for a short period, but (correct me if I am
> wrong) the results of those queries will stay in memory until 
> the page is done. Well, when one of the results can easily have 
> over 50,000 rows, that is a lot of memory that could be freed 
> up and either speed up the other processes running, or allow 
> more to be run simultaniously. Any answer or push in the right 
> direction would be VERY much appreciated.

I'd guess that the resultset is retained in memory for the duration of the
page processing, but I don't know for sure - it's not unimaginable that the
parsing process notes when something is no longer needed as a basis for
garbage collection at runtime.

You might be able to flush the recordset from memory by simply overwriting
the variable:


..


However, ideally your page won't take so long to run that this makes any
significant difference. If your page is doing something that takes that
long, you should look at doing that within something else, and perhaps
triggering the start from CF. For example, if you're sending these mass
emails, and it takes a very long time to run, maybe you should handle the
mass emails from something else, and let your CF engine stick with what it
does best - generate HTML output dynamically.

Finally, I don't think you'll get more processes running as a result of
freeing the memory. With CF, you get a set number of threads that exist over
the life of the service. This is specified within the CF Administrator.
Those existing threads might execute more efficiently given the additional
free memory, though.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Terra Lycos using CF

2001-11-01 Thread Paris Lundis

indeed they are using it...

good find.


-Original Message-
From: Duane Boudreau [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 15:22
To: CF-Talk
Subject: RE: Terra Lycos using CF


Check the source out on http://www.terralycos.com/contact/cu_1_2.html





-Original Message-
From: Howie Hamlin [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 3:01 PM
To: CF-Talk
Subject: Re: Terra Lycos using CF


That only means that they have CF loaded on the server - not that they're
really using it...

Howie

- Original Message -
From: "BILLY CRAVENS" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, November 01, 2001 2:41 PM
Subject: Re: Terra Lycos using CF


> Yeah, but this means that they're running CF.  That error message is the
one
> CF throws when it can't find a template.
>



~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Terra Lycos using CF

2001-11-01 Thread Shawn Grover

I can get to the site if I don't specify the file... ie
http://www.terralycos.com

But from there I can't see anything that indicates they are using CF.  
Yes, they have CF installed (otherwise you'd get a different 404 error), but
it doesn't appear they are using it...
(then again, they might have mapped .html files to the CF server.)



-Original Message-
From: BILLY CRAVENS [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 12:42 PM
To: CF-Talk
Subject: Re: Terra Lycos using CF


Yeah, but this means that they're running CF.  That error message is the one
CF throws when it can't find a template.

- Original Message -
From: "Howie Hamlin" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, October 31, 2001 10:52 PM
Subject: Re: Terra Lycos using CF


> Error Occurred While Processing Request
>   Error Diagnostic Information
>   An error has occurred.
>
>
>   HTTP/1.0 404 Object Not Found
>
>
>
> - Original Message -
> From: "BT" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Wednesday, October 31, 2001 11:21 PM
> Subject: Terra Lycos using CF
>
>
> > http://www.terralycos.com/index.cfm
> >
> 

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



List of queries in a page

2001-11-01 Thread Zac Belado

Anyone know of a way, simple or not, to get a full list of the queries used
in the generation of a page?

TIA


--

Zac Belado
Application Developer

Bayleaf Software
#300 948 Homer Street,
Vancouver, BC,
V6B 2W7
Ph: 604.683.1288 x 116
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Cold Fusion Error on Solaris

2001-11-01 Thread Brunt, Michael

Steven, I would suggest looking in the ColdFusion logs to see if there are
any indications there.  I have personally not seen this error before but if
you have just taken over the ColdFusion app there can be
memory-threading/corruption issues in the ColdFusion code does not have
locking of shared scope variables.  This is a long-shot I hope it might help
you.

Mike Brunt
Sempra Energy
213.244.5226

"I have NOT lost my mind - I have it backed up on tape somewhere." 


-Original Message-
From: Steven Monaghan [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 9:20 AM
To: CF-Talk
Subject: Cold Fusion Error on Solaris


We have just taken over hosting of a Cold Fusion website in-house.  We are
running on Solaris and have been live for just over 2 days without any
problems.  All of a sudden, everyone trying to connect to the site received
the following error:

Unix error number 24 occurred: Too many open files

This was displayed in a standard Cold Fusion error format.  My Sysadmin
stopped and started the webserver running on the box, and the problem was
resolved.  Anyone else had a similar problem and willing to offer some
guidance?

Thanks,
Steve
-
Steven Monaghan
Oracle DBA / Cold Fusion Developer
MSC Industrial Direct Co., Inc.
Melville, NY
[EMAIL PROTECTED]
http://www.mscdirect.com
-



This e-mail is intended for the use of the addressee(s) only and may contain
privileged, confidential, or proprietary information that is exempt from
disclosure under law.  If you are not the intended recipient, please do not
read, copy, use or disclose the contents of this communication to others.
Please notify the sender that you have received this e-mail in error by
replying to the e-mail.  Please then delete the e-mail and destroy any

~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: The Case of the Disappearing Cookies

2001-11-01 Thread Dave Watts

> 1) Is their a machine-unique identification that can be sent 
> from each browser that cannot be deleted?

No, not within the normal use of HTML documents over HTTP. You could write
an ActiveX control to do this for you.

> 2) Is their a way to prevent someone from deleting cookies? I 
> think most of these machines are running Windows 98.

Not really, as long as the user has access to the console.

> 3) Is their a way to catch them in the act? It's possible that, 
> depending on what non-work related websites the staff are visiting, 
> our client would want to know and take appropriate action.

Sure. It's called logging. Assuming that the machines are on some kind of
shared connection to the internet, all traffic going through that connection
can generally be logged pretty easily. Proxy servers often do that, for
example. There's a huge demand for this kind of logging and filtering at
large enterprises and other places like schools and libraries, I'll bet.

Or, each machine can be configured with software to log (and even filter)
outgoing network traffic. There are plenty of commercial packages available
for this, I suspect, though I'm not very familiar with them. On an even more
casual note, these people probably aren't deleting their history, just their
cookies, so you could take a look at that.

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

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Terra Lycos using CF

2001-11-01 Thread Duane Boudreau

Check the source out on http://www.terralycos.com/contact/cu_1_2.html





-Original Message-
From: Howie Hamlin [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 3:01 PM
To: CF-Talk
Subject: Re: Terra Lycos using CF


That only means that they have CF loaded on the server - not that they're
really using it...

Howie

- Original Message -
From: "BILLY CRAVENS" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, November 01, 2001 2:41 PM
Subject: Re: Terra Lycos using CF


> Yeah, but this means that they're running CF.  That error message is the
one
> CF throws when it can't find a template.
>


~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Caching Queries

2001-11-01 Thread Carlisle, Eric

An application I am working with is really bogging down a database server.
Can anybody point out an online resource to the pros/cons of caching
queries?  Maybe I'm making this more than it is and it's not that
complicated.  I'm just wondering if caching queries is an eventuality for
web applications that get a lot of traffic.

Thanks,

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Email Question HELP! FOR BRUCE

2001-11-01 Thread Christian Watt

It has to do with the SMTP relaying options on you mail server.  Usually you
do not want to relay mail at all, that way your machine can not be used for
spaming.  So to protect against that, you mail server probably has to verify
the email address in the from field actually has an account on that machine.
Depending on the type of mail server you have, you may be able to set it up
to only recieve mail from certain IP addresses, that way an outside machine
can not use your machine as a mail server for spam (for the most part, but
we will not get into that) and you can have your CF server send mail that
does not have an account on that machine.

Christian Watt
Webmaster
SkillPath Seminars
[EMAIL PROTECTED]


-Original Message-
From: Koo Pai Lao [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 1:58 PM
To: CF-Talk
Subject: RE: Email Question HELP! FOR BRUCE


then how is this problem solved?  i mean, how does this list make it look 
like it was sent from you.  or hw about numerous other sites that do the 
same thing?







>From: "Bruce, Rodney" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: CF-Talk <[EMAIL PROTECTED]>
>Subject: RE: Email Question HELP!
>Date: Thu, 1 Nov 2001 12:54:22 -0700
>
>I had a similar problem
>
>It was the email server.  The email server would not forward any email if 
>it
>did not recognize the from address.  The from address had to be from an
>account on that server.
>
>
>-Original Message-
>From: Howie Hamlin [mailto:[EMAIL PROTECTED]]
>Sent: Thursday, November 01, 2001 12:49 PM
>To: CF-Talk
>Subject: Re: Email Question HELP!
>
>
>Most likely it is your mail server that is rejecting the mail if it is not
>from your account.  You can get more information in the
>cfmail logs.  You may want to check with your email server administrator.
>
>HTH,
>
>--
>Howie Hamlin - inFusion Project Manager
>On-Line Data Solutions, Inc. - www.CoolFusion.com  - 631-737-4668 x101
>inFusion Mail Server (iMS) - The Intelligent Mail Server
><<< Vote for iMS as the CFDJ Reader's Choice Awards Most Innovative Product
> >>>
>http://www.sys-con.com/coldfusion/readerschoice2001/nominationformbpa.cfm
> >>> Find out how iMS Stacks up to the competition:
>http://www.coolfusion.com/imssecomparison.cfm
>
>- Original Message -
>From: "Koo Pai Lao" <[EMAIL PROTECTED]>
>To: "CF-Talk" <[EMAIL PROTECTED]>
>Sent: Thursday, November 01, 2001 2:45 PM
>Subject: Email Question HELP!
>
>
> > hey guys, when an order is made, 2 emails are sent out.  the first email
> > goes to the customer, so [EMAIL PROTECTED] and
> > [EMAIL PROTECTED] The second email goes to me to notify me that
>an
> > order has been made.  However, it only works when my email is on the 
>from
> > attribute.  But i would like to know the customer's email immediately.  
>it
> > seems that if the FROM email doesn't exist in my account, then it wont
>send.
> >   But then how are other people able to do this? u know, practically 
>make
>up
> > any email address and make it send out???  is there some setting i
> > overlooked?  please hlep as this is urgent!
> >
> >
> >
>
>

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



FW: Deleting a Query???

2001-11-01 Thread Christian Watt

-Original Message-
From: Christian Watt 
Sent: Thursday, November 01, 2001 2:08 PM
To: '[EMAIL PROTECTED]'
Subject: Deleting a Query???


Does anyone know if there is a way to delete query results, before the page
is done processing???
I have a couple of pages that compile info and send mass emails, but some of
the queries are only needed for a short period, but (correct me if I am
wrong) the results of those queries will stay in memory until the page is
done.  Well, when one of the results can easily have over 50,000 rows, that
is a lot of memory that could be freed up and either speed up the other
processes running, or allow more to be run simultaniously.  Any answer or
push in the right direction would be VERY much appreciated.

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



Re: Terra Lycos using CF

2001-11-01 Thread Howie Hamlin

That only means that they have CF loaded on the server - not that they're really using 
it...

Howie

- Original Message - 
From: "BILLY CRAVENS" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, November 01, 2001 2:41 PM
Subject: Re: Terra Lycos using CF


> Yeah, but this means that they're running CF.  That error message is the one
> CF throws when it can't find a template.
> 

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Email Question HELP!

2001-11-01 Thread Fleischer, Beth

There is a custom tag to check for a valid email addy - you can use some
conditional logic to reset the email addy to something valid if its not.

> -Original Message-
> From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]]
> Sent: Thursday, November 01, 2001 10:53 AM
> To:   CF-Talk
> Subject:  Re: Email Question HELP!
> 
> I found that if I dont have a valid e-mail address in the FROM line, the
> mail will not send. I'm not sure about work-arounds.
> 
> CC
> 
> 
> 
> 
> Howie Hamlin <[EMAIL PROTECTED]> on 11/01/2001 01:49:06 PM
> 
> Please respond to [EMAIL PROTECTED]
> 
> To:   CF-Talk <[EMAIL PROTECTED]>
> cc:
> Subject:  Re: Email Question HELP!
> 
> 
> Most likely it is your mail server that is rejecting the mail if it is not
> from your account.  You can get more information in the
> cfmail logs.  You may want to check with your email server administrator.
> 
> HTH,
> 
> --
> Howie Hamlin - inFusion Project Manager
> On-Line Data Solutions, Inc. - www.CoolFusion.com  - 631-737-4668 x101
> inFusion Mail Server (iMS) - The Intelligent Mail Server
> <<< Vote for iMS as the CFDJ Reader's Choice Awards Most Innovative
> Product
> >>>
> http://www.sys-con.com/coldfusion/readerschoice2001/nominationformbpa.cfm
> >>> Find out how iMS Stacks up to the competition:
> http://www.coolfusion.com/imssecomparison.cfm
> 
> - Original Message -
> From: "Koo Pai Lao" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Thursday, November 01, 2001 2:45 PM
> Subject: Email Question HELP!
> 
> 
> > hey guys, when an order is made, 2 emails are sent out.  the first email
> > goes to the customer, so [EMAIL PROTECTED] and
> > [EMAIL PROTECTED] The second email goes to me to notify me that
> an
> > order has been made.  However, it only works when my email is on the
> from
> > attribute.  But i would like to know the customer's email immediately.
> it
> > seems that if the FROM email doesn't exist in my account, then it wont
> send.
> >   But then how are other people able to do this? u know, practically
> make
> up
> > any email address and make it send out???  is there some setting i
> > overlooked?  please hlep as this is urgent!
> >
> >
> >
> 
> 
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Email Question HELP! FOR BRUCE

2001-11-01 Thread Bruce, Rodney

Don't know about other sites.

All we did was set up an email account that is used by the server.
So you can give this account any name that will work with your email server.
When the server sends an automated email, this is the address that is in the
"FROM" attribute.
except for certain ones were my address or one of the other SAs address is
coded in.
When an email gets sent to this account it is automatically forwarded to me
and the other SAs.

To get the customers email address,  we just added it to the body of the
emails sent to us.

Hope this helps some
Other than getting the Administrator of the email server to change the
settings on the server.


-Original Message-
From: Koo Pai Lao [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 12:58 PM
To: CF-Talk
Subject: RE: Email Question HELP! FOR BRUCE


then how is this problem solved?  i mean, how does this list make it look 
like it was sent from you.  or hw about numerous other sites that do the 
same thing?







>From: "Bruce, Rodney" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: CF-Talk <[EMAIL PROTECTED]>
>Subject: RE: Email Question HELP!
>Date: Thu, 1 Nov 2001 12:54:22 -0700
>
>I had a similar problem
>
>It was the email server.  The email server would not forward any email if 
>it
>did not recognize the from address.  The from address had to be from an
>account on that server.
>
>
>-Original Message-
>From: Howie Hamlin [mailto:[EMAIL PROTECTED]]
>Sent: Thursday, November 01, 2001 12:49 PM
>To: CF-Talk
>Subject: Re: Email Question HELP!
>
>
>Most likely it is your mail server that is rejecting the mail if it is not
>from your account.  You can get more information in the
>cfmail logs.  You may want to check with your email server administrator.
>
>HTH,
>
>--
>Howie Hamlin - inFusion Project Manager
>On-Line Data Solutions, Inc. - www.CoolFusion.com  - 631-737-4668 x101
>inFusion Mail Server (iMS) - The Intelligent Mail Server
><<< Vote for iMS as the CFDJ Reader's Choice Awards Most Innovative Product
> >>>
>http://www.sys-con.com/coldfusion/readerschoice2001/nominationformbpa.cfm
> >>> Find out how iMS Stacks up to the competition:
>http://www.coolfusion.com/imssecomparison.cfm
>
>- Original Message -
>From: "Koo Pai Lao" <[EMAIL PROTECTED]>
>To: "CF-Talk" <[EMAIL PROTECTED]>
>Sent: Thursday, November 01, 2001 2:45 PM
>Subject: Email Question HELP!
>
>
> > hey guys, when an order is made, 2 emails are sent out.  the first email
> > goes to the customer, so [EMAIL PROTECTED] and
> > [EMAIL PROTECTED] The second email goes to me to notify me that
>an
> > order has been made.  However, it only works when my email is on the 
>from
> > attribute.  But i would like to know the customer's email immediately.  
>it
> > seems that if the FROM email doesn't exist in my account, then it wont
>send.
> >   But then how are other people able to do this? u know, practically 
>make
>up
> > any email address and make it send out???  is there some setting i
> > overlooked?  please hlep as this is urgent!
> >
> >
> >
>
>

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT: Managing DNS via a browser

2001-11-01 Thread Eric Dawson

yeah I just meant that I would "can" it. Very little control would be needed 
to be given to the end user.

ie Service On [chceckbox]
(and the free email service from everyone.net would be toggled on and off. 
everyone.net would require some basic DNS entries to enable the service. but 
the structure would be the same, for all domains.

Eric Dawson



From: "Jim McAtee" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: CF-Talk <[EMAIL PROTECTED]>
Subject: Re: OT: Managing DNS via a browser
Date: Thu, 1 Nov 2001 12:21:22 -0700

You're unlikely to find anything canned to do somehting like that.  If you
run BIND on Windows, your configuration files will be simple text files, so
modifying them with CFFILE is very simple.  Go to www.isc.org to download
BIND 8.2.5 or BIND 9 binaries for NT.  To do what you need, you'll just
modify the BIND configuration file, then create or modify a zone master
file.  Afterwards, you run a command-line EXE that reloads the DNS data.
This command-line tool is included in the BIND for NT distributions.

If you need a simple manual web interface, it's pretty simple to create one
in CF that lets you browse and edit these same files.  You need to
understand the format and syntax of the underlying files, however.

Jim


- Original Message -
From: "Eric Dawson" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, November 01, 2001 11:43 AM
Subject: Re: OT: Managing DNS via a browser


 > interested in taking a look. thanks. I am currently running MS DNS but
have
 > no reason why I need to be. I'm a penniless bum so I need to keep it 
cheap
 > though.
 >
 > The DNS entries I am looking to maintain are going to be about as simple
as
 > they can be. I'm not neccessarily interested in having a toolkit for
clients
 > to manage their DNS, but rather have canned DNS entries for the domains
 > ready to be added when a domain is registered.
 >
 > Specifically in fuzzy detail. I want to build a community site network,
open
 > source and freely distributed. at the core will be a hosting service that
is
 > built from the same engine that is freely distributed. I intend to offer 
a
 > free domain service for the community sites that subscribe to my hosting
 > service (hosting nominally priced to cover cost) - I am trying to get
 > alive.ca as the free domain (ie www.hamilton.alive.ca) but also support
 > domain registrations integrated in the administration toolkit if they 
want
 > to get their own name.
 >
 > I plan to plugin subscription services like everyone.net into the admin
 > toolkit for the community site network. (although I should set up my own
 > email services right Howie?)
 >
 > so if I understand what I want to do correctly, the DNS management can be
 > handled with a very simple user interface. ie turn Service on - turn
service
 > off. (and then on the backend we determine what the entries are going to
 > be).
 >
 > I wish I had a little extra time these days.
 >
 > Eric Dawson
 >
 > From: "Howie Hamlin" <[EMAIL PROTECTED]>
 > Reply-To: [EMAIL PROTECTED]
 > To: CF-Talk <[EMAIL PROTECTED]>
 > Subject: Re: OT: Managing DNS via a browser
 > Date: Thu, 1 Nov 2001 11:21:21 -0500
 >
 > True, but you need to know the proper format.  I know of  acompany that
 > created a typical boilerplate that they use for client
 > hosting and they use CF to fill in the proper values.
 >
 > One other thing - if you're using Bind on Windows then the service needs
to
 > be restarted for the changes to take affect.  We have a
 > freeware service control cfx if you need it.
 >
 > HTH,
 >
 > --
 > Howie Hamlin - inFusion Project Manager
 > On-Line Data Solutions, Inc. - www.CoolFusion.com  - 631-737-4668 x101
 > inFusion Mail Server (iMS) - The Intelligent Mail Server
 > <<< Vote for iMS as the CFDJ Reader's Choice Awards Most Innovative
Product
 >  >>>
 > http://www.sys-con.com/coldfusion/readerschoice2001/nominationformbpa.cfm
 >  >>> Find out how iMS Stacks up to the competition:
 > http://www.coolfusion.com/imssecomparison.cfm
 >
 > - Original Message -
 > From: "Eric Dawson" <[EMAIL PROTECTED]>
 > To: "CF-Talk" <[EMAIL PROTECTED]>
 > Sent: Thursday, November 01, 2001 11:18 AM
 > Subject: Re: OT: Managing DNS via a browser
 >
 >
 >  > I want this too!
 >  >
 >  > I think it might not be that tough ... the DNS records are jst in text
 > files
 >  > right?
 >  >
 >  > Eric Dawson
 >  >
 >
 >
 >

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CCBN

2001-11-01 Thread Carlisle, Eric

I assume you mean streaming.  You mean for webcasts?  for the most part,
good experiences.  

For other applications, it seems as if their development is in a state of
flux.  Might be the result of a resent merger.  It makes it a little
difficult to get consistancy accross their full line of products...  I trust
that will improve with time.  I will say this, though.  The customer service
is excellent.

EC

-Original Message-
From: Tracy Bost [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 2:48 PM
To: CF-Talk
Subject: CCBN


Am wondering if anyone has any dealings/experience with CCBN & steaming in
their
Investor's content.



~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Email Question HELP! FOR BRUCE

2001-11-01 Thread Koo Pai Lao

then how is this problem solved?  i mean, how does this list make it look 
like it was sent from you.  or hw about numerous other sites that do the 
same thing?







>From: "Bruce, Rodney" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: CF-Talk <[EMAIL PROTECTED]>
>Subject: RE: Email Question HELP!
>Date: Thu, 1 Nov 2001 12:54:22 -0700
>
>I had a similar problem
>
>It was the email server.  The email server would not forward any email if 
>it
>did not recognize the from address.  The from address had to be from an
>account on that server.
>
>
>-Original Message-
>From: Howie Hamlin [mailto:[EMAIL PROTECTED]]
>Sent: Thursday, November 01, 2001 12:49 PM
>To: CF-Talk
>Subject: Re: Email Question HELP!
>
>
>Most likely it is your mail server that is rejecting the mail if it is not
>from your account.  You can get more information in the
>cfmail logs.  You may want to check with your email server administrator.
>
>HTH,
>
>--
>Howie Hamlin - inFusion Project Manager
>On-Line Data Solutions, Inc. - www.CoolFusion.com  - 631-737-4668 x101
>inFusion Mail Server (iMS) - The Intelligent Mail Server
><<< Vote for iMS as the CFDJ Reader's Choice Awards Most Innovative Product
> >>>
>http://www.sys-con.com/coldfusion/readerschoice2001/nominationformbpa.cfm
> >>> Find out how iMS Stacks up to the competition:
>http://www.coolfusion.com/imssecomparison.cfm
>
>- Original Message -
>From: "Koo Pai Lao" <[EMAIL PROTECTED]>
>To: "CF-Talk" <[EMAIL PROTECTED]>
>Sent: Thursday, November 01, 2001 2:45 PM
>Subject: Email Question HELP!
>
>
> > hey guys, when an order is made, 2 emails are sent out.  the first email
> > goes to the customer, so [EMAIL PROTECTED] and
> > [EMAIL PROTECTED] The second email goes to me to notify me that
>an
> > order has been made.  However, it only works when my email is on the 
>from
> > attribute.  But i would like to know the customer's email immediately.  
>it
> > seems that if the FROM email doesn't exist in my account, then it wont
>send.
> >   But then how are other people able to do this? u know, practically 
>make
>up
> > any email address and make it send out???  is there some setting i
> > overlooked?  please hlep as this is urgent!
> >
> >
> >
>
>
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Windows 2000 fatal shutdown?

2001-11-01 Thread BILLY CRAVENS

Actually, turns out I was apparently drunk or something when I attached the
SCSI cable - I had the terminator end in the wrong place!

However, the box still hangs sometimes when going into Windows (when going
into the initial console based status bar) - haven't isolated that one yet.
Any ideas?

- Original Message -
From: "Conrad Classen" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, October 31, 2001 11:54 PM
Subject: RE: Windows 2000 fatal shutdown?


> Replace the Adaptec Controller. From what you are saying it
> Seems it may have a problem.
>
> Conrad
>
>
> -Original Message-
> From: BILLY CRAVENS [mailto:[EMAIL PROTECTED]]
> Sent: 31 October 2001 11:28
> To: CF-Talk
> Subject: OT: Windows 2000 fatal shutdown?
>
>
> Sorry for the off-topic post, but I know that there's more than a
> handful of
> gurus on the list, so I thought I'd throw this one at you.
>
> I have a Windows 2000 server, up to date on service packs/patches,
> running
> CF5 Pro (updated), SQL Server 2000, IIS of course, and Post.Office mail
> server (eventually I'll break things out into separate boxes).
>
> My problem is that the box runs for a while, then shuts down - and
> doesn't
> recover.  Usually I receive a hard drive error when rebooting.  (The
> harddrive is an 18GB SCSI IBM - 29180 Adaptec card) If I do a restart
> (sometimes multiple), it will come back up, until it goes down again.
> I've
> seen what happens once (this is a co-lo'ed box) - I don't have the exact
>
> text of the error message, but it's something about a services.exe
> crash,
> with an error code of 128.  The box then shuts down 30 seconds later.
>
> I've replaced the mobo, cpu, harddrive, and put additional cooling on
> the
> hard drive, and still no luck.  Any ideas?  I'm going crazy with this
> box!
>
> Thanks in advance,
>
> Billy Cravens
>
>
>
> 
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Email Question HELP!

2001-11-01 Thread ccook22

I found that if I dont have a valid e-mail address in the FROM line, the
mail will not send. I'm not sure about work-arounds.

CC




Howie Hamlin <[EMAIL PROTECTED]> on 11/01/2001 01:49:06 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk <[EMAIL PROTECTED]>
cc:
Subject:  Re: Email Question HELP!


Most likely it is your mail server that is rejecting the mail if it is not
from your account.  You can get more information in the
cfmail logs.  You may want to check with your email server administrator.

HTH,

--
Howie Hamlin - inFusion Project Manager
On-Line Data Solutions, Inc. - www.CoolFusion.com  - 631-737-4668 x101
inFusion Mail Server (iMS) - The Intelligent Mail Server
<<< Vote for iMS as the CFDJ Reader's Choice Awards Most Innovative Product
>>>
http://www.sys-con.com/coldfusion/readerschoice2001/nominationformbpa.cfm
>>> Find out how iMS Stacks up to the competition:
http://www.coolfusion.com/imssecomparison.cfm

- Original Message -
From: "Koo Pai Lao" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, November 01, 2001 2:45 PM
Subject: Email Question HELP!


> hey guys, when an order is made, 2 emails are sent out.  the first email
> goes to the customer, so [EMAIL PROTECTED] and
> [EMAIL PROTECTED] The second email goes to me to notify me that
an
> order has been made.  However, it only works when my email is on the from
> attribute.  But i would like to know the customer's email immediately.
it
> seems that if the FROM email doesn't exist in my account, then it wont
send.
>   But then how are other people able to do this? u know, practically make
up
> any email address and make it send out???  is there some setting i
> overlooked?  please hlep as this is urgent!
>
>
>

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CCBN

2001-11-01 Thread Robert Everland

I built frames around them. There is another company called shareholder.com
I have been looking into. They do pretty much the same thing for the same
amount of money and more depending on what service they get. The advantage
of them is they are a CF shop, so you will have more luck formatting thier
data.

Robert Everland III
Dixon Ticonderoga
Web Developer Extraordinaire

-Original Message-
From: Tracy Bost [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 2:48 PM
To: CF-Talk
Subject: CCBN


Am wondering if anyone has any dealings/experience with CCBN & steaming in
their
Investor's content.



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



Re: Terra Lycos using CF

2001-11-01 Thread BILLY CRAVENS

Yeah, but this means that they're running CF.  That error message is the one
CF throws when it can't find a template.

- Original Message -
From: "Howie Hamlin" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, October 31, 2001 10:52 PM
Subject: Re: Terra Lycos using CF


> Error Occurred While Processing Request
>   Error Diagnostic Information
>   An error has occurred.
>
>
>   HTTP/1.0 404 Object Not Found
>
>
>
> - Original Message -
> From: "BT" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Wednesday, October 31, 2001 11:21 PM
> Subject: Terra Lycos using CF
>
>
> > http://www.terralycos.com/index.cfm
> >
> 
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Email Question HELP!

2001-11-01 Thread Bruce, Rodney

I had a similar problem

It was the email server.  The email server would not forward any email if it
did not recognize the from address.  The from address had to be from an
account on that server.


-Original Message-
From: Howie Hamlin [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 12:49 PM
To: CF-Talk
Subject: Re: Email Question HELP!


Most likely it is your mail server that is rejecting the mail if it is not
from your account.  You can get more information in the
cfmail logs.  You may want to check with your email server administrator.

HTH,

--
Howie Hamlin - inFusion Project Manager
On-Line Data Solutions, Inc. - www.CoolFusion.com  - 631-737-4668 x101
inFusion Mail Server (iMS) - The Intelligent Mail Server
<<< Vote for iMS as the CFDJ Reader's Choice Awards Most Innovative Product
>>>
http://www.sys-con.com/coldfusion/readerschoice2001/nominationformbpa.cfm
>>> Find out how iMS Stacks up to the competition:
http://www.coolfusion.com/imssecomparison.cfm

- Original Message -
From: "Koo Pai Lao" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, November 01, 2001 2:45 PM
Subject: Email Question HELP!


> hey guys, when an order is made, 2 emails are sent out.  the first email
> goes to the customer, so [EMAIL PROTECTED] and
> [EMAIL PROTECTED] The second email goes to me to notify me that
an
> order has been made.  However, it only works when my email is on the from
> attribute.  But i would like to know the customer's email immediately.  it
> seems that if the FROM email doesn't exist in my account, then it wont
send.
>   But then how are other people able to do this? u know, practically make
up
> any email address and make it send out???  is there some setting i
> overlooked?  please hlep as this is urgent!
>
>
> 

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Generator Issues

2001-11-01 Thread Zac Belado

Well this is odd since my outgoing message had actual text in it.

What I meant to ask was "Does it happen in all browsers?".

> -Original Message-
> From: Zac Belado [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, November 01, 2001 11:16 AM
> To: CF-Talk
> Subject: RE: Generator Issues
> 
> 
> > Nobody got any ideas about this?
> > Damn
> 
> 
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Email Question HELP!

2001-11-01 Thread Howie Hamlin

Most likely it is your mail server that is rejecting the mail if it is not from your 
account.  You can get more information in the
cfmail logs.  You may want to check with your email server administrator.

HTH,

--
Howie Hamlin - inFusion Project Manager
On-Line Data Solutions, Inc. - www.CoolFusion.com  - 631-737-4668 x101
inFusion Mail Server (iMS) - The Intelligent Mail Server
<<< Vote for iMS as the CFDJ Reader's Choice Awards Most Innovative Product >>>
http://www.sys-con.com/coldfusion/readerschoice2001/nominationformbpa.cfm
>>> Find out how iMS Stacks up to the competition: 
>http://www.coolfusion.com/imssecomparison.cfm

- Original Message -
From: "Koo Pai Lao" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, November 01, 2001 2:45 PM
Subject: Email Question HELP!


> hey guys, when an order is made, 2 emails are sent out.  the first email
> goes to the customer, so [EMAIL PROTECTED] and
> [EMAIL PROTECTED] The second email goes to me to notify me that an
> order has been made.  However, it only works when my email is on the from
> attribute.  But i would like to know the customer's email immediately.  it
> seems that if the FROM email doesn't exist in my account, then it wont send.
>   But then how are other people able to do this? u know, practically make up
> any email address and make it send out???  is there some setting i
> overlooked?  please hlep as this is urgent!
>
>
> 
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



The Case of the Disappearing Cookies

2001-11-01 Thread Dave Babbitt

Hi Guys!

We run an Application Service for a collection of group homes. These group
homes are manned 24/7 and the staff use our application to clock in and out.

Maybe this wasn't the greatest idea, but I have implemented a system of
cookies to track logins and clockins. When someone accesses our server, the
CFID and CFTOKEN cookies are set, of course. When someone logs in, the
USER_INFO cookie is set. When they log out, the USER_INFO cookie is deleted.

In addition, in order to facilitate categorizing the time entries, three
cookies are set up on each machine being used to clock in and out of:
MACHINE_COST_CENTER, MACHINE_HOURS_TYPE, and MACHINE_LOCATION. The cookies
are never deleted in my code - either through JavaScript or using
. Whenever these cookies are missing or not correctly set, an
email is sent to me with as much debug information as I can get.

The problem I am having is that at different times and at different group
homes, someone will not be able to clock in, even though their supervisor
set up the machine earlier in the week. And the email I receive reveals that
the CFID and CFTOKEN cookies are set, and the USER_INFO cookie is set, but
the MACHINE_COST_CENTER, MACHINE_HOURS_TYPE, and MACHINE_LOCATION cookies
are missing. I have to do some more research to be sure, but it seems like
the only machines that lose some of their cookies are machines tucked away
in group homes, not in office settings.

What I suspect is that someone on the previous shift is visiting non-work
related websites and deleting all the cookies that were modified on their
shift. The next person logging in would then recreate all but the machine
cookies, but then trying to clock in, would get the error.

Questions:
1) Is their a machine-unique identification that can be sent from each
browser that cannot be deleted?
2) Is their a way to prevent someone from deleting cookies? I think most of
these machines are running Windows 98.
3) Is their a way to catch them in the act? It's possible that, depending on
what non-work related websites the staff are visiting, our client would want
to know and take appropriate action.

Thanx

Dave
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CCBN

2001-11-01 Thread Tracy Bost

Am wondering if anyone has any dealings/experience with CCBN & steaming in
their
Investor's content.


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



Email Question HELP!

2001-11-01 Thread Koo Pai Lao

hey guys, when an order is made, 2 emails are sent out.  the first email 
goes to the customer, so [EMAIL PROTECTED] and 
[EMAIL PROTECTED] The second email goes to me to notify me that an 
order has been made.  However, it only works when my email is on the from 
attribute.  But i would like to know the customer's email immediately.  it 
seems that if the FROM email doesn't exist in my account, then it wont send. 
  But then how are other people able to do this? u know, practically make up 
any email address and make it send out???  is there some setting i 
overlooked?  please hlep as this is urgent!


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



RE: CFFILE time out

2001-11-01 Thread Bruce, Rodney

I'm not sure were it was timing out.
Signed on today and files are uploading without a problem.
Nothing has changed as far as I can tell.
I hate ghost problems ;(

Thanks for all the suggestions




-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 31, 2001 4:08 PM
To: CF-Talk
Subject: Re: CFFILE time out


Bruce, Rodney wrote:

> Not sure, but it's also timing out too fast for the IIS time out


So how did you determine it was a CF timeout and not something else 
(browser/proxy timeout, maxsize set in IIS etc)? What is the error you get.

Jochem

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT: Managing DNS via a browser

2001-11-01 Thread Clint Tredway

Thanks for all the info guys. I have an example file and I have the location of the 
registry entries that I will need to create.

I am putting an interface together as we speak. I will release the code when I am done.

Thanks!

-- Original Message --
from: "Jim McAtee" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
date: Thu, 1 Nov 2001 12:21:22 -0700

You're unlikely to find anything canned to do somehting like that.  If you
run BIND on Windows, your configuration files will be simple text files, so
modifying them with CFFILE is very simple.  Go to www.isc.org to download
BIND 8.2.5 or BIND 9 binaries for NT.  To do what you need, you'll just
modify the BIND configuration file, then create or modify a zone master
file.  Afterwards, you run a command-line EXE that reloads the DNS data.
This command-line tool is included in the BIND for NT distributions.

If you need a simple manual web interface, it's pretty simple to create one
in CF that lets you browse and edit these same files.  You need to
understand the format and syntax of the underlying files, however.

Jim


- Original Message -
From: "Eric Dawson" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, November 01, 2001 11:43 AM
Subject: Re: OT: Managing DNS via a browser


> interested in taking a look. thanks. I am currently running MS DNS but
have
> no reason why I need to be. I'm a penniless bum so I need to keep it cheap
> though.
>
> The DNS entries I am looking to maintain are going to be about as simple
as
> they can be. I'm not neccessarily interested in having a toolkit for
clients
> to manage their DNS, but rather have canned DNS entries for the domains
> ready to be added when a domain is registered.
>
> Specifically in fuzzy detail. I want to build a community site network,
open
> source and freely distributed. at the core will be a hosting service that
is
> built from the same engine that is freely distributed. I intend to offer a
> free domain service for the community sites that subscribe to my hosting
> service (hosting nominally priced to cover cost) - I am trying to get
> alive.ca as the free domain (ie www.hamilton.alive.ca) but also support
> domain registrations integrated in the administration toolkit if they want
> to get their own name.
>
> I plan to plugin subscription services like everyone.net into the admin
> toolkit for the community site network. (although I should set up my own
> email services right Howie?)
>
> so if I understand what I want to do correctly, the DNS management can be
> handled with a very simple user interface. ie turn Service on - turn
service
> off. (and then on the backend we determine what the entries are going to
> be).
>
> I wish I had a little extra time these days.
>
> Eric Dawson
>
> From: "Howie Hamlin" <[EMAIL PROTECTED]>
> Reply-To: [EMAIL PROTECTED]
> To: CF-Talk <[EMAIL PROTECTED]>
> Subject: Re: OT: Managing DNS via a browser
> Date: Thu, 1 Nov 2001 11:21:21 -0500
>
> True, but you need to know the proper format.  I know of  acompany that
> created a typical boilerplate that they use for client
> hosting and they use CF to fill in the proper values.
>
> One other thing - if you're using Bind on Windows then the service needs
to
> be restarted for the changes to take affect.  We have a
> freeware service control cfx if you need it.
>
> HTH,
>
> --
> Howie Hamlin - inFusion Project Manager
> On-Line Data Solutions, Inc. - www.CoolFusion.com  - 631-737-4668 x101
> inFusion Mail Server (iMS) - The Intelligent Mail Server
> <<< Vote for iMS as the CFDJ Reader's Choice Awards Most Innovative
Product
>  >>>
> http://www.sys-con.com/coldfusion/readerschoice2001/nominationformbpa.cfm
>  >>> Find out how iMS Stacks up to the competition:
> http://www.coolfusion.com/imssecomparison.cfm
>
> - Original Message -
> From: "Eric Dawson" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Thursday, November 01, 2001 11:18 AM
> Subject: Re: OT: Managing DNS via a browser
>
>
>  > I want this too!
>  >
>  > I think it might not be that tough ... the DNS records are jst in text
> files
>  > right?
>  >
>  > Eric Dawson
>  >
>
>
> 

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



Re: OT: Managing DNS via a browser

2001-11-01 Thread Jim McAtee

You're unlikely to find anything canned to do somehting like that.  If you
run BIND on Windows, your configuration files will be simple text files, so
modifying them with CFFILE is very simple.  Go to www.isc.org to download
BIND 8.2.5 or BIND 9 binaries for NT.  To do what you need, you'll just
modify the BIND configuration file, then create or modify a zone master
file.  Afterwards, you run a command-line EXE that reloads the DNS data.
This command-line tool is included in the BIND for NT distributions.

If you need a simple manual web interface, it's pretty simple to create one
in CF that lets you browse and edit these same files.  You need to
understand the format and syntax of the underlying files, however.

Jim


- Original Message -
From: "Eric Dawson" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, November 01, 2001 11:43 AM
Subject: Re: OT: Managing DNS via a browser


> interested in taking a look. thanks. I am currently running MS DNS but
have
> no reason why I need to be. I'm a penniless bum so I need to keep it cheap
> though.
>
> The DNS entries I am looking to maintain are going to be about as simple
as
> they can be. I'm not neccessarily interested in having a toolkit for
clients
> to manage their DNS, but rather have canned DNS entries for the domains
> ready to be added when a domain is registered.
>
> Specifically in fuzzy detail. I want to build a community site network,
open
> source and freely distributed. at the core will be a hosting service that
is
> built from the same engine that is freely distributed. I intend to offer a
> free domain service for the community sites that subscribe to my hosting
> service (hosting nominally priced to cover cost) - I am trying to get
> alive.ca as the free domain (ie www.hamilton.alive.ca) but also support
> domain registrations integrated in the administration toolkit if they want
> to get their own name.
>
> I plan to plugin subscription services like everyone.net into the admin
> toolkit for the community site network. (although I should set up my own
> email services right Howie?)
>
> so if I understand what I want to do correctly, the DNS management can be
> handled with a very simple user interface. ie turn Service on - turn
service
> off. (and then on the backend we determine what the entries are going to
> be).
>
> I wish I had a little extra time these days.
>
> Eric Dawson
>
> From: "Howie Hamlin" <[EMAIL PROTECTED]>
> Reply-To: [EMAIL PROTECTED]
> To: CF-Talk <[EMAIL PROTECTED]>
> Subject: Re: OT: Managing DNS via a browser
> Date: Thu, 1 Nov 2001 11:21:21 -0500
>
> True, but you need to know the proper format.  I know of  acompany that
> created a typical boilerplate that they use for client
> hosting and they use CF to fill in the proper values.
>
> One other thing - if you're using Bind on Windows then the service needs
to
> be restarted for the changes to take affect.  We have a
> freeware service control cfx if you need it.
>
> HTH,
>
> --
> Howie Hamlin - inFusion Project Manager
> On-Line Data Solutions, Inc. - www.CoolFusion.com  - 631-737-4668 x101
> inFusion Mail Server (iMS) - The Intelligent Mail Server
> <<< Vote for iMS as the CFDJ Reader's Choice Awards Most Innovative
Product
>  >>>
> http://www.sys-con.com/coldfusion/readerschoice2001/nominationformbpa.cfm
>  >>> Find out how iMS Stacks up to the competition:
> http://www.coolfusion.com/imssecomparison.cfm
>
> - Original Message -
> From: "Eric Dawson" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Thursday, November 01, 2001 11:18 AM
> Subject: Re: OT: Managing DNS via a browser
>
>
>  > I want this too!
>  >
>  > I think it might not be that tough ... the DNS records are jst in text
> files
>  > right?
>  >
>  > Eric Dawson
>  >
>
>
> 
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Goodbye Advanced Security, hello Session Params and eh.. hell o list!

2001-11-01 Thread Joseph DeVore

FYI: Fusebox 3.0 spec is out now (the Fusebox book mentioned below was 1.0)

You can read more about here:
http://www.fusebox.org/index.cfm?fuseaction=specs.fusebox30

IMO, start using FB3 today!


Joseph DeVore
VeloxWeb Technologies




-Original Message-
From: Brunt, Michael [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 9:39 AM
To: CF-Talk
Subject: RE: Goodbye Advanced Security, hello Session Params and eh..
hell o list!


Fusebox has what I believe is a really good way to manage
Users-Groups-Content Access/Control, it actually works and you can use any
SQL or LDAP User-Group structure as the base (yes including MS Access). I
recommend getting hold of a great book on Fusebox called "Fusebox
Methodology and Techniques" you can get this is either printed and .pdf
format.  http://www.fusebox.org is another great source and the specific
fusebox files that enable Users-Groups-Content Access/Control are typically
called app_login.cfm and app_secure.cfm.

Mike Brunt
Sempra Energy
213.244.5226

"I have NOT lost my mind - I have it backed up on tape somewhere."


-Original Message-
From: Tage Widsell [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 7:17 AM
To: CF-Talk
Subject: Re: Goodbye Advanced Security, hello Session Params and eh..
hello list!


on 01-11-01 16.10, Jochem van Dieten at [EMAIL PROTECTED] wrote:

> Tage Widsell wrote:
>
>> Hi,
>>
>> After weeks of struggling to get Advanced Security to run with Access in
>> ColdFusion 5, i have given up. It works like a charm in CF 4.0.1, but not
>> with the new version. Allaire, sorry, Macromedia support have suggested
that
>> Advanced Security in CF 5 simply doesn't work with Access.
>
>
> It even says so in the manual.
>

Ok. Support just told me the same thing. I feel stupid now.

>
>> Time to create a customized session handling and security system to use
our
>> MySQL server instead. My plan is to use session variables to keep track
of
>> what users are allowed where, but I seem to recall a few concerns about
>> relying on session variables for this from my last time on the list about
a
>> year ago. Is there something that I should keep in mind while doing this?
>
>
> What exactly are your security needs? Obviously sandboxing can't be
> handled with session variables. What scenario would be your worst
nightmare?
>

We don't use sandboxing. I need a role based log-in system that enables me
to control what information goes where. We have groups like allUsers,
RegisteredUser, betaTesters, admins and registered owners of our products.
Apart from the basic server security that wouldn't be handled by this system
- to stop people from breaking into the server and modify/damage data, the
nightmare would be if someone could find a way to pose as a site admin and
get access to product registration, serial numbers etc.



>
>> Also, one of the problems I had in 4.0.1 was locking the shared scope
>> variables. This seems to be much more efficient in CF 5, but I also found
>> the option to run Single Threaded Sessions. This seems like a very easy
>> solution. Would this affect performance a lot?
>
>
> Yes.
>

So I would be stupid not to set  around every shared variable? Ouch.

/Tage



~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT:

2001-11-01 Thread Howie Hamlin

- Original Message -
From: "Eric Dawson" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, November 01, 2001 2:06 PM
Subject: Re: OT: 


> Howie:
>
> changing gears - I thought you had plans at one point in time to do the
> samething to FTP what you did to the mail server ...
>

Yes, we've kicked around the idea of an ftp server and an nntp server.

> caught my attention. was this a backburner or bad idea? Or am I crazy?

Yes / no / maybe 

Seriously, though, we put these things on hold while we were developing the latest 
version of iMS.  Now that it is released we can
move on to other ideas.  We've had more call for the nntp server as of late...

Regards,

Howie

>
> Eric Dawson
>
>
>
> 
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Generator Issues

2001-11-01 Thread Zac Belado

> Nobody got any ideas about this?
> Damn

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT:

2001-11-01 Thread Eric Dawson

Howie:

changing gears - I thought you had plans at one point in time to do the 
samething to FTP what you did to the mail server ...

caught my attention. was this a backburner or bad idea? Or am I crazy?

Eric Dawson



~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: ### Output all variables?

2001-11-01 Thread Eric Dawson

this is great.

Eric Dawson



From: Aidan Whitehall <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: CF-Talk <[EMAIL PROTECTED]>
Subject: RE: ### Output all variables?
Date: Thu, 1 Nov 2001 17:49:41 -

 > Anyone know of a quick and dirty way to just show all variables that
 > were passed from a previous page?

Save this as OnRequestEnd.cfm.

You'll also need to have CF_SHOW somewhere in your application and alter the
path to it (ie to whereever you end up putting it on your machine).








Application Variables


   #Variables.Key#: #Evaluate("Application." & Variables.Key)#




Client Variables


   There are no client variables

   
  #Key#: #Evaluate("Client." & Variables.Key)#
   




Session Variables





   



   There are no session variables

   
   

   
   
  
 
#Key#: #session[Key]#
 
  
 
#Key#

 
  
   
   




Cookies


   There are no cookies set.

   
  
 #Trim(ListFirst(Variables.VariableValue, "="))#:
#Trim(ListLast(Variables.VariableValue, "="))#
  
   







   
   

   
  
   


   

   URL Variables

   
  There are no URL variables
   
  
 URL.#Key#: #URL[Key]#
  
   




Form Variables


   There are no form variables

   
  Form.#Key#: #Evaluate("Form." & Key)#
   





--
Aidan Whitehall <[EMAIL PROTECTED]>
Macromedia ColdFusion Developer
Fairbanks Environmental +44 (0)1695 51775



~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT: Managing DNS via a browser

2001-11-01 Thread Howie Hamlin

- Original Message -
From: "Eric Dawson" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, November 01, 2001 1:43 PM
Subject: Re: OT: Managing DNS via a browser


> interested in taking a look. thanks. I am currently running MS DNS but have
> no reason why I need to be. I'm a penniless bum so I need to keep it cheap
> though.
>

There are free Windows implementations of Bind as well...

> The DNS entries I am looking to maintain are going to be about as simple as
> they can be. I'm not neccessarily interested in having a toolkit for clients
> to manage their DNS, but rather have canned DNS entries for the domains
> ready to be added when a domain is registered.
>
> Specifically in fuzzy detail. I want to build a community site network, open
> source and freely distributed. at the core will be a hosting service that is
> built from the same engine that is freely distributed. I intend to offer a
> free domain service for the community sites that subscribe to my hosting
> service (hosting nominally priced to cover cost) - I am trying to get
> alive.ca as the free domain (ie www.hamilton.alive.ca) but also support
> domain registrations integrated in the administration toolkit if they want
> to get their own name.
>
> I plan to plugin subscription services like everyone.net into the admin
> toolkit for the community site network. (although I should set up my own
> email services right Howie?)
>

Yes, absolutely :-)

And, so that you have good Karma all around you need to vote for iMS in the CFDJ Most 
Innovative category 

> so if I understand what I want to do correctly, the DNS management can be
> handled with a very simple user interface. ie turn Service on - turn service
> off. (and then on the backend we determine what the entries are going to
> be).
>

Yes, I think so.  The company that I know doing this schedules their DNS server to 
restart every 1/2 hour although
cfx_servicecontrol can do the restart whenever you want.

> I wish I had a little extra time these days.
>

Ha, don't we all!

Regards,

Howie


> Eric Dawson
>

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



RE: [OT] Frustrating IE window.open popup delay...

2001-11-01 Thread Gary P. McNeel, Jr.

I have similar problem with 5.5. Happened after an update. When I select
text in the browsers to copy and right click for the little menu, takes
forever to come up, like 5-10 seconds. Same with initial launch, takes a bit
to find the site, like something is initializing and taking a long time.

-Gary

> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, November 01, 2001 12:53 PM
> To: CF-Talk
> Subject: RE: [OT] Frustrating IE window.open popup delay...
>
>
> I'm running IE 6, no luck. If I had to guess, I'd bet it's some low
> level component that IE6 didn't upgrade.
>
> ===
> Raymond Camden, Principal Spectra Compliance Engineer for Macromedia
>
> Email: [EMAIL PROTECTED]
> Yahoo IM : morpheus
>
> "My ally is the Force, and a powerful ally it is." - Yoda
>
> > -Original Message-
> > From: Joseph DeVore [mailto:[EMAIL PROTECTED]]
> > Sent: Thursday, November 01, 2001 1:44 PM
> > To: CF-Talk
> > Subject: RE: [OT] Frustrating IE window.open popup delay...
> >
> >
> > I had the same problem but once I upgraded to 6.0.2600 it was fixed
> >
> 
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Generator Issues

2001-11-01 Thread Philip Arnold - ASP

Nobody got any ideas about this?
Damn

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


> -Original Message-
> From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]]
> Sent: 31 October 2001 10:55
> To: CF-Talk
> Subject: OT: Generator Issues
>
>
> I know this is a CF list, but, what the hell... we can't get an
> answer from
> any of the Generator lists on this, so maybe one of you knows the answer
>
> We're trying to use Generator to make on-the-fly graphics (mainly
> GIFs) for
> the a client's site - menu buttons...
>
> Anyways, the problem we're having is that no matter what settings
> we use for
> the pallette, it tends to "dapple" the colors when we specify certain RGB
> colors, specifically #627D92
>
> Normally this wouldn't be a problem, but since these are extensions of the
> design, having a different color is a bit ugly
>
> Has anyone else run into this problem and have a possible solution?
>
> If you need any further info then I'll get the Generator guy here
> to give me
> a full break-down
>
> TIA
>
> 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.
> **
>
> 
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: [OT] Frustrating IE window.open popup delay...

2001-11-01 Thread Raymond Camden

I'm running IE 6, no luck. If I had to guess, I'd bet it's some low
level component that IE6 didn't upgrade. 

===
Raymond Camden, Principal Spectra Compliance Engineer for Macromedia

Email: [EMAIL PROTECTED]
Yahoo IM : morpheus

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

> -Original Message-
> From: Joseph DeVore [mailto:[EMAIL PROTECTED]] 
> Sent: Thursday, November 01, 2001 1:44 PM
> To: CF-Talk
> Subject: RE: [OT] Frustrating IE window.open popup delay...
> 
> 
> I had the same problem but once I upgraded to 6.0.2600 it was fixed
> 
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT: Managing DNS via a browser

2001-11-01 Thread Eric Dawson

interested in taking a look. thanks. I am currently running MS DNS but have 
no reason why I need to be. I'm a penniless bum so I need to keep it cheap 
though.

The DNS entries I am looking to maintain are going to be about as simple as 
they can be. I'm not neccessarily interested in having a toolkit for clients 
to manage their DNS, but rather have canned DNS entries for the domains 
ready to be added when a domain is registered.

Specifically in fuzzy detail. I want to build a community site network, open 
source and freely distributed. at the core will be a hosting service that is 
built from the same engine that is freely distributed. I intend to offer a 
free domain service for the community sites that subscribe to my hosting 
service (hosting nominally priced to cover cost) - I am trying to get 
alive.ca as the free domain (ie www.hamilton.alive.ca) but also support 
domain registrations integrated in the administration toolkit if they want 
to get their own name.

I plan to plugin subscription services like everyone.net into the admin 
toolkit for the community site network. (although I should set up my own 
email services right Howie?)

so if I understand what I want to do correctly, the DNS management can be 
handled with a very simple user interface. ie turn Service on - turn service 
off. (and then on the backend we determine what the entries are going to 
be).

I wish I had a little extra time these days.

Eric Dawson

From: "Howie Hamlin" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: CF-Talk <[EMAIL PROTECTED]>
Subject: Re: OT: Managing DNS via a browser
Date: Thu, 1 Nov 2001 11:21:21 -0500

True, but you need to know the proper format.  I know of  acompany that 
created a typical boilerplate that they use for client
hosting and they use CF to fill in the proper values.

One other thing - if you're using Bind on Windows then the service needs to 
be restarted for the changes to take affect.  We have a
freeware service control cfx if you need it.

HTH,

--
Howie Hamlin - inFusion Project Manager
On-Line Data Solutions, Inc. - www.CoolFusion.com  - 631-737-4668 x101
inFusion Mail Server (iMS) - The Intelligent Mail Server
<<< Vote for iMS as the CFDJ Reader's Choice Awards Most Innovative Product 
 >>>
http://www.sys-con.com/coldfusion/readerschoice2001/nominationformbpa.cfm
 >>> Find out how iMS Stacks up to the competition: 
http://www.coolfusion.com/imssecomparison.cfm

- Original Message -
From: "Eric Dawson" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, November 01, 2001 11:18 AM
Subject: Re: OT: Managing DNS via a browser


 > I want this too!
 >
 > I think it might not be that tough ... the DNS records are jst in text 
files
 > right?
 >
 > Eric Dawson
 >


~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: ### Output all variables?

2001-11-01 Thread Don Vawter

Hey Raymond

One of my pet peeves(not peaves) is spelling  (j/k) but as often as this
topic irritates you you might want to change the spelling.

- Original Message -
From: "Raymond Camden" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, November 01, 2001 11:40 AM
Subject: RE: ### Output all variables?


> >
> >   #Variables.Key#: #Evaluate("Application." & Variables.Key)#
> >
> >
>
> No, no, no. Sorry, but, again, this is my pet peave. Please remember
> that when working with structures, you do not need to use evaluate like
> this. Simply use bracket notation:
>
> 
>#Variables.Key#: #Application[Variables.Key]#
> 
>
> (Also note that this should be surrounded by CFLOCKs.)
>
> ===
> Raymond Camden, Principal Spectra Compliance Engineer for Macromedia
>
> Email: [EMAIL PROTECTED]
> Yahoo IM : morpheus
>
> "My ally is the Force, and a powerful ally it is." - Yoda
> 
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: [OT] Frustrating IE window.open popup delay...

2001-11-01 Thread Joseph DeVore

I had the same problem but once I upgraded to 6.0.2600 it was fixed

Joseph DeVore
VeloxWeb Technologies





-Original Message-
From: Ron Hornbaker [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 01, 2001 10:28 AM
To: CF-Talk
Subject: [OT] Frustrating IE window.open popup delay...


Sorry for the OT and cross-post from JS-Jive list, but I still haven't
found the answer for this.

Ever since upgrading to IE5, then 5.5, on my way too fast and memory-laden
Dell laptop, JS popup windows take friggin' forEVER to popup, something
like 10-12 seconds on average.

After a fresh machine reboot, the problem seems to be improved, but still
slow, something like 4-5 seconds. As soon as I have 3 or 4 IE windows
open, the times jump up.

I've done all the service packs, no difference. Anyone else seen this
problem, and if so, is it fixable?

tia,
Ron

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



RE: [OT] Frustrating IE window.open popup delay...

2001-11-01 Thread Raymond Camden

I can't help you, but I'd just about kill for an answer to this. If you
find out, let me know. I have (what I consider to be) a very fast
system, but opening new windows is just about as slow as you describe.

===
Raymond Camden, Principal Spectra Compliance Engineer for Macromedia

Email: [EMAIL PROTECTED]
Yahoo IM : morpheus

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

> -Original Message-
> From: Ron Hornbaker [mailto:[EMAIL PROTECTED]] 
> Sent: Thursday, November 01, 2001 1:28 PM
> To: CF-Talk
> Subject: [OT] Frustrating IE window.open popup delay...
> 
> 
> Sorry for the OT and cross-post from JS-Jive list, but I still haven't
> found the answer for this.
> 
> Ever since upgrading to IE5, then 5.5, on my way too fast and 
> memory-laden
> Dell laptop, JS popup windows take friggin' forEVER to popup, 
> something
> like 10-12 seconds on average.
> 
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



  1   2   3   >