RE: Dat(ing)e Problem with Access and Forms

2001-02-01 Thread Allan Pichler

How about this!




INSERT INTO Events(EDate, ETimeStart, ETimeEnd, ETitle, EDetails, Link,
MyTest)
VALUES(#CreateODBCDateTime(EDate)#, '#ETimeStart#', '#ETimeEnd#',
'#ETitle#', '#EDetails#',
'#Link#', '#MyTest#')


Hope that helps

Allan Pichler

-Original Message-
From: Mark Smeets [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 01, 2001 11:39 PM
To: CF-Talk
Subject: Dat(ing)e Problem with Access and Forms


Hello,

Well, I'll be as brief as I can about this problem I'm having.

I have this form where I need the user to enter in a date for a press
release (for example). Now, this can't be an automatic date because the
press release may be dated for another day or even the following month.

So, the problem is, for some reason, What I had begun to do was to take 3
seperate drop down boxes with Month/Day/Year, and then insert those plus the
time (ODBC Time) into the database.

Now, the field happens to be a date/time field. It doesn't work and in fact,
it gives me screwed up results. Why did I do this? because I want to order
the reports by their dates and if I do it by a text field, well, it will
just go in alphabetical order and that's useless.

So, one thought I had was for the user to pick what they want from the text
boxes and then on my processing page, find a way to somehow match that info
to an ODBC date and then insert it. No idea how to go about doing that.

It is possible that I've screwed up the concatination but I'll let this list
be the judge of that code (which is included below). The drop down fields
are just typical drop down fields on a form so I won't post that.

Any help is appreciated and I really hope this made sense.

-My Code Below-




INSERT INTO Events(EDate, ETimeStart, ETimeEnd, ETitle, EDetails, Link,
MyTest)
VALUES(#EDate#, '#ETimeStart#', '#ETimeEnd#', '#ETitle#', '#EDetails#',
'#Link#', '#MyTest#')



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

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



Re: Database connection pooling

2001-02-01 Thread Jon Hall

Well...the strings (or threads) that hold together the spine of the
ColdFusion server manual may be attached to the database servers on the off
chance you piss your wife off and she throws them into the pool


or in a much more boring format...

Multithreaded applications have multiple threads executing in a shared
address space. Threads are "lightweight" subprocesses that execute within a
process. They share code and data segments, but have their own program
counters, machine registers and stack. Global and static variables are
common to all threads, and a mutual exclusivity mechanism is often required
to manage access to these variables from multiple threads within an
application. Mutexes are the synchronization mechanism to insure that data
integrity is preserved.
Database connection pooling spreads the connection overhead across several
user requests by establishing a pool of connections which your Web
applications can use. Put another way, each user request incurs the overhead
of only a fraction of the cost of connecting and disconnecting. After the
initial resources are spent to produce the connections in the pool,
additional connect/disconnect overhead is insignificant because the existing
connections are reused repeatedly.

hth
jon
- Original Message -
From: "Haryono ..." <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, February 01, 2001 10:46 PM
Subject: Database connection pooling


> Hallo everyone.
> I want to ask some question.
> What is the meaning of Database Connection Pooling in
> the coldfusion's feature?
> What is the meaning of Multithreaded in the
> coldfusion's feature?
>
> Thank's for your answer.
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



AW: Batch Image Upload

2001-02-01 Thread Christoph Schmitz

Geee... of course this suggestion is as unusuable for cloent upload as
before.. you can't fire a client batch with a server command (unless maybe
you're using ActiveX).

And for the records... I promise not to try to make suggestions without a
certain minimum amount of sleep. :-((

Chris


> -Ursprüngliche Nachricht-
> Von: Christoph Schmitz [mailto:[EMAIL PROTECTED]]
> Gesendet: Freitag, 2. Februar 2001 00:02
> An: CF-Talk
> Betreff: AW: Batch Image Upload
>
>
> Guess I misunderstood the scenario.. my first thought was that they wanted
> to transfer the images from one CF-Server to another... uploading from the
> client could be done with a batch file that could be fired by CFEXECUTE.
>
> Chris
>
>
>
>
>
> > -Ursprüngliche Nachricht-
> > Von: Allan Pichler [mailto:[EMAIL PROTECTED]]
> > Gesendet: Donnerstag, 1. Februar 2001 20:19
> > An: CF-Talk
> > Betreff: RE: Batch Image Upload
> >
> >
> > Is it just me, but CFDIRECTORY grabs a directory of the server,
> > so you can't
> > use that to do a batch upload of images from a client!
> >
> > Allan Pichler
> >
> > -Original Message-
> > From: Christoph Schmitz [mailto:[EMAIL PROTECTED]]
> > Sent: Thursday, February 01, 2001 10:37 AM
> > To: CF-Talk
> > Subject: AW: Batch Image Upload
> >
> >
> > Hi,
> >
> > I guess I would do a CFDIRECTORY where the images are located and
> > then just
> > upload them using CFFTP
> >
> >  >  directory="F:\whateverDir\"
> >  filter="*.jpg"
> >  name="imgQuery">
> >
> > 
> > 
> >  > localfile="F:\whateverDir\#imgQuery.name#" ...>
> > 
> >
> > HTH,
> >
> > Chris
> >
> >
> > > -Ursprüngliche Nachricht-
> > > Von: Jason Larson [mailto:[EMAIL PROTECTED]]
> > > Gesendet: Donnerstag, 1. Februar 2001 17:35
> > > An: CF-Talk
> > > Betreff: Batch Image Upload
> > >
> > >
> > >
> > > I was wondering if anyone has a custom cf tag, or some ideas to
> > > accomplish a
> > > batch image upload. I have a client that will be taking about 10
> > > pictures a
> > > day on 10 different construction projects. They want to have the
> > > capability
> > > to upload the images in a batch process without using a FTP
> > > utility, for the
> > > sake of saving time. I have been brewing this over the last
> > couple of days
> > > and any suggestions on how to accomplish this would be of great help.
> > >
> > > Thanks
> > >
> > > Jason Larson
> > > [EMAIL PROTECTED]
> > >
> > >
> > >
> >
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Dat(ing)e Problem with Access and Forms

2001-02-01 Thread Mark Smeets

Hello,

Well, I'll be as brief as I can about this problem I'm having.

I have this form where I need the user to enter in a date for a press 
release (for example). Now, this can't be an automatic date because the 
press release may be dated for another day or even the following month.

So, the problem is, for some reason, What I had begun to do was to take 3 
seperate drop down boxes with Month/Day/Year, and then insert those plus the 
time (ODBC Time) into the database.

Now, the field happens to be a date/time field. It doesn't work and in fact, 
it gives me screwed up results. Why did I do this? because I want to order 
the reports by their dates and if I do it by a text field, well, it will 
just go in alphabetical order and that's useless.

So, one thought I had was for the user to pick what they want from the text 
boxes and then on my processing page, find a way to somehow match that info 
to an ODBC date and then insert it. No idea how to go about doing that.

It is possible that I've screwed up the concatination but I'll let this list 
be the judge of that code (which is included below). The drop down fields 
are just typical drop down fields on a form so I won't post that.

Any help is appreciated and I really hope this made sense.

-My Code Below-




INSERT INTO Events(EDate, ETimeStart, ETimeEnd, ETitle, EDetails, Link, 
MyTest)
VALUES(#EDate#, '#ETimeStart#', '#ETimeEnd#', '#ETitle#', '#EDetails#', 
'#Link#', '#MyTest#')



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

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



Extracting URLs from text file

2001-02-01 Thread Mike Kear

Sorry this is a repeat, but some time ago someone gave the answer to this
and I can't find it 

Is there a tag somewhere to zip through a text file and extract all the URLs
in it?  I have a large old flat file of links and want to turn them into a
database app that's obviously much more manageable.  I've looked through the
Allaire gallery - I was sure I saw a tag there to do this once, but I can't
make the search find it for me now.  It's late in the week, nearly time for
weekend,  I guess my brain's fading.

Cheers,
Mike Kear
Windsor, NSW, Australia
AFP WebWorks




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

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



Re: (Admin) NDA Reminder

2001-02-01 Thread Michael Dinowitz

Politeness is a rather good thing. Allaire didn't announce the beta and even
when they do, its usually not open to everyone. Since its their show, a bit
of politeness in following their rules might be nice.
As for discussion on the list when a beta comes out, yes it happens and no
there's really nothing that can stop it. Its just frowned upon because we
don't want to go out of our ways to piss anyone off.


> This hasn't stopped discussion regarding 4.5.1sp2 beta or other prior
betas
> as well. =) And if they come after me I will have a peanut to throw at
them.
> I don't think speculation on my part would count as under the NDA since I
> have yet to touch 5.0.
>
> When it comes out, we will see. =) Let's get a wager going. Let's bet on
who
> becomes the first cfer on this list to disclose confidential trade secret
> whe 5.0 comes out when everyone, and not just the priviledged few,  is
> officially covered under the NDA. Maybe we can pay the laywer fees for the
> winner out of gratitude.
>
> I will pitch in $5 to the legal defense fund for the winner.
>
> xing
>
>
> > People, why do you have to make me into the bad guy? Why do I have to
> remind
> > you about the NDA covering betas at Allaire. I know we're all very
excited
> > about CF 5 and want it yesterday, but we have to remember the NDA.
Posting
> > comments, questions or announcements to public forums isn't really the
> thing to
> > do. Allaire has the beta set up for tomorrow and we'll get announcements
> about
> > it then. What you saw up on the beta site was a test run for a few
people
> to
> > make sure all's ready for the 'real' beta.
> > I'm as excited about CF 5 as the next guy or more so. I'm just upset
I'll
> be at
> > work behind a firewall and not be able to touch the beta till saturday
> night.
> > :(
> > Now if anyone wants to give me a better job, I'd be quite happy. The
> Federal
> > Reserve pays well, but the restrictions really bite.
> >
> >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: studio 4.5.2

2001-02-01 Thread zac

Sandra Clark wrote:

> Basically CF Studio 4.5.2 sucks big time, specifically in FTP, RDS and
> Projects with RDS.

I was able to fix my RDS connection problem fairly easy. There is a technote
on the site

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

The gist of it is that the problem is in the password prompt. I just added
the server again and included the password in the server definition and it
was fine



--

   
   We have spent much of the 20th century guarding against a
   Fahrenheit 451-like state in which books are burned;
   meanwhile, Huxley's world, in which most people won't
   even bother to read a book, may be slipping in the back door

   Jeffrey Klein
   

   email: [EMAIL PROTECTED]
   WWW: http://www.pixelgeek.com/


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

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



RE: Login failed for user CFADMIN

2001-02-01 Thread Darryl Lyons

Hard to tell.. I'd say it would be for a query though..

-Original Message-
From: S C [mailto:[EMAIL PROTECTED]]
Sent: Friday, February 02, 2001 2:20 PM
To: CF-Talk
Subject: Re: Login failed for user CFADMIN


When do you get this error?  With a query?
--- Darryl Lyons <[EMAIL PROTECTED]>
wrote:
> has anyone ever gotten this error - "Login failed
> for user CFADMIN"?
> 
> ---
> Regards,
> 
> Darryl Lyons
> Web Development Team
> LogicWorld Internet 
> 
> Email : [EMAIL PROTECTED]
> Web : www.logicworld.com.au
> Team Site : webdevelopment.logicworld.com.au
> 
> Phone : (07) 3230 8800
> Fax : (07) 2320 8801
> Technical Support : (07) 3230 8811
>  
> ' P L U G   I N T O   T H E   W O R L D '
> 
> 
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: ColdFusion Server Enterprise

2001-02-01 Thread Dylan Bromby

believe it or not, the eval is at www.allaire.com.

-Original Message-
From: Haryono ... [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 01, 2001 7:56 PM
To: CF-Talk
Subject: ColdFusion Server Enterprise


Hallo everyone.
Where I can get free download for ColdFusion Server
Enterprise?

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

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



RE: Batch Image Upload

2001-02-01 Thread Dylan Bromby

you can use CFLOOP and loop the CFFILEs to streamline the code as well.

-Original Message-
From: Peter Amiri [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 01, 2001 5:18 PM
To: CF-Talk
Subject: RE: Batch Image Upload


Jason,

You can do this with a HTML form. Look at the code below which shows how to
upload three files at a time via the browser to you web server.










Untitled




File 1:
File 2:
File 3:







That should do it for you. Just expand the sample to ten files and you
should be done.

-Peter Amiri

> > -Ursprüngliche Nachricht-
> > > Von: Jason Larson [mailto:[EMAIL PROTECTED]]
> > > Gesendet: Donnerstag, 1. Februar 2001 17:35
> > > An: CF-Talk
> > > Betreff: Batch Image Upload
> > >
> > >
> > >
> > > I was wondering if anyone has a custom cf tag, or some ideas to
> > > accomplish a
> > > batch image upload. I have a client that will be taking about 10
> > > pictures a
> > > day on 10 different construction projects. They want to have the
> > > capability
> > > to upload the images in a batch process without using a FTP
> > > utility, for the
> > > sake of saving time. I have been brewing this over the last
> > couple of days
> > > and any suggestions on how to accomplish this would be of great help.
> > >
> > > Thanks
> > >
> > > Jason Larson
> > > [EMAIL PROTECTED]
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: Date of Birth question

2001-02-01 Thread Sicular, Alexander






  

  
  
 

  
  
  

  



Birthday: #dob#
 Age: #age#



this is the code i use.

Alexander Sicular
Technical Director, Information Technology
The Neurological Institute of New York
Columbia Presbyterian Medical Center
212.305.1318
[EMAIL PROTECTED]


-Original Message-
From: Peter Tilbrook [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 01, 2001 10:18 PM
To: CF-Talk
Subject: Date of Birth question


Hey guys/gals!

I am currently working on database enabling the www.friendsplus.com.au web
site for a friend using, of course, CF. At the moment it is maintained
manually using Micro$oft FrontPage 2000 - not very efficient.

What I need to do is when a member "Joins" and enters their date of birth
(as a Eurodate formatted date DD/MM/ - it's an Aussie site) to calculate
their age in years based on the current date (Now()) - dynamically.

I nearly had it working except it calculated me as being 33 and not 32 (born
December 4 1968).

Any suggestions would be appreciated. In the meantime I'll get back into it.

All the best.

Peter Tilbrook
Slave of Friends Plus (rowers required)
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: Batch Image Upload

2001-02-01 Thread Jason Roberts

I was just thinking about a similiar thing for a client of mine.  I was
thinking that the easiest way would be to first have them zip up the
photos with winzip and then have an upload form that would accept the
zip file.  On the processing script, use Ben Forta's CFX_ZIP tag [
http://www.emteksys.com/products/cfx_zip/ ] to then extract the images
to your destination directory.

I ended up not doing this process for my client since they felt the
people that would use it wouldn't know (or figure out) how to zip
files.  I tell ya

Jason Roberts
Trinium Corporation


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



Re: Login failed for user CFADMIN

2001-02-01 Thread S C

When do you get this error?  With a query?
--- Darryl Lyons <[EMAIL PROTECTED]>
wrote:
> has anyone ever gotten this error - "Login failed
> for user CFADMIN"?
> 
> ---
> Regards,
> 
> Darryl Lyons
> Web Development Team
> LogicWorld Internet 
> 
> Email : [EMAIL PROTECTED]
> Web : www.logicworld.com.au
> Team Site : webdevelopment.logicworld.com.au
> 
> Phone : (07) 3230 8800
> Fax : (07) 2320 8801
> Technical Support : (07) 3230 8811
>  
> ' P L U G   I N T O   T H E   W O R L D '
> 
> 
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: ColdFusion Server Enterprise

2001-02-01 Thread Allan Pichler

You can get a free evaluation copy at www.allaire.com

Allan Pichler

-Original Message-
From: Haryono ... [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 01, 2001 7:56 PM
To: CF-Talk
Subject: ColdFusion Server Enterprise


Hallo everyone.
Where I can get free download for ColdFusion Server
Enterprise?

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

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



Re: Date of Birth question

2001-02-01 Thread Jim McAtee

- Original Message -
From: "Peter Tilbrook" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, February 01, 2001 8:18 PM
Subject: Date of Birth question


> Hey guys/gals!
>
> I am currently working on database enabling the www.friendsplus.com.au web
> site for a friend using, of course, CF. At the moment it is maintained
> manually using Micro$oft FrontPage 2000 - not very efficient.
>
> What I need to do is when a member "Joins" and enters their date of birth
> (as a Eurodate formatted date DD/MM/ - it's an Aussie site) to
calculate
> their age in years based on the current date (Now()) - dynamically.
>
> I nearly had it working except it calculated me as being 33 and not 32
(born
> December 4 1968).
>
> Any suggestions would be appreciated. In the meantime I'll get back into
it.
>
> All the best.
>
> Peter Tilbrook
> Slave of Friends Plus (rowers required)


Does CF recognize the date correctly by using the localization set on the
server?  I've never had to deal with that, so I don't know.  If not, just
pull out day, month and year to create a new date, then use DateDiff().










Birthday: #DateFormat(dd, "dd-mmm-")#
 Age: #age#




Jim



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

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



ColdFusion Server Enterprise

2001-02-01 Thread Haryono ...

Hallo everyone.
Where I can get free download for ColdFusion Server
Enterprise?

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

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



Database connection pooling

2001-02-01 Thread Haryono ...

Hallo everyone.
I want to ask some question.
What is the meaning of Database Connection Pooling in
the coldfusion's feature?
What is the meaning of Multithreaded in the
coldfusion's feature?

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

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



Re: Date of Birth question

2001-02-01 Thread Mak Wing Lok

try this




#diff#


- Original Message -
From: Peter Tilbrook <[EMAIL PROTECTED]>
To: CF-Talk <[EMAIL PROTECTED]>
Sent: Friday, February 02, 2001 11:18 AM
Subject: Date of Birth question


> Hey guys/gals!
>
> I am currently working on database enabling the www.friendsplus.com.au web
> site for a friend using, of course, CF. At the moment it is maintained
> manually using Micro$oft FrontPage 2000 - not very efficient.
>
> What I need to do is when a member "Joins" and enters their date of birth
> (as a Eurodate formatted date DD/MM/ - it's an Aussie site) to
calculate
> their age in years based on the current date (Now()) - dynamically.
>
> I nearly had it working except it calculated me as being 33 and not 32
(born
> December 4 1968).
>
> Any suggestions would be appreciated. In the meantime I'll get back into
it.
>
> All the best.
>
> Peter Tilbrook
> Slave of Friends Plus (rowers required)
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: ParseDateTime()

2001-02-01 Thread Paul Hastings

> Well, I've used it mostly to translate POP dates (the kind that come in
> email headers) into "standard" date formats.

parseDateTime() chokes on quite a few POP date formats, whether
these are just strange "standards" or misconfigured (you would not
believe how many different kinds we've seen). i would use it with
caution...


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

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



Re: Date of Birth question

2001-02-01 Thread Xing Li

if you want a lazy answer read the follwoing.

Just subtract 1 from your current answer.

Xing

- Original Message -
From: "Peter Tilbrook" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, February 01, 2001 7:18 PM
Subject: Date of Birth question


> Hey guys/gals!
>
> I am currently working on database enabling the www.friendsplus.com.au web
> site for a friend using, of course, CF. At the moment it is maintained
> manually using Micro$oft FrontPage 2000 - not very efficient.
>
> What I need to do is when a member "Joins" and enters their date of birth
> (as a Eurodate formatted date DD/MM/ - it's an Aussie site) to
calculate
> their age in years based on the current date (Now()) - dynamically.
>
> I nearly had it working except it calculated me as being 33 and not 32
(born
> December 4 1968).
>
> Any suggestions would be appreciated. In the meantime I'll get back into
it.
>
> All the best.
>
> Peter Tilbrook
> Slave of Friends Plus (rowers required)
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Date of Birth question

2001-02-01 Thread Peter Tilbrook

Hey guys/gals!

I am currently working on database enabling the www.friendsplus.com.au web
site for a friend using, of course, CF. At the moment it is maintained
manually using Micro$oft FrontPage 2000 - not very efficient.

What I need to do is when a member "Joins" and enters their date of birth
(as a Eurodate formatted date DD/MM/ - it's an Aussie site) to calculate
their age in years based on the current date (Now()) - dynamically.

I nearly had it working except it calculated me as being 33 and not 32 (born
December 4 1968).

Any suggestions would be appreciated. In the meantime I'll get back into it.

All the best.

Peter Tilbrook
Slave of Friends Plus (rowers required)


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

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



Re: Certification Help

2001-02-01 Thread S C

CHECK OUT CFCERTIFICATION.COM.   IT GOOD RESOURCES ON
CERTIFYING.
--- Jon Hall <[EMAIL PROTECTED]> wrote:
> I haven't taken the test, but I did take the
> brainbench one, and if the
> Allaire test is anything like it or most other
> tests. It's heavy on the
> syntax. It helps that you know the tag inside and
> out, but whether or not
> you know where to put that quotation mark is key.
> 
> jon
> - Original Message -
> From: "Jason Aden" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Thursday, February 01, 2001 4:38 PM
> Subject: RE: Certification Help
> 
> 
> > The Forta books are both good references (you
> should have both the regular
> > and advanced CF books). You will need to have
> knowledge of a wide variety
> of
> > ColdFusion concepts, not just things you are
> exposed to as a developer.
> You
> > should take a look at the study guide from
> Allaire. It lists the topics
> > covered (the example problems aren't too much
> help).
> >
> > One of the most common peices of advice I've heard
> is to read up on every
> > ColdFusion tag and function, just so you've seen
> what the attributes and
> > arguments are. This is a very good idea. I didn't
> read up on all areas,
> just
> > parts that I knew I was weak in or hadn't used for
> a long time. I did it
> in
> > about 10 minutes before going in for the exam, and
> I think it helped me to
> > get a higher score.
> >
> > HTH,
> >
> > Jason
> >
> > 
> > Jason Aden
> > Allaire Certified Developer
> > [EMAIL PROTECTED]
> > www.wwstudios.com
> >
> > > -Original Message-
> > > From: Richard Banks [mailto:[EMAIL PROTECTED]]
> > > Sent: Thursday, February 01, 2001 3:29 PM
> > > To: CF-Talk
> > > Subject: Certification Help
> > >
> > >
> > > I'm looking to get certified in CF development
> [one of these days}. I
> was
> > > wondering if anyone could point out to me any
> good books or
> > > references that
> > > would help me prepare for the exam. Any help
> would be appreciated.
> Thanks.
> > >
> > >
> > >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: Certification Help

2001-02-01 Thread Jon Hall

I haven't taken the test, but I did take the brainbench one, and if the
Allaire test is anything like it or most other tests. It's heavy on the
syntax. It helps that you know the tag inside and out, but whether or not
you know where to put that quotation mark is key.

jon
- Original Message -
From: "Jason Aden" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, February 01, 2001 4:38 PM
Subject: RE: Certification Help


> The Forta books are both good references (you should have both the regular
> and advanced CF books). You will need to have knowledge of a wide variety
of
> ColdFusion concepts, not just things you are exposed to as a developer.
You
> should take a look at the study guide from Allaire. It lists the topics
> covered (the example problems aren't too much help).
>
> One of the most common peices of advice I've heard is to read up on every
> ColdFusion tag and function, just so you've seen what the attributes and
> arguments are. This is a very good idea. I didn't read up on all areas,
just
> parts that I knew I was weak in or hadn't used for a long time. I did it
in
> about 10 minutes before going in for the exam, and I think it helped me to
> get a higher score.
>
> HTH,
>
> Jason
>
> 
> Jason Aden
> Allaire Certified Developer
> [EMAIL PROTECTED]
> www.wwstudios.com
>
> > -Original Message-
> > From: Richard Banks [mailto:[EMAIL PROTECTED]]
> > Sent: Thursday, February 01, 2001 3:29 PM
> > To: CF-Talk
> > Subject: Certification Help
> >
> >
> > I'm looking to get certified in CF development [one of these days}. I
was
> > wondering if anyone could point out to me any good books or
> > references that
> > would help me prepare for the exam. Any help would be appreciated.
Thanks.
> >
> >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: Making a noise

2001-02-01 Thread Xing Li

It's possible but you won't get it out of coldfusion since it can't control
the client side. What you need is javascript, java, or flash. You can use cf
to pick what sounds are played but you can't use cf to play them.

Xing

- Original Message -
From: "Parker, Kevin" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, February 01, 2001 6:15 PM
Subject: Making a noise


> Just toying with an idea at the movement and wondered if this was
possible.
>
> If I had a series of .WAV files, eg. 1.wav, 2.wav etc or even A.wav, B.wav
> etc could I get a CF template to read a number or spell a word on the
> screen. I assume that you would have to concatenate the wave files somehow
> with or without launching a player.
>
>
>
> +
> Kevin Parker
> Web Services Manager
> WorkCover Corporation
>
> [EMAIL PROTECTED]
>
> www.workcover.com
>
> p: +61 8 82332548
> f: +61 8 82332000
> m: 0418 800 287
>
> +
>
>
>
>

> This e-mail is intended for the use of the addressee only. It may contain
> information that is protected by legislated confidentiality and/or is
> legally privileged. If you are not the intended recipient you are
prohibited
> from disseminating, distributing or copying this e-mail. Any opinion
> expressed in this e-mail may not necessarily be that of the WorkCover
> Corporation of South Australia. Although precautions have been taken, the
> sender cannot warrant that this e-mail or any files transmitted with it
are
> free of viruses or any other defect.
> If you have received this e-mail in error, please notify the sender
> immediately by return e-mail and destroy the original e-mail and any
copies.
>

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

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



Re: Making a noise

2001-02-01 Thread Jon Hall



jon
- Original Message -
From: "Parker, Kevin" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, February 01, 2001 9:15 PM
Subject: Making a noise


> Just toying with an idea at the movement and wondered if this was
possible.
>
> If I had a series of .WAV files, eg. 1.wav, 2.wav etc or even A.wav, B.wav
> etc could I get a CF template to read a number or spell a word on the
> screen. I assume that you would have to concatenate the wave files somehow
> with or without launching a player.
>
>
>
> +
> Kevin Parker
> Web Services Manager
> WorkCover Corporation
>
> [EMAIL PROTECTED]
>
> www.workcover.com
>
> p: +61 8 82332548
> f: +61 8 82332000
> m: 0418 800 287
>
> +
>
>
>
>

> This e-mail is intended for the use of the addressee only. It may contain
> information that is protected by legislated confidentiality and/or is
> legally privileged. If you are not the intended recipient you are
prohibited
> from disseminating, distributing or copying this e-mail. Any opinion
> expressed in this e-mail may not necessarily be that of the WorkCover
> Corporation of South Australia. Although precautions have been taken, the
> sender cannot warrant that this e-mail or any files transmitted with it
are
> free of viruses or any other defect.
> If you have received this e-mail in error, please notify the sender
> immediately by return e-mail and destroy the original e-mail and any
copies.
>

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

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



Re: Certification Help

2001-02-01 Thread Michael

www.brainbench.com has something to offer, although I heard that Allaire
just changed the whole test,  dont know for sure but?





"Jennifer" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> At 03:29 PM 2/1/01 -0500, you wrote:
> >I'm looking to get certified in CF development [one of these days}. I was
> >wondering if anyone could point out to me any good books or references
that
> >would help me prepare for the exam. Any help would be appreciated.
Thanks.
>
> I'm thinking the same thing today. There's a pdf file on Allaire's site
> that covers the subjects that are on the test.
>
> http://www.allaire.com/DocumentCenter/Partners/cf45_examguide.pdf
> They also have a link to this site, which has prep materials but isn't
> associated with Allaire:
> http://www.cfcertification.com
>
>
> Now announcing my newly updated website
> http://www.blivit.org/mr_urc/index.cfm
> Resume: http://www.blivit.org/mr_urc/resume.cfm
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Making a noise

2001-02-01 Thread Parker, Kevin

Just toying with an idea at the movement and wondered if this was possible.

If I had a series of .WAV files, eg. 1.wav, 2.wav etc or even A.wav, B.wav
etc could I get a CF template to read a number or spell a word on the
screen. I assume that you would have to concatenate the wave files somehow
with or without launching a player.



+
Kevin Parker
Web Services Manager
WorkCover Corporation

[EMAIL PROTECTED]

www.workcover.com

p: +61 8 82332548
f: +61 8 82332000
m: 0418 800 287

+




This e-mail is intended for the use of the addressee only. It may contain
information that is protected by legislated confidentiality and/or is
legally privileged. If you are not the intended recipient you are prohibited
from disseminating, distributing or copying this e-mail. Any opinion
expressed in this e-mail may not necessarily be that of the WorkCover
Corporation of South Australia. Although precautions have been taken, the
sender cannot warrant that this e-mail or any files transmitted with it are
free of viruses or any other defect.
If you have received this e-mail in error, please notify the sender
immediately by return e-mail and destroy the original e-mail and any copies.


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

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



Re: Feature of ColdFusion

2001-02-01 Thread Xing Li





> Hallo everyone,
> I want to ask some question that related with
> ColdFusion's feature.
> What is the meaning of dynamic load balancing?

When the traffic is divided up to separate servers in real time. For
example. You have 3 servers that's clustered or load balanced to do the same
thing. Without the "dynamic" catch phrase, each server will have 33% of the
load/traffic. CF enterprise has builtin monitoring tools that checks to see
the stress of each server that allows the load to shift from one server to
the next depending on the status/health of the 3 servers. So if one is
really busy, that one will get maybe 5% of the traffic while the other two
will get the rest of the load.

> What is the meaning of automatic fail over?
Fail over protection means when one server goes down, another server, which
has been idle, comes in to the picture and takes over the load. Fail over is
not load balancing.

Xing

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

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



Feature of ColdFusion

2001-02-01 Thread Haryono ...

Hallo everyone,
I want to ask some question that related with
ColdFusion's feature.
What is the meaning of dynamic load balancing?
What is the meaning of automatic fail over?
Thank you for your answer.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: (Admin) NDA Reminder

2001-02-01 Thread Xing Li

This hasn't stopped discussion regarding 4.5.1sp2 beta or other prior betas
as well. =) And if they come after me I will have a peanut to throw at them.
I don't think speculation on my part would count as under the NDA since I
have yet to touch 5.0.

When it comes out, we will see. =) Let's get a wager going. Let's bet on who
becomes the first cfer on this list to disclose confidential trade secret
whe 5.0 comes out when everyone, and not just the priviledged few,  is
officially covered under the NDA. Maybe we can pay the laywer fees for the
winner out of gratitude.

I will pitch in $5 to the legal defense fund for the winner.

xing


> People, why do you have to make me into the bad guy? Why do I have to
remind
> you about the NDA covering betas at Allaire. I know we're all very excited
> about CF 5 and want it yesterday, but we have to remember the NDA. Posting
> comments, questions or announcements to public forums isn't really the
thing to
> do. Allaire has the beta set up for tomorrow and we'll get announcements
about
> it then. What you saw up on the beta site was a test run for a few people
to
> make sure all's ready for the 'real' beta.
> I'm as excited about CF 5 as the next guy or more so. I'm just upset I'll
be at
> work behind a firewall and not be able to touch the beta till saturday
night.
> :(
> Now if anyone wants to give me a better job, I'd be quite happy. The
Federal
> Reserve pays well, but the restrictions really bite.
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: Batch Image Upload

2001-02-01 Thread Peter Amiri

Jason,

You can do this with a HTML form. Look at the code below which shows how to
upload three files at a time via the browser to you web server.










Untitled




File 1:
File 2:
File 3:







That should do it for you. Just expand the sample to ten files and you
should be done.

-Peter Amiri

> > -Ursprüngliche Nachricht-
> > > Von: Jason Larson [mailto:[EMAIL PROTECTED]]
> > > Gesendet: Donnerstag, 1. Februar 2001 17:35
> > > An: CF-Talk
> > > Betreff: Batch Image Upload
> > >
> > >
> > >
> > > I was wondering if anyone has a custom cf tag, or some ideas to
> > > accomplish a
> > > batch image upload. I have a client that will be taking about 10
> > > pictures a
> > > day on 10 different construction projects. They want to have the
> > > capability
> > > to upload the images in a batch process without using a FTP
> > > utility, for the
> > > sake of saving time. I have been brewing this over the last
> > couple of days
> > > and any suggestions on how to accomplish this would be of great help.
> > >
> > > Thanks
> > >
> > > Jason Larson
> > > [EMAIL PROTECTED]


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

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



Re: SQL Server Indexes and System Objects

2001-02-01 Thread David Cummins

Thanks Paul - at least I know to give up now!

I just figured it would be nice to do change control on the database
definitions, because obviously things can get nasty if they get out of sync with
your production server.

Heard anything that might help in that regard?

David Cummins

Paul Hastings wrote:
> 
> > Obviously its potentially dangerous - but I don't like the MS policy of
> taking
> > your toys away because somebody else wasn't playing nice with them.
> 
> well these change from version to version & building apps based
> on them is going to get your butt kicked sooner or later,  also some
> of these catalog stuff (objects) in tempDB and are sometimes
> misleading. these system objects are not always updated in a
> "timely" fashion, querying directly will sometimes return inaccurate
> results (trying to get row counts directly is one example). the littany
> goes on & on. in any case, ms does provide all those metadata sp
> (geez, there's a boatload of them) to query these things. check the
> BoL there's more sp & xp than you can shake a stick at.
> 
> > So as far as you're aware, its not possible? Not even to add triggers etc?
> 
> from the BoL:
> Note
> System tables should not be altered directly by any user. For example,
> do not attempt to modify system tables with DELETE, UPDATE, or
> INSERT statements, or user-defined triggers.
> 
> this was kicked around on one of the sql server lists (forget if it was
> 2k or 7.0) and i believe that this "recommendation" turns out to be
> set in stone.

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

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



RE: cfif statements in a cflocation tag=icky url

2001-02-01 Thread Al Musella, DPM

  A MUCH cleaner way of doing it is to just cfinclude the appropriate file 
instead of doing a cflocation. This way no variable have to be passed to 
another template.
Al
A1webs.com



> >  >
>url="http://#attributes.serverip#/mydir/mytemplate.cfm?username=#attributes.
> > username# > #isDefined("attributes.dsn1")#>&dsn1=#attributes.dsn1# > #isDefined("attributes.dsn2")#>&dsn2=#attributes.dsn2# > #isDefined("attributes.dsn3")#>&dsn3=#attributes.dsn3#">
> > ---
> >
> > url produced from above code---
> >
>http://serverip/mydir/mytemplate.cfm?username=user23&dsn1=blah1<
> > cfelseif%20YES>&dsn2=blah2&dsn3=blah3
> > ---
> > (serverip was edited for this post)
> >
> > --
> > Stephenie Hamilton
> >
> >
> >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: The BETA IS OUT!!!

2001-02-01 Thread Bud

On 2/1/01, Garza, Jeff penned:
>The Beta for 5.0 is available!!!

Cool. Maybe I'll go ahead and install my copy of 4.51 now. :)
-- 

Bud Schneehagen - Tropical Web Creations

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

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

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



(Admin) NDA Reminder

2001-02-01 Thread mdinowit

People, why do you have to make me into the bad guy? Why do I have to remind 
you about the NDA covering betas at Allaire. I know we're all very excited 
about CF 5 and want it yesterday, but we have to remember the NDA. Posting 
comments, questions or announcements to public forums isn't really the thing to 
do. Allaire has the beta set up for tomorrow and we'll get announcements about 
it then. What you saw up on the beta site was a test run for a few people to 
make sure all's ready for the 'real' beta. 
I'm as excited about CF 5 as the next guy or more so. I'm just upset I'll be at 
work behind a firewall and not be able to touch the beta till saturday night. 
:(
Now if anyone wants to give me a better job, I'd be quite happy. The Federal 
Reserve pays well, but the restrictions really bite.


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

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



Re: Newbie question

2001-02-01 Thread Laszlo Nadai

I guess you could use
CFOUTPUT  with startrow=yourCounter and maxrow =1
laszlo



Geoff Hoffman wrote:
> 
> I want to use CFLOOP such as
> 
> 
> 
>  instead of CFOUTPUT QUERY= to display a series of returned records.
> 
> How do you use the value stored in thisRecord (the incrementing number)
> to access the correct record? I have it looping the right number
> of times, but I can only output the first record over and over.
> 
> TIA,
> 
> [EMAIL PROTECTED]
> 
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

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

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



RE: Newbie question

2001-02-01 Thread Peter Amiri

Geoff,

To loop over a query you must use the following syntax.


#QueryName.MyFirstColumn#


The startrow and endrow are optional and can be left out. But remember to
surround all your column references with a CFOUTPUT in it's simplest form.

-Peter Amiri

> -Original Message-
> From: Geoff Hoffman [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, February 01, 2001 4:36 PM
> To: CF-Talk
> Subject: Newbie question
>
>
> I want to use CFLOOP such as
>
> 
>
>  instead of CFOUTPUT QUERY= to display a series of returned records.
>
> How do you use the value stored in thisRecord (the incrementing number)
> to access the correct record? I have it looping the right number
> of times, but I can only output the first record over and over.
>
> TIA,
>
> [EMAIL PROTECTED]
>
>
>
>
>
>
>
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
>


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

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



RE: ParseDateTime()

2001-02-01 Thread Jann VanOver

Well, I've used it mostly to translate POP dates (the kind that come in
email headers) into "standard" date formats.

-Original Message-
From: Jim McAtee [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 01, 2001 4:27 PM
To: CF-Talk
Subject: ParseDateTime()


What exactly is the use of this function?  I've found that it only works on
a string if the string passes the IsDate() validation function.  Now, if the
string passes that test, then it's _already_ a date.  So, what does parsing
the string accomplish?

The only thing that occurs to me is that in CF's "typeless" variable
environment, CF is really keeping track of variable types behind the scenes.
So by explicitly converting the string to a date variable, maybe you gain
some efficiency in not making CF implicitly convert variables.  I dunno.




  
  
  #DateFormat(thedate, "dd-mmm-yy")# #TimeFormat(thedate, "h:mm::ss tt")#
  

  The string entered is not a valid date/time.



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

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



RE: Newbie question

2001-02-01 Thread Jann VanOver

queryname.fieldname[#]

So, if your query is named "mystuff" and the field is "myfield", you get to
row 3 with:

mystuff.myfield[3] or in your case mystuff.myfield[thisRecord]

-Original Message-
From: Geoff Hoffman [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 01, 2001 4:36 PM
To: CF-Talk
Subject: Newbie question


I want to use CFLOOP such as



 instead of CFOUTPUT QUERY= to display a series of returned records.

How do you use the value stored in thisRecord (the incrementing number) 
to access the correct record? I have it looping the right number 
of times, but I can only output the first record over and over.

TIA,

[EMAIL PROTECTED]







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

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

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



Re: Newbie question

2001-02-01 Thread Jennifer

At 06:35 PM 2/1/01 -0600, you wrote:
>I want to use CFLOOP such as
>
>
>
>  instead of CFOUTPUT QUERY= to display a series of returned records.
>
>How do you use the value stored in thisRecord (the incrementing number)
>to access the correct record? I have it looping the right number
>of times, but I can only output the first record over and over.

#myquery.fieldname[thisrecord]#


Now announcing my newly updated website
http://www.blivit.org/mr_urc/index.cfm
Resume: http://www.blivit.org/mr_urc/resume.cfm


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

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



RE: Newbie question

2001-02-01 Thread Joby Bednar

>How do you use the value stored in thisRecord (the incrementing number) 
>to access the correct record? I have it looping the right number 
>of times, but I can only output the first record over and over.

myquery.fieldname[thisRecord]


Joby Bednar
Director of Internet Design
iNEOgroup.com



-Original Message-
From: Geoff Hoffman [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 01, 2001 4:36 PM
To: CF-Talk
Subject: Newbie question


I want to use CFLOOP such as



 instead of CFOUTPUT QUERY= to display a series of returned records.

How do you use the value stored in thisRecord (the incrementing number) 
to access the correct record? I have it looping the right number 
of times, but I can only output the first record over and over.

TIA,

[EMAIL PROTECTED]







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


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

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



Re: Newbie question

2001-02-01 Thread David Cummins

Use #myquery.mycolumn[thisrecord]#. Each column can be used as an array.

David Cummins

Geoff Hoffman wrote:
> 
> I want to use CFLOOP such as
> 
> 
> 
>  instead of CFOUTPUT QUERY= to display a series of returned records.
> 
> How do you use the value stored in thisRecord (the incrementing number)
> to access the correct record? I have it looping the right number
> of times, but I can only output the first record over and over.
> 
> TIA,
> 
> [EMAIL PROTECTED]

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

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



Re: SQL Server Indexes and System Objects

2001-02-01 Thread Paul Hastings

> Obviously its potentially dangerous - but I don't like the MS policy of
taking
> your toys away because somebody else wasn't playing nice with them.

well these change from version to version & building apps based
on them is going to get your butt kicked sooner or later,  also some
of these catalog stuff (objects) in tempDB and are sometimes
misleading. these system objects are not always updated in a
"timely" fashion, querying directly will sometimes return inaccurate
results (trying to get row counts directly is one example). the littany
goes on & on. in any case, ms does provide all those metadata sp
(geez, there's a boatload of them) to query these things. check the
BoL there's more sp & xp than you can shake a stick at.

> So as far as you're aware, its not possible? Not even to add triggers etc?

from the BoL:
Note
System tables should not be altered directly by any user. For example,
do not attempt to modify system tables with DELETE, UPDATE, or
INSERT statements, or user-defined triggers.

this was kicked around on one of the sql server lists (forget if it was
2k or 7.0) and i believe that this "recommendation" turns out to be
set in stone.





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

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



Re: solaris merant odbc

2001-02-01 Thread Mak Wing Lok

Go to your CF administrator page, create a new data sources with MERANT MS
SQL Server

Enter these Data Source Name, Description, Database Name,  Server IP
Address,  Server Port Number  with a valid login and password of the NT
server

please make sure that your solaris server and NT server are in the same
network segment or at least can 'ping' the NT server.




- Original Message -
From: Alex <[EMAIL PROTECTED]>
To: CF-Talk <[EMAIL PROTECTED]>
Sent: Friday, February 02, 2001 1:09 AM
Subject: solaris merant odbc


> how can i connect to a sqlserver on NT using merant odbc and CF on solaris
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: Broswer Back clears Form

2001-02-01 Thread Stephen Hait

Just a guess but are you using secure pages for these forms? If 
so, IE by design sometimes does not cache the form contents 
when the user clicks the back button. Supposedly this is for 
security purposes.

HTH,
Stephen


> In a form I am using some client side validation as well as server
> side, when the user submits a populated form and the server side
> validation finds an error (in this case using the CF
> formname_required method), then user then clicks the back button the
> form is cleared of the user input.  Its only happening in a specific
> template.  Any ideas why this occurs or what to look for?
> 
> Thanks,Adrian
> 
> 
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Newbie question

2001-02-01 Thread Geoff Hoffman

I want to use CFLOOP such as



 instead of CFOUTPUT QUERY= to display a series of returned records.

How do you use the value stored in thisRecord (the incrementing number) 
to access the correct record? I have it looping the right number 
of times, but I can only output the first record over and over.

TIA,

[EMAIL PROTECTED]







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



Login failed for user CFADMIN

2001-02-01 Thread Darryl Lyons

has anyone ever gotten this error - "Login failed for user CFADMIN"?

---
Regards,

Darryl Lyons
Web Development Team
LogicWorld Internet 

Email : [EMAIL PROTECTED]
Web : www.logicworld.com.au
Team Site : webdevelopment.logicworld.com.au

Phone : (07) 3230 8800
Fax : (07) 2320 8801
Technical Support : (07) 3230 8811
 
' P L U G   I N T O   T H E   W O R L D '


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

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



ParseDateTime()

2001-02-01 Thread Jim McAtee

What exactly is the use of this function?  I've found that it only works on
a string if the string passes the IsDate() validation function.  Now, if the
string passes that test, then it's _already_ a date.  So, what does parsing
the string accomplish?

The only thing that occurs to me is that in CF's "typeless" variable
environment, CF is really keeping track of variable types behind the scenes.
So by explicitly converting the string to a date variable, maybe you gain
some efficiency in not making CF implicitly convert variables.  I dunno.




  
  
  #DateFormat(thedate, "dd-mmm-yy")# #TimeFormat(thedate, "h:mm::ss tt")#
  

  The string entered is not a valid date/time.



Jim


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

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



Re: CF 5.0 (custom functions)

2001-02-01 Thread Jim McAtee

> Visited the beta forum and straight from the horse's mouth: custom
function
> ability is not in beta 1.
>
> That kinda killed my anticipation for 5.0 since functions can be a poor
> man's object oriented approach .
>
> So we have heard of query on query. Anything else? It better be worth the
> wait. If they can get rid of location 26 errors with 5.0 and/or give us
> access to the cf output buffer then I will be more than happy. =)


I don't know if lack of user defined functions in the first beta means that
they're not planned for CF 5.  I agree, however, without this simplest of
language features, most everything else is window-dressing.

Jim


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

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



Broswer Back clears Form

2001-02-01 Thread Adrian Cesana

In a form I am using some client side validation as well as server side,
when the user submits a populated form and the server side validation finds
an error (in this case using the CF formname_required method), then user
then clicks the back button the form is cleared of the user input.  Its only
happening in a specific template.  Any ideas why this occurs or what to look
for?

Thanks,Adrian


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

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



Re: CFX_CRWTOPDF - anyone let me have a copy?

2001-02-01 Thread Stephen M. Aylor


It was pulled cuz it violated Adobe's EULA (with 3x or later of Acrobat - as
I recall)

Why not just hook up with ..

www.pdflib.com

www.activepdf.com

www.digapp.com

ActivePDF seems to be the MOST CF aware/friendly IMO

- Original Message -
From: "Keith Thornburn" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, February 01, 2001 1:18 AM
Subject: CFX_CRWTOPDF - anyone let me have a copy?


> Dear all,
>
> The CFX_CRWTOPDF tag doesn't appear to be avavilable on the Allaire DevEx
> site.  Can anyone provide me with a copy?  The full package with the
> included instructions if possible.
>
> Many thanks,
>
> Keith
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



CF 5.0 (custom functions)

2001-02-01 Thread Xing Li

Visited the beta forum and straight from the horse's mouth: custom function
ability is not in beta 1.

That kinda killed my anticipation for 5.0 since functions can be a poor
man's object oriented approach .

So we have heard of query on query. Anything else? It better be worth the
wait. If they can get rid of location 26 errors with 5.0 and/or give us
access to the cf output buffer then I will be more than happy. =)

Xing


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

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



RE: session vars

2001-02-01 Thread mjones

try giving the lock a name or a scope attribute


-Original Message-
From: Peter Benoit [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 01, 2001 4:11 PM
To: CF-Talk
Subject: session vars


I'm trying to check for the existance of a session variable using CFPARAM,
if the variable doesn't exist, the user isn't logged in.  Like:





I'm getting this error msg:

Symbol SESSION.LOGGEDIN is in a scope that contains data shared across
threads and cannot be accessed without an active lock.


Anyone have experience with this?   I need help.

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

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



RE: session vars

2001-02-01 Thread Brad Howerter

You need to add the attribute SCOPE="SESSION"

-Original Message-
From: Peter Benoit [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 01, 2001 3:11 PM
To: CF-Talk
Subject: session vars


I'm trying to check for the existance of a session variable using CFPARAM,
if the variable doesn't exist, the user isn't logged in.  Like:





I'm getting this error msg:

Symbol SESSION.LOGGEDIN is in a scope that contains data shared across
threads and cannot be accessed without an active lock.


Anyone have experience with this?   I need help.

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

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



Re: SQL Server Indexes and System Objects

2001-02-01 Thread David Cummins

Obviously its potentially dangerous - but I don't like the MS policy of taking
your toys away because somebody else wasn't playing nice with them.

So as far as you're aware, its not possible? Not even to add triggers etc?

David Cummins

Paul Hastings wrote:
> 
> > I too have wondered how one can alter system tables - what I wanted to do
> was
> > add a trigger to the system tables to audit changes to the database
> structure...
> > however I was not able to, even though I was using the sa login.
> 
> monkeying about with your system tables is a disaster waiting to
> happen. ms removed quite a bit of "functionality" from these with
> sql server 7. it gets "worse" in sql server 2000.

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

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



AW: Batch Image Upload

2001-02-01 Thread Christoph Schmitz

Guess I misunderstood the scenario.. my first thought was that they wanted
to transfer the images from one CF-Server to another... uploading from the
client could be done with a batch file that could be fired by CFEXECUTE.

Chris





> -Ursprüngliche Nachricht-
> Von: Allan Pichler [mailto:[EMAIL PROTECTED]]
> Gesendet: Donnerstag, 1. Februar 2001 20:19
> An: CF-Talk
> Betreff: RE: Batch Image Upload
>
>
> Is it just me, but CFDIRECTORY grabs a directory of the server,
> so you can't
> use that to do a batch upload of images from a client!
>
> Allan Pichler
>
> -Original Message-
> From: Christoph Schmitz [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, February 01, 2001 10:37 AM
> To: CF-Talk
> Subject: AW: Batch Image Upload
>
>
> Hi,
>
> I guess I would do a CFDIRECTORY where the images are located and
> then just
> upload them using CFFTP
>
> directory="F:\whateverDir\"
>filter="*.jpg"
>name="imgQuery">
>
> 
> 
>localfile="F:\whateverDir\#imgQuery.name#" ...>
> 
>
> HTH,
>
> Chris
>
>
> > -Ursprüngliche Nachricht-
> > Von: Jason Larson [mailto:[EMAIL PROTECTED]]
> > Gesendet: Donnerstag, 1. Februar 2001 17:35
> > An: CF-Talk
> > Betreff: Batch Image Upload
> >
> >
> >
> > I was wondering if anyone has a custom cf tag, or some ideas to
> > accomplish a
> > batch image upload. I have a client that will be taking about 10
> > pictures a
> > day on 10 different construction projects. They want to have the
> > capability
> > to upload the images in a batch process without using a FTP
> > utility, for the
> > sake of saving time. I have been brewing this over the last
> couple of days
> > and any suggestions on how to accomplish this would be of great help.
> >
> > Thanks
> >
> > Jason Larson
> > [EMAIL PROTECTED]
> >
> >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: The BETA IS OUT!!! (query a query)

2001-02-01 Thread Xing Li

I haven't thought of a kickass problem/solution that would need query a
query ability so I'm happy that's it is there to use but not,  stoked, at
least not yet. =)

Have not tested or even had the priv to touch 5.0 yet but isn't just query a
query just a search option? So we can do a search for array values, structs,
and now arrays which are in a way structs. Hmm..actually, I have yet to use
structfind() with queries so I wouldn't know if that works already.

Maybe with query a query you can isolate a range of records that fits a new
condition on a existing query? but wouldn't that be a waste of ram and sql
power to return a large query in the first place that you need to do sub
queries on?

Basically, I'm trying to find a good problem that would really need the
feature and would speed up the performance while not wasting resources.

Xing


> So who's stoked about the Query a Query ability? Pretty damn cool eh?
>
> Michael Buffington
> [EMAIL PROTECTED]
> (714) 556-3890 x222
> http://www.price.com



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

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



RE: The BETA IS OUT!!!

2001-02-01 Thread Belfiori, Ross

Query a Query.lemme at it.  Where are the docsgotta read up on this
stuff.

-Original Message-
From: Michael Buffington [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 01, 2001 3:47 PM
To: CF-Talk
Subject: RE: The BETA IS OUT!!!


Before I stepped out for lunch I had access, and now that I'm back i see "No
Beta Software".  Pretty odd.

So who's stoked about the Query a Query ability? Pretty damn cool eh?

Michael Buffington
[EMAIL PROTECTED]
(714) 556-3890 x222
http://www.price.com 

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 01, 2001 12:43 PM
To: CF-Talk
Subject: RE: The BETA IS OUT!!!


> > The Beta for 5.0 is available!!!
> 
> The Beta forum says it's available 2nd Feb and the Beta login 
> says "No Beta Software." - I think you're jumping the gun a little...

No, it's on there.

The Allaire Beta site doesn't list every product for every user, for some
odd reason. I had to try several logins before seeing it.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: The BETA IS OUT!!!

2001-02-01 Thread Dave Watts

> Before I stepped out for lunch I had access, and now that I'm 
> back i see "No Beta Software".  Pretty odd.

I just got a call from Dave Gruber, who's the product manager of Allaire. He
told me that the 5.0 beta 1 release wasn't supposed to be publicly available
today, which is why it was there for a minute, then gone. He also said that
it should be available very soon. So, there you go. It'll be worth the wait.

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

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

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



RE: The BETA IS OUT!!!

2001-02-01 Thread Lee Fuller

It's not there.  Looks like someone put it online inadvertently and was told
to remove it.  Word is that it won't be there till tomorrow... ?

Oh well.. have waited this long.  Guess another day won't hurt.  And yes..
the query-a-query is pretty nice!



Lee Fuller
Chief Technical Officer
PrimeDNA Corporation

> -Original Message-
> From: Michael Buffington [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, February 01, 2001 1:47 PM
> To: CF-Talk
> Subject: RE: The BETA IS OUT!!!
>
>
> Before I stepped out for lunch I had access, and now that I'm
> back i see "No
> Beta Software".  Pretty odd.
>
> So who's stoked about the Query a Query ability? Pretty damn cool eh?
>
> Michael Buffington
> [EMAIL PROTECTED]
> (714) 556-3890 x222
> http://www.price.com
>
> -Original Message-
> From: Dave Watts [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, February 01, 2001 12:43 PM
> To: CF-Talk
> Subject: RE: The BETA IS OUT!!!
>
>
> > > The Beta for 5.0 is available!!!
> >
> > The Beta forum says it's available 2nd Feb and the Beta login
> > says "No Beta Software." - I think you're jumping the gun a little...
>
> No, it's on there.
>
> The Allaire Beta site doesn't list every product for every user, for some
> odd reason. I had to try several logins before seeing it.
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> voice: (202) 797-5496
> fax: (202) 797-5444
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: studio 4.5.2

2001-02-01 Thread Larry Juncker

I have been using 4.5.2 since it was released as final product and I LOVE
IT.  The resource warning is there on purpose so we don't end up with lost
work.

Larry Juncker
Senior Cold Fusion Developer
Heartland Communications Group, Inc.


-Original Message-
From: Deanna L. Schneider [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 01, 2001 1:58 PM
To: CF-Talk
Subject: studio 4.5.2


All right, so long ago, I upgraded to studio 4.5, hated it, and went back to
4.0. Now, all I've heard is good things about 4.5.2, so I installed 4.5
again and upgraded to 4.5.2.

Now, I keep getting low resource warnings (which was not happening with 4.0)
AND when I browse a directory that has sub-directories, I have to click the
folder icon of subdirectory and then click the icon of the directory before
I can see files that aren't in one of the sub-folders.

Am I the only one that this is happening to? Or are these common bugs and I
should just resign myself to the idea that I'm never going to get past 4.0.

-d




Deanna Schneider
Interactive Media Developer
UWEX Cooperative Extension Electronic Publishing Group
103 Extension Bldg
432 N. Lake Street
Madison, WI 53706
(608) 265-7923
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: bug in duplicate() function crashes server

2001-02-01 Thread Brad Howerter

Could someone please explain how to submit a bug to Allaire?

BTW, I was given a pretty good work around from James Ang on the cold fusion
forum: use duplicate(variables.application) instead of just
duplicate(application).

It works for the example below, but I was able to break it as well, with a
slightly more complicated version.

It is strange- the query below is a small query with no rows and it breaks.
Jason says it only failed for him with large queries.  I have another
application that has several large queries and multiple levels of
structures, and dupliate works fine in it.  I didn't discover the bug until
I used duplicate for something simple.

-Original Message-
From: Jason Aden [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 01, 2001 2:45 PM
To: CF-Talk
Subject: RE: bug in duplicate() function crashes server


We've had this problem since duplicate() was released. It only occured with
large queries. We have had to used CFWDDX to copy queries from one variable
name to the other.

At the developer conference I asked a couple Allaire guys if they had come
accross the problem and they hadn't. Maybe they're not duplicating many
queries.

We submitted it to Allaire a few weeks ago and have not heard anything back
from them. The more people complaining about it, the more likely it is to be
corrected, so please send it as a bug (I've never personally submitted a
bug, so I couldn't tell you how to do it).

Jason


Jason Aden
Allaire Certified Developer
[EMAIL PROTECTED]
www.wwstudios.com

> -Original Message-
> From: Brad Howerter [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, February 01, 2001 2:51 PM
> To: CF-Talk
> Subject: bug in duplicate() function crashes server
>
>
> I've come up with some simple code that crashes my server (WIN/NT, using
> IIS, Cold Fusion version 4.5 SP2 with duplicate() bug hot fix
> [cfserver-duplicated-fix-win-ent-us.exe] already applied).The hot fix
> for duplicate is for a different duplicate() bug.
>
> It's the query that causes duplicate() to crash the server.  Duplicate()
> works fine until I add the query to the code snippet.  I get
> errors like the
> ones below.
> I also have some structures where duplicate() works correctly, even though
> it does have queries. They're buried under sub-sub-sub structures, though,
> so maybe that's why. The simple code below crashes the server fairly
> consistently, although sometimes I have to run it twice before the cold
> fusion server crashes.
> How do you submit a bug?
>
> This bug was also posted as
> http://forums.allaire.com/devconf/Thread.cfm?Message_ID=634348,
> but I don't
> think any action was taken.
>
> I also saw it referenced in cf-talk:
> http://www.mail-archive.com/cf-talk@houseoffusion.com/msg39394.html, but
> again Alaire doesn't yet seem to have acknowledged it.
>
>  sample code ---
> 
> 
>   Untitled
> 
>
> 
>   
>   
>   
>   
> 
>
> 
> 
> 
>   request.cust = #request.app.cust.abc#, #request.app.cust.def#
> 
>
> 
> 
>
> error messages
> Error Diagnostic Information An error has occurred while processing the
> expression:
> request.cfaDumpInited=CFTempOnlyForSetVariableNeverUseThisNameInYo
> urCFMLCode
> 1223335654321
>
> 
> Error Diagnostic Information Request canceled or ignored by serverServer
> busy or unable to fulfill request. The server is unable to fulfill your
> request due to extremely high traffic or an unexpected internal error.
> Please attempt your request again (if you are repeatedly unsuccessful you
> should notify the site administrator). (Location Code: 26)
> 
> Error Diagnostic Information unknown exception condition
> CFMLInterpreterImp::process ---
> --
>
> Error Diagnostic Information Error occurred for unknown cause.
> Normally the reason for this error is that a critical system
> resource (such
> as memory or disk space) has been expended. You should check the available
> disk space on all of your drives to make sure you have not run out. You
> should also make sure that you are not running out of memory by
> running the
> Performance Monitor and observing the effect of your application on free
> system memory.
> Another reason for this error may be that your ODBC driver is generating a
> general protection fault. To help verify that your driver is funtioning
> properly you should attempt to submit the query which is causing
> this error
> to the data source using another ODBC application (such as MS Access or MS
> Query).
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



session vars

2001-02-01 Thread Peter Benoit

I'm trying to check for the existance of a session variable using CFPARAM,
if the variable doesn't exist, the user isn't logged in.  Like:





I'm getting this error msg:

Symbol SESSION.LOGGEDIN is in a scope that contains data shared across
threads and cannot be accessed without an active lock.


Anyone have experience with this?   I need help.

-Peter


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

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



RE: Batch Image Upload

2001-02-01 Thread Moneymaker, Jon S (WPNSTA Yorktown)

Very nifty tag
would LOVE to have my programming hands on it
Gratitude and thanks are yours!!!



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 01, 2001 2:00 PM
To: CF-Talk
Subject: RE: Batch Image Upload


> I was wondering if anyone has a custom cf tag, or some ideas to
> accomplish a
> batch image upload. I have a client that will be taking about 10
> pictures a
> day on 10 different construction projects. They want to have the
> capability
> to upload the images in a batch process without using a FTP
> utility, for the
> sake of saving time. I have been brewing this over the last couple of days
> and any suggestions on how to accomplish this would be of great help.

You mean like this (functional demo):

  http://www.humankindsystems.com/images.htm

We've been thinking of making this tag available, if there's an interest for
it.

Ron Allen Hornbaker
President/CTO
Humankind Systems, Inc.
http://humankindsystems.com
mailto:[EMAIL PROTECTED]
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: The BETA IS OUT!!!

2001-02-01 Thread Xing Li


Hopefully they do not attempt make this a closed beta. I tried my normal
login, which I have had for more than a year now, and I don't see it. I
register a new account and it doesn't work either. Maybe we just have to
wait till Feb2 for all public access.

xing


> > > The Beta for 5.0 is available!!!
> >
> > The Beta forum says it's available 2nd Feb and the Beta login
> > says "No Beta Software." - I think you're jumping the gun a little...
>
> No, it's on there.
>
> The Allaire Beta site doesn't list every product for every user, for some
> odd reason. I had to try several logins before seeing it.
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> voice: (202) 797-5496
> fax: (202) 797-5444
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: Application.cfm limit

2001-02-01 Thread Russel Madere

I think the limit is 1.  I personally would never want to have pages
belonging to several different applications co-mingled.  Or have one set od
code belong to multiple applications.

Think of the memory mess that could cause if you overloaded the application
memory spaces like that.

Russel


  Russel Madere, Jr. Senior Web Developer
  ICQ: 5446158   http://www.TurboSquid.com

Some days you eat the bear; some days the bear eats you.



> -Original Message-
> From: Jeff Davis [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, February 01, 2001 14:51
> To: CF-Talk
> Subject: Application.cfm limit
>
>
> Does anyone know of a limit to the number applications that can
> be defined in the application.cfm file?
>
>
> Jeff Davis
>
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: java & IE

2001-02-01 Thread James McCullough

This is why it doesn't work.

http://support.microsoft.com/support/kb/articles/Q232/7/02.ASP

-Original Message-
From: Mike [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 01, 2001 3:56 PM
To: CF-Talk
Subject: Re: java & IE


I have the curly bracket in my code I just missed it when I cut and pasted
it
I getting
plugins.length = 0


- Original Message -
From: Christoph Schmitz <[EMAIL PROTECTED]>
To: CF-Talk <[EMAIL PROTECTED]>
Sent: Thursday, February 01, 2001 10:36 AM
Subject: AW: java & IE


> Hi,
>
> IE insitst on the closing curly bracket after the document.write().
Besides
> that I assume that IE doesn't know the plugins array correct me if I'm
> wrong.
>
> HTH,
>
> Chris
>
>
> > -Ursprüngliche Nachricht-
> > Von: Mike [mailto:[EMAIL PROTECTED]]
> > Gesendet: Donnerstag, 1. Februar 2001 20:09
> > An: CF-Talk
> > Betreff: java & IE
> >
> >
> > Does any know why this works in Netscape not IE
> > Thanks Mike
> >
> > 
> > 
> > 
> >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



directory setup

2001-02-01 Thread SRetsky

Hi Everyone:

I'm building a web site where a client logs into an account
and enters transactions.  Once a transaction is entered by a 
client, the client always has access to that transaction.  
The client can attach (upload) files to a transaction.

I want a client to only see files attached to a transaction that 
the client can access.

I don't want a client to be able to see files they don't 
have access to.

A client is only shown files attached to their own transactions,
but I don't want someone sneaking around.

my Q is:

what is the best way (easy and secure) to setup the directory 
and name the files?

2 thoughts are:
1. put all the files in the same directory and name them:
   File.t.xxx.doc

where t is the transaction number and
  xxx is the document number for each file (001, 002, etc.)
pros: easy to manage.
cons: someone could guess a transaction and document number here that
they should not see.


2. setup a separate directory for each client and name them:
   same as in #1

pros: easy to manage.
cons: someone could guess a directory, transaction and document number here 
that
they should not see.

any suggestions?

tia

Sandy


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



RE: studio 4.5.2

2001-02-01 Thread Sandra Clark

Deanna.

Basically CF Studio 4.5.2 sucks big time, specifically in FTP, RDS and
Projects with RDS.

I was able to finally get it to be more stable though there are still things
that drive me buggy.

I am running Windows 2000 server SP1.  I can't say this will help in other
versions.  YMMV.  Proceed at your own risk.


Steps.
1. Write down your serial number from CF studio 4.5  (This is all you need
for the CF studio 4.5.2 upgrade I promise)

2. Uninstall both CF studio 4.5 and 4.0.  Make sure that they are
completely deleted from the hard drive after the install.
3. Go ahead and delete the following files in WINNT/system32.
cfvalidator.dll
circ3.ocx
CFSourceControl.ocx
CfShellFtpRds.dll
CFFileProxy.dll
CFFtp.dll
CFRegExp.dll
cfssvradmin.dll
wddx_com.dll
xmlparse.dll
xmltok.dll
cfmsg.dll
CFRDS.dll

4. Go into Registry Editor and delete the following entries.
HKEY_CURRENT_USER->Software->Allaire->HomeSite4 - Entire Directory
HKEY_CURRENT_USER->Software->Allaire->HomeSite45 - Entire Directory
HKEY_CURRENT_USER->Software->Allaire->Studio4 - Entire Directory
HKEY_CURRENT_USER->Software->Allaire->Studio45 - Entire Directory
HKEY_LOCAL_MACHINE->SOFTWARE->Allaire->Any directory to do with either
homesite or ColdFusion Studio.

5.  Reboot your machine.

6.  Regsrv32 all the dlls reinstalled in WINNT/system32.
See http://www.allaire.com/Handlers/index.cfm?ID=14633&Method=Full for
instructions.

7.  Reboot again.

8.  Run CF Studio  It will still suck, but it will suck a bit less.

Unfortunately, it seems (at least to me) that CFStudio 4.5.x and CFStudio
4.0 do not reside comfortably on the same machine, its all or nothing.  and
the uninstall sucks big time, it didn't seem to delete anything.

-Original Message-
From: Deanna L. Schneider [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 01, 2001 11:58 AM
To: CF-Talk
Subject: studio 4.5.2


All right, so long ago, I upgraded to studio 4.5, hated it, and went back to
4.0. Now, all I've heard is good things about 4.5.2, so I installed 4.5
again and upgraded to 4.5.2.

Now, I keep getting low resource warnings (which was not happening with 4.0)
AND when I browse a directory that has sub-directories, I have to click the
folder icon of subdirectory and then click the icon of the directory before
I can see files that aren't in one of the sub-folders.

Am I the only one that this is happening to? Or are these common bugs and I
should just resign myself to the idea that I'm never going to get past 4.0.

-d




Deanna Schneider
Interactive Media Developer
UWEX Cooperative Extension Electronic Publishing Group
103 Extension Bldg
432 N. Lake Street
Madison, WI 53706
(608) 265-7923
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: Certification Help

2001-02-01 Thread Jennifer

At 03:29 PM 2/1/01 -0500, you wrote:
>I'm looking to get certified in CF development [one of these days}. I was
>wondering if anyone could point out to me any good books or references that
>would help me prepare for the exam. Any help would be appreciated. Thanks.

I'm thinking the same thing today. There's a pdf file on Allaire's site 
that covers the subjects that are on the test.

http://www.allaire.com/DocumentCenter/Partners/cf45_examguide.pdf
They also have a link to this site, which has prep materials but isn't 
associated with Allaire:
http://www.cfcertification.com


Now announcing my newly updated website
http://www.blivit.org/mr_urc/index.cfm
Resume: http://www.blivit.org/mr_urc/resume.cfm


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

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



RE: String to Int

2001-02-01 Thread Dave Watts

> Is CFQueryParam something that can/should be used on 
> INSERT and UPDATE statements also? Would it improve 
> performance there? Or is it just for SELECTs?

It's only applicable for WHERE clauses. In cases when you use a WHERE clause
in one of those, it may be appropriate.

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

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

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



Concealed

2001-02-01 Thread Boris Wong

Subject:  Re: Concealed

Thanks for the email.  I'm away from my desktop now, but I will follow up with you on 
this matter.  If it is of an urgent nature call me at  1.800.AGLOBAL.  Bye for now.  
Boris

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

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



RE: The BETA IS OUT!!!

2001-02-01 Thread Michael Buffington

Before I stepped out for lunch I had access, and now that I'm back i see "No
Beta Software".  Pretty odd.

So who's stoked about the Query a Query ability? Pretty damn cool eh?

Michael Buffington
[EMAIL PROTECTED]
(714) 556-3890 x222
http://www.price.com 

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 01, 2001 12:43 PM
To: CF-Talk
Subject: RE: The BETA IS OUT!!!


> > The Beta for 5.0 is available!!!
> 
> The Beta forum says it's available 2nd Feb and the Beta login 
> says "No Beta Software." - I think you're jumping the gun a little...

No, it's on there.

The Allaire Beta site doesn't list every product for every user, for some
odd reason. I had to try several logins before seeing it.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: bug in duplicate() function crashes server

2001-02-01 Thread Jason Aden

We've had this problem since duplicate() was released. It only occured with
large queries. We have had to used CFWDDX to copy queries from one variable
name to the other.

At the developer conference I asked a couple Allaire guys if they had come
accross the problem and they hadn't. Maybe they're not duplicating many
queries.

We submitted it to Allaire a few weeks ago and have not heard anything back
from them. The more people complaining about it, the more likely it is to be
corrected, so please send it as a bug (I've never personally submitted a
bug, so I couldn't tell you how to do it).

Jason


Jason Aden
Allaire Certified Developer
[EMAIL PROTECTED]
www.wwstudios.com

> -Original Message-
> From: Brad Howerter [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, February 01, 2001 2:51 PM
> To: CF-Talk
> Subject: bug in duplicate() function crashes server
>
>
> I've come up with some simple code that crashes my server (WIN/NT, using
> IIS, Cold Fusion version 4.5 SP2 with duplicate() bug hot fix
> [cfserver-duplicated-fix-win-ent-us.exe] already applied).The hot fix
> for duplicate is for a different duplicate() bug.
>
> It's the query that causes duplicate() to crash the server.  Duplicate()
> works fine until I add the query to the code snippet.  I get
> errors like the
> ones below.
> I also have some structures where duplicate() works correctly, even though
> it does have queries. They're buried under sub-sub-sub structures, though,
> so maybe that's why. The simple code below crashes the server fairly
> consistently, although sometimes I have to run it twice before the cold
> fusion server crashes.
> How do you submit a bug?
>
> This bug was also posted as
> http://forums.allaire.com/devconf/Thread.cfm?Message_ID=634348,
> but I don't
> think any action was taken.
>
> I also saw it referenced in cf-talk:
> http://www.mail-archive.com/cf-talk@houseoffusion.com/msg39394.html, but
> again Alaire doesn't yet seem to have acknowledged it.
>
>  sample code ---
> 
> 
>   Untitled
> 
>
> 
>   
>   
>   
>   
> 
>
> 
> 
> 
>   request.cust = #request.app.cust.abc#, #request.app.cust.def#
> 
>
> 
> 
>
> error messages
> Error Diagnostic Information An error has occurred while processing the
> expression:
> request.cfaDumpInited=CFTempOnlyForSetVariableNeverUseThisNameInYo
> urCFMLCode
> 1223335654321
>
> 
> Error Diagnostic Information Request canceled or ignored by serverServer
> busy or unable to fulfill request. The server is unable to fulfill your
> request due to extremely high traffic or an unexpected internal error.
> Please attempt your request again (if you are repeatedly unsuccessful you
> should notify the site administrator). (Location Code: 26)
> 
> Error Diagnostic Information unknown exception condition
> CFMLInterpreterImp::process ---
> --
>
> Error Diagnostic Information Error occurred for unknown cause.
> Normally the reason for this error is that a critical system
> resource (such
> as memory or disk space) has been expended. You should check the available
> disk space on all of your drives to make sure you have not run out. You
> should also make sure that you are not running out of memory by
> running the
> Performance Monitor and observing the effect of your application on free
> system memory.
> Another reason for this error may be that your ODBC driver is generating a
> general protection fault. To help verify that your driver is funtioning
> properly you should attempt to submit the query which is causing
> this error
> to the data source using another ODBC application (such as MS Access or MS
> Query).
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: Is the beta free???

2001-02-01 Thread Jason Aden

Yes, you have to be on "the list" though. :) If you don't have access to the
http://beta.allaire.com site, just email them at mailto:[EMAIL PROTECTED] and
ask for access. Make sure to tell them what you want access to (CF, Spectra,
JRun, etc.).

Jason


Jason Aden
Allaire Certified Developer
[EMAIL PROTECTED]
www.wwstudios.com

> -Original Message-
> From: Phoeun Pha [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, February 01, 2001 3:27 PM
> To: CF-Talk
> Subject: Is the beta free???
>
>
> i hope it is!
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: Certification Help

2001-02-01 Thread Jason Aden

The Forta books are both good references (you should have both the regular
and advanced CF books). You will need to have knowledge of a wide variety of
ColdFusion concepts, not just things you are exposed to as a developer. You
should take a look at the study guide from Allaire. It lists the topics
covered (the example problems aren't too much help).

One of the most common peices of advice I've heard is to read up on every
ColdFusion tag and function, just so you've seen what the attributes and
arguments are. This is a very good idea. I didn't read up on all areas, just
parts that I knew I was weak in or hadn't used for a long time. I did it in
about 10 minutes before going in for the exam, and I think it helped me to
get a higher score.

HTH,

Jason


Jason Aden
Allaire Certified Developer
[EMAIL PROTECTED]
www.wwstudios.com

> -Original Message-
> From: Richard Banks [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, February 01, 2001 3:29 PM
> To: CF-Talk
> Subject: Certification Help
>
>
> I'm looking to get certified in CF development [one of these days}. I was
> wondering if anyone could point out to me any good books or
> references that
> would help me prepare for the exam. Any help would be appreciated. Thanks.
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: Custom tag for generating Org Charts

2001-02-01 Thread Angel Stewart

Umm...how come you always end your emails this way?
Questions and concerns about what?

You're the one that asked the quest...oh...
oh I see.

I guess this would qualify as a question or concern eh..
*reaches for phone*

-Gel
;-P
hee hee hee

- Original Message - 
From: Rosa, Issac <[EMAIL PROTECTED]>

> If you have any questions or concerns, please feel free to call me at
> 407-658-3111.
> 
> Thank you,
> 
> > Issac Rosa



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

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



Re: Is the beta free???

2001-02-01 Thread Alex Aguilar

to try out yes.
CF5 will be free if you purchased a subscription.

- Original Message -
From: "Phoeun Pha" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, February 01, 2001 3:26 PM
Subject: Is the beta free???


> i hope it is!
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: The BETA IS OUT!!!

2001-02-01 Thread David E. Crawford

It was there for me about an hour ago, but is gone now, with the same
userid.  Who knows.

DC
- Original Message -
From: "Dave Watts" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, February 01, 2001 15:43
Subject: RE: The BETA IS OUT!!!


> > > The Beta for 5.0 is available!!!
> >
> > The Beta forum says it's available 2nd Feb and the Beta login
> > says "No Beta Software." - I think you're jumping the gun a little...
>
> No, it's on there.
>
> The Allaire Beta site doesn't list every product for every user, for some
> odd reason. I had to try several logins before seeing it.
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> voice: (202) 797-5496
> fax: (202) 797-5444
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: SQL Server Indexes and System Objects

2001-02-01 Thread Paul Hastings

> I too have wondered how one can alter system tables - what I wanted to do
was
> add a trigger to the system tables to audit changes to the database
structure...
> however I was not able to, even though I was using the sa login.

monkeying about with your system tables is a disaster waiting to
happen. ms removed quite a bit of "functionality" from these with
sql server 7. it gets "worse" in sql server 2000.


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

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



Concealed

2001-02-01 Thread Boris Wong

Subject:  RE: The BETA IS OUT!!!

Thanks for the email.  I'm away from my desktop now, but I will follow up with you on 
this matter.  If it is of an urgent nature call me at  1.800.AGLOBAL.  Bye for now.  
Boris

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

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



RE: studio 4.5.2

2001-02-01 Thread Philip Arnold - ASP

> All right, so long ago, I upgraded to studio 4.5, hated it, and
> went back to
> 4.0. Now, all I've heard is good things about 4.5.2, so I installed 4.5
> again and upgraded to 4.5.2.
>
> Now, I keep getting low resource warnings (which was not
> happening with 4.0)
> AND when I browse a directory that has sub-directories, I have to
> click the
> folder icon of subdirectory and then click the icon of the
> directory before
> I can see files that aren't in one of the sub-folders.
>
> Am I the only one that this is happening to? Or are these common
> bugs and I
> should just resign myself to the idea that I'm never going to get
> past 4.0.

The resource warning isn't a bug - it's a real feature (Studio 4.5.2 uses
less resources than 4.5, but still a fair amount)
To remove the warning - this was sent by Allaire support during the Beta;
There are two registry keys you can add to control the resource warning
level % and the checking interval. We default these, but you can add them to
your HKEY_CURRENT_USER\SOFTWARE\Allaire\Cold Fusion Studio 4.5 main root key

Key #1: ResourceLevelCheck - an integer % indicating the starting threshold
to start warning about resources. Our default is 30%.

Key #2: ResourceLevelInterval - an integer indicating the number of minutes
interval to check resources. The default is 10. You can completely disable
resource monitoring (highly unrecommended) by setting this to 0.

HTH

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

"Websites for the real world"

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


> -Original Message-
> From: Deanna L. Schneider [mailto:[EMAIL PROTECTED]]
> Sent: 01 February 2001 19:58
> To: CF-Talk
> Subject: studio 4.5.2
>
>
>
> -d
>
>
>
> 
> Deanna Schneider
> Interactive Media Developer
> UWEX Cooperative Extension Electronic Publishing Group
> 103 Extension Bldg
> 432 N. Lake Street
> Madison, WI 53706
> (608) 265-7923
>
>
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Application.cfm limit

2001-02-01 Thread Jeff Davis

Does anyone know of a limit to the number applications that can be defined in the 
application.cfm file?


Jeff Davis



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

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



RE: String to Int

2001-02-01 Thread Evan Lavidor

Is CFQueryParam something that can/should be used on INSERT and UPDATE
statements also?  Would it improve performance there?  Or is it just for
SELECTs?

Thanks,

Evan



> -Original Message-
> From: Dave Watts [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, February 01, 2001 9:20 AM
> To: CF-Talk
> Subject: RE: String to Int
>
>
> > > I don't know that I'd make that a blanket recommendation. If
> > > you use CFQUERYPARAM to make a prepared statement, you can't
> > > use CACHEDWITHIN/CACHEDAFTER with your CFQUERY tags. You'll
> > > want to determine which is more appropriate in a given case.
> > >
> > > In any case, you'll get better performance using stored
> > > procedures with SQL Server than you will with CFQUERYPARAM;
> > > Oracle, on the other hand, gets more out of prepared statements
> > > and less out of SPs than SQL Server does.
> >
> > True, but using CFQueryParam is a lot more secure than using
> > just Val()
>
> How so? If your concern is that the value passed may not be numeric, both
> will do the same thing. The only difference is that CFQUERYPARAM may also
> improve database processing performance.
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> voice: (202) 797-5496
> fax: (202) 797-5444
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: java & IE

2001-02-01 Thread Mike

I have the curly bracket in my code I just missed it when I cut and pasted
it
I getting
plugins.length = 0


- Original Message -
From: Christoph Schmitz <[EMAIL PROTECTED]>
To: CF-Talk <[EMAIL PROTECTED]>
Sent: Thursday, February 01, 2001 10:36 AM
Subject: AW: java & IE


> Hi,
>
> IE insitst on the closing curly bracket after the document.write().
Besides
> that I assume that IE doesn't know the plugins array correct me if I'm
> wrong.
>
> HTH,
>
> Chris
>
>
> > -Ursprüngliche Nachricht-
> > Von: Mike [mailto:[EMAIL PROTECTED]]
> > Gesendet: Donnerstag, 1. Februar 2001 20:09
> > An: CF-Talk
> > Betreff: java & IE
> >
> >
> > Does any know why this works in Netscape not IE
> > Thanks Mike
> >
> > 
> > 
> > 
> >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: The BETA IS OUT!!!

2001-02-01 Thread Clint Tredway

I went to teh beta site and it wasn't there...

--
Clint Tredway
www.factorxsoftware.com
--

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

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



RE: The BETA IS OUT!!!

2001-02-01 Thread Dave Watts

> > The Beta for 5.0 is available!!!
> 
> The Beta forum says it's available 2nd Feb and the Beta login 
> says "No Beta Software." - I think you're jumping the gun a little...

No, it's on there.

The Allaire Beta site doesn't list every product for every user, for some
odd reason. I had to try several logins before seeing it.

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

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

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



RE: Hacked server - iindex.cfm, CFX_SpawnL and ipsvcs.exe

2001-02-01 Thread lsellers


> So you're trying to deny you're responsible! Nah, just j/k.

/-)

I have done keyword searches for "intrafoundation" on yahoo from time to
time and found where people were testing out cfx_spawnl or
cfx_consolecommand and just leave the thing there. Documentation and all. On
their production servers. You can run the examples and eek... it lists
all kinds of things about their routing info, etc you definately don't want
anyone else to know.

So it could have been more embarassing.

> Methinks uploading wasn't necessary   ;-)
>
> But the zombie slaves part was spot on... until we cured them with new
> network passwords all-round.

Didn't notice a large collection of porn or warez sitting on the drives
anywhere did you? :) If not... who knows what they were using it as a
platform for. Oh well.

--min



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

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



Is the beta free???

2001-02-01 Thread Phoeun Pha

i hope it is!

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

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



Certification Help

2001-02-01 Thread Richard Banks

I'm looking to get certified in CF development [one of these days}. I was
wondering if anyone could point out to me any good books or references that
would help me prepare for the exam. Any help would be appreciated. Thanks.


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

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



RE: The BETA IS OUT!!!

2001-02-01 Thread Richard Kern

where?  all I find on the beta page is a note saying the cycle begins
2/2/2001
Richard Kern

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 01, 2001 12:05 PM
To: CF-Talk
Subject: RE: The BETA IS OUT!!!


> The Beta for 5.0 is available!!!

You'll want to be careful with it - it is significantly different in many
ways from prior releases, and you may have installation problems. Don't put
in on a machine you're using for any development work. Also, there's no
Advanced Security in it, so you can't run Spectra on it, for those who care.

Also, when I installed it, I had an odd problem with RDS failing to find a
file, and I had to mark the service as disabled, shut down, and restart.

There's some interesting stuff in there, though, such as a bundled install
of JRun, significant changes to ClusterCATS, and some facilities for backing
up server configurations. Also, you can pass arbitrary ODBC connection
strings directly to the database now.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Custom tag for generating Org Charts

2001-02-01 Thread Rosa, Issac

Does anyone know of a custom tag or product that will dynamically create Org
Charts based on employee/manager relationships in a DB?

If you have any questions or concerns, please feel free to call me at
407-658-3111.

Thank you,

> Issac Rosa
> 
> IT - National Sales & Marketing
> OLAP Specialist Team Lead
> Ofc: 407-658-3111
> Cell: 407-342-0644
> Fax: 407-971-2374
> [EMAIL PROTECTED]
> 

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

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



ASP - OT

2001-02-01 Thread Herman, John

I have a sales portal application in beta testing right now.  It was
developed using ASP (not my choice), with much of the functionality in
compiled VB (dll's).  I would like to get bids for future versions of the
application.  Would anyone like to recommend an experience developer(s) who
could help me with this.

TIA,

John C. Herman

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

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



RE: Batch Image Upload

2001-02-01 Thread Peter Stolz

How about a 'zipping' utility? Have them zip the images up into one file and
upload it.
Then, you can unzip them on the server.

P.

-Original Message-
From: Jason Larson [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 01, 2001 11:35 AM
To: CF-Talk
Subject: Batch Image Upload



I was wondering if anyone has a custom cf tag, or some ideas to accomplish a
batch image upload. I have a client that will be taking about 10 pictures a
day on 10 different construction projects. They want to have the capability
to upload the images in a batch process without using a FTP utility, for the
sake of saving time. I have been brewing this over the last couple of days
and any suggestions on how to accomplish this would be of great help.

Thanks

Jason Larson
[EMAIL PROTECTED]
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: SQL Server Indexes and System Objects

2001-02-01 Thread David Cummins

I too have wondered how one can alter system tables - what I wanted to do was
add a trigger to the system tables to audit changes to the database structure...
however I was not able to, even though I was using the sa login.

David Cummins

Philip Arnold - ASP wrote:
> 
> This might be a dumb question, but is there a way to build an index on a
> system object?
> 
> I'm trying to speed up queries on either Information_Schema.Columns or
> SysObjects/SysColumns
> 
> It tells me that "ad hoc updates to system catalogs are not enabled"
> Unless one of the switches gets around this...
> 
> Any ideas anyone?
> 
> Philip Arnold
> Director
> Certified ColdFusion Developer
> ASP Multimedia Limited
> T: +44 (0)20 8680 1133
> 
> "Websites for the real world"

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

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



RE: The BETA IS OUT!!!

2001-02-01 Thread Garza, Jeff

No, not really, but yes I did jump the gun "a little" . My apologies to
the list.

Jeff Garza
Web Developer/Webmaster
Spectrum Astro, Inc.
480.892.8200

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



-Original Message-
From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 01, 2001 12:19 PM
To: CF-Talk
Subject: RE: The BETA IS OUT!!!


> The Beta for 5.0 is available!!!

The Beta forum says it's available 2nd Feb and the Beta login says "No Beta
Software." - I think you're jumping the gun a little...

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

"Websites for the real world"

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: AVG a Query to a Decimal

2001-02-01 Thread Philip Arnold - ASP

> I can't figure out how to output a query to the hundreth place, I
> can format
> the number to the Hundereth, but CF or SQL Server round it to the nearest
> number. I am currently running CF 4.5.1 with SQL Server.
>
> Here's my query and output:
>
>  password="#DSPassword#">
> SELECT  AVG(BB_BoxGame.HTotal) AS HomeAvg,
>   SUM(BB_BoxGame.HTotal) AS HomeTotal,
>   AVG(BB_BoxGame.VTotal) AS VisitAvg,
>   SUM(BB_BoxGame.VTotal) AS VisitTotal
> FROM  BB_BoxGame
> WHERE BB_BoxGame.HomeID = 187 OR BB_BoxGame.VisitorID = 187
> 
>
> 
> Home Average / #Numberformat(HomeAvg, "99.99")#
> Home Total / #HomeTotal#
> On the Road Average / #Numberformat(VisitAvg, "99.99")#
> On the Road Total / #VisitTotal#
> 

The return value for AVG depends on the field type;
Thus an Int will always return an Int, a Float will always return a Float,
etc.

If you want to get decimals from the AVG, then Convert it first;

SELECTAVG(Convert(Float,BB_BoxGame.HTotal)) AS HomeAvg,
SUM(BB_BoxGame.HTotal) AS HomeTotal,
AVG(Convert(Float,BB_BoxGame.VTotal)) AS VisitAvg,
SUM(BB_BoxGame.VTotal) AS VisitTotal
FROMBB_BoxGame
WHERE   BB_BoxGame.HomeID = 187 OR BB_BoxGame.VisitorID = 187

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: Jason Larson [mailto:[EMAIL PROTECTED]]
> Sent: 01 February 2001 17:12
> To: CF-Talk
> Subject: AVG a Query to a Decimal
>
>
>
>
> Thanks
> Jason Larson
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: The BETA IS OUT!!!

2001-02-01 Thread Jason Aden

Hmm... I just downloaded it about an hour ago. When I go to the beta site
now I get the "No Beta Software" message too. They must have made a mistake
and opened it up early temporarily.

Jason


Jason Aden
Allaire Certified Developer
[EMAIL PROTECTED]
www.wwstudios.com

> -Original Message-
> From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, February 01, 2001 2:19 PM
> To: CF-Talk
> Subject: RE: The BETA IS OUT!!!
>
>
> > The Beta for 5.0 is available!!!
>
> The Beta forum says it's available 2nd Feb and the Beta login
> says "No Beta
> Software." - I think you're jumping the gun a little...
>
> Philip Arnold
> Director
> Certified ColdFusion Developer
> ASP Multimedia Limited
> T: +44 (0)20 8680 1133
>
> "Websites for the real world"
>
> **
> This email and any files transmitted with it are confidential and
> intended solely for the use of the individual or entity to whom they
> are addressed. If you have received this email in error please notify
> the system manager.
> **
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: The BETA IS OUT!!!

2001-02-01 Thread Benjamin S. Rogers

You know, I was able to download it earlier but for some reason I get just
the message "No Beta Software" now. Perhaps they've recalled it? Is anybody
still able to download it?

Benjamin S. Rogers
Web Developer, c4.net
Voice: (508) 240-0051
Fax: (508) 240-0057

-Original Message-
From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 01, 2001 2:19 PM
To: CF-Talk
Subject: RE: The BETA IS OUT!!!


> The Beta for 5.0 is available!!!

The Beta forum says it's available 2nd Feb and the Beta login says "No Beta
Software." - I think you're jumping the gun a little...

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

"Websites for the real world"

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: The BETA IS OUT!!!

2001-02-01 Thread Jason Aden

I read the release notes and didn't see anything about custom functions.
Does anyone know if this has been included in beta 1?

Jason


Jason Aden
Allaire Certified Developer
[EMAIL PROTECTED]
www.wwstudios.com

> -Original Message-
> From: Dave Watts [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, February 01, 2001 2:05 PM
> To: CF-Talk
> Subject: RE: The BETA IS OUT!!!
>
>
> > The Beta for 5.0 is available!!!
>
> You'll want to be careful with it - it is significantly different in many
> ways from prior releases, and you may have installation problems.
> Don't put
> in on a machine you're using for any development work. Also, there's no
> Advanced Security in it, so you can't run Spectra on it, for
> those who care.
>
> Also, when I installed it, I had an odd problem with RDS failing to find a
> file, and I had to mark the service as disabled, shut down, and restart.
>
> There's some interesting stuff in there, though, such as a bundled install
> of JRun, significant changes to ClusterCATS, and some facilities
> for backing
> up server configurations. Also, you can pass arbitrary ODBC connection
> strings directly to the database now.
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> voice: (202) 797-5496
> fax: (202) 797-5444
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



  1   2   3   >