CF Express for simple intranet/extranet app?

2015-03-08 Thread Pete Ruckelshaus

I manage a very small non-profit organization.  I am working on an app for
internal use and am using CF.  Are there limitations to CF Express that
would prevent me from running this as an intranet/extranet application?
Does it use IIS as a web server like other versions, or does it use the
internal web server?  Can I access it from an address other than localhost?

Thanks,

Pete


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360226
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF Express for simple intranet/extranet app?

2015-03-08 Thread Russ Michaels

It is really only intended for development and testing.
details here:
https://wikidocs.adobe.com/wiki/display/coldfusionen/Installing+ColdFusion+Express

On Sun, Mar 8, 2015 at 2:39 PM, Pete Ruckelshaus pruckelsh...@gmail.com
wrote:


 I manage a very small non-profit organization.  I am working on an app for
 internal use and am using CF.  Are there limitations to CF Express that
 would prevent me from running this as an intranet/extranet application?
 Does it use IIS as a web server like other versions, or does it use the
 internal web server?  Can I access it from an address other than localhost?

 Thanks,

 Pete


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360227
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF Express ... Syntax error - CFQUERY - UPDATE Options

2008-12-30 Thread Dave Watts
 After a bit (!) of research,  I am still a little confused about using
 CFQUERYPARAM.
 It is not in my SAMs Teach Yourself Coldfusion Express in 24 Hrs.

Probably not. I'm not sure CFQUERYPARAM exists in CF Express.
CFQUERYPARAM was introduced around the same time that CF Express came
out, but CF Express was not really very useful when it came out, and
things have changed quite a bit since it came out, making it even less
useful.

It's not necessary for the completion of your exercises to use
CFQUERYPARAM, but you would definitely want to use that in a real
application. To learn more about CFQUERYPARAM, read the online CF 8
documentation and this Adobe Devnet article:

http://www.adobe.com/support/documentation/en/coldfusion/
http://www.adobe.com/devnet/coldfusion/articles/cfqueryparam.html

 Understand that CS_SQL_BIT can be 1 or 0.
 But also found that msAccess CheckBox data can be 1,0 or NULL.

NULL is the absence of a value. Any field can be set to allow NULL,
unless the field is part of a unique index or something similar
(identity columns, etc).

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317268
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF Express ... Syntax error - CFQUERY - UPDATE Options

2008-12-29 Thread Al Musella, DPM
I just want to point out that you should be using cfqueryparam around 
all of those form elements.  The way you have it will last about 2 
hours before someone hacks into your database.
see: 
http://www.forta.com/blog/index.cfm/2005/12/21/SQL-Injection-Attacks-Easy-To-Prevent-But-Apparently-Still-Ignoredhttp://www.forta.com/blog/index.cfm/2005/12/21/SQL-Injection-Attacks-Easy-To-Prevent-But-Apparently-Still-Ignored
 
for details



At 11:45 AM 12/28/2008, you wrote:
 Thanks,   but that is supposed to be the right bracket of the  SET
 
 
  Comments = '#trim(Form.Comments)#')
 
  Should be Comments =  Comments = '#trim(Form.Comments)#'
 
Yep, but syntactically (sqlwise) you can't have the construct 
(opening and closing bracket) the way it's laid out unlike your 
INSERT statements.



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317222
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CF Express ... Syntax error - CFQUERY - UPDATE Options

2008-12-29 Thread BobSharp
How can CFQUERYPARAM be applied to a boolean (Yes/No) field ?

I cannot find it in the  CDSQLTYPE list




- Original Message - 
From: Al Musella, DPM muse...@virtualtrials.com
To: cf-talk cf-talk@houseoffusion.com
Sent: Monday, December 29, 2008 5:40 PM
Subject: Re: CF Express ... Syntax error - CFQUERY - UPDATE Options


I just want to point out that you should be using cfqueryparam around
 all of those form elements.  The way you have it will last about 2
 hours before someone hacks into your database.
 see:
 http://www.forta.com/blog/index.cfm/2005/12/21/SQL-Injection-Attacks-Easy-To-Prevent-But-Apparently-Still-Ignoredhttp://www.forta.com/blog/index.cfm/2005/12/21/SQL-Injection-Attacks-Easy-To-Prevent-But-Apparently-Still-Ignored
 for details



 At 11:45 AM 12/28/2008, you wrote:
 Thanks,   but that is supposed to be the right bracket of the  SET
 
 
  Comments = '#trim(Form.Comments)#')
 
  Should be Comments =  Comments = '#trim(Form.Comments)#'
 
Yep, but syntactically (sqlwise) you can't have the construct
(opening and closing bracket) the way it's laid out unlike your
INSERT statements.



 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317225
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CF Express ... Syntax error - CFQUERY - UPDATE Options

2008-12-29 Thread BobSharp
How can CFQUERYPARAM be applied to a boolean (Yes/No) field ?

I cannot find it in the  CFSQLTYPE  list



- Original Message - 
From: Al Musella, DPM muse...@virtualtrials.com
To: cf-talk cf-talk@houseoffusion.com
Sent: Monday, December 29, 2008 5:40 PM
Subject: Re: CF Express ... Syntax error - CFQUERY - UPDATE Options


I just want to point out that you should be using cfqueryparam around
 all of those form elements.  The way you have it will last about 2
 hours before someone hacks into your database.
 see:
 http://www.forta.com/blog/index.cfm/2005/12/21/SQL-Injection-Attacks-Easy-To-Prevent-But-Apparently-Still-Ignoredhttp://www.forta.com/blog/index.cfm/2005/12/21/SQL-Injection-Attacks-Easy-To-Prevent-But-Apparently-Still-Ignored
 for details



 At 11:45 AM 12/28/2008, you wrote:
 Thanks,   but that is supposed to be the right bracket of the  SET
 
 
  Comments = '#trim(Form.Comments)#')
 
  Should be Comments =  Comments = '#trim(Form.Comments)#'
 
Yep, but syntactically (sqlwise) you can't have the construct
(opening and closing bracket) the way it's laid out unlike your
INSERT statements.



 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317226
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF Express ... Syntax error - CFQUERY - UPDATE Options

2008-12-29 Thread Dave Watts
 How can CFQUERYPARAM be applied to a boolean (Yes/No) field ?

 I cannot find it in the  CFSQLTYPE  list

Use BIT.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317228
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CF Express ... Syntax error - CFQUERY - UPDATE Options

2008-12-29 Thread Mark Kruger
Use the bit field and 1's or 0's. 


Mark A. Kruger, CFG, MCSE
(402) 408-3733 ext 105
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com

-Original Message-
From: BobSharp [mailto:bobsh...@ntlworld.com] 
Sent: Monday, December 29, 2008 12:21 PM
To: cf-talk
Subject: Re: CF Express ... Syntax error - CFQUERY - UPDATE Options

How can CFQUERYPARAM be applied to a boolean (Yes/No) field ?

I cannot find it in the  CDSQLTYPE list




- Original Message -
From: Al Musella, DPM muse...@virtualtrials.com
To: cf-talk cf-talk@houseoffusion.com
Sent: Monday, December 29, 2008 5:40 PM
Subject: Re: CF Express ... Syntax error - CFQUERY - UPDATE Options


I just want to point out that you should be using cfqueryparam around
 all of those form elements.  The way you have it will last about 2
 hours before someone hacks into your database.
 see:

http://www.forta.com/blog/index.cfm/2005/12/21/SQL-Injection-Attacks-Easy-T
o-Prevent-But-Apparently-Still-Ignoredhttp://www.forta.com/blog/index.cfm/2
005/12/21/SQL-Injection-Attacks-Easy-To-Prevent-But-Apparently-Still-Ignored
 for details



 At 11:45 AM 12/28/2008, you wrote:
 Thanks,   but that is supposed to be the right bracket of the  SET
 
 
  Comments = '#trim(Form.Comments)#')
 
  Should be Comments =  Comments = '#trim(Form.Comments)#'
 
Yep, but syntactically (sqlwise) you can't have the construct
(opening and closing bracket) the way it's laid out unlike your
INSERT statements.



 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317229
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


CF Express ... Syntax error - CFQUERY - UPDATE Options

2008-12-28 Thread Bob Sharp
Can anyone tell me exactly what is causing this error ?   

!---Update using a CFQUERY with SQL UPDATE  --- 
CFquery NAME=qUpdate DATASOURCE=learncfe!--- error --- 
UPDATE  GuestBook 
SET (GuestName = '#Form.GuestName#', 
Email = '#Form.Email#', 
FirstVisit = #Form.FirstVisit#, 
GotHere = '#Form.GotHere#', 
Rating = '#Form.Rating#', 
Comments = '#trim(Form.Comments)#') 
WHERE   GuestBook_ID = #Form.GuestBook_ID# 
/CFquery 


ODBC Error Code = 37000 (Syntax error or access violation) 
[Microsoft][ODBC Microsoft Access Driver] Syntax error in UPDATE 
statement. 


The error occurred while processing an element with a general 
identifier of (CFQUERY), occupying document position (43:5) to 
(43:88). 


Date/Time: 12/28/08 12:20:44 
Browser: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.0.5) 
Gecko/2008120122 Firefox/3.0.5 
Remote Address: 127.0.0.1 
HTTP Referer: http://localhost/tt380/GuestMaint.cfm?op=ugid=1 
Template: c:\inetpub\wwwroot\tt380\GuestUpdate.cfm 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317173
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CF Express ... Syntax error - CFQUERY - UPDATE Options

2008-12-28 Thread Jide Aliu
Comments = '#trim(Form.Comments)#') 

Should be Comments =  Comments = '#trim(Form.Comments)#' 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317174
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF Express ... Syntax error - CFQUERY - UPDATE Options

2008-12-28 Thread Jide Aliu
Comments = '#trim(Form.Comments)#') 

Should be Comments =  Comments = '#trim(Form.Comments)#'

Sorry that should be Comments = '#trim(Form.Comments)#)' 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317175
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF Express ... Syntax error - CFQUERY - UPDATE Options

2008-12-28 Thread Casey Dougall
On Sun, Dec 28, 2008 at 11:33 AM, Jide Aliu jide_a...@hotmail.com wrote:

 Comments = '#trim(Form.Comments)#')

 Should be Comments =  Comments = '#trim(Form.Comments)#'


Remove the opening bracket as well

CFquery NAME=qUpdate DATASOURCE=learncfe!--- error ---
   UPDATE  GuestBook
   SET
GuestName = '#Form.GuestName#',
   Email = '#Form.Email#',
   FirstVisit = #Form.FirstVisit#,
   GotHere = '#Form.GotHere#',
   Rating = '#Form.Rating#',
   Comments = '#trim(Form.Comments)#'

   WHERE   GuestBook_ID = #Form.GuestBook_ID#
/CFquery


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317176
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF Express ... Syntax error - CFQUERY - UPDATE Options

2008-12-28 Thread BobSharp
Thanks,   but that is supposed to be the right bracket of the  SET


- Original Message - 
From: Jide Aliu jide_a...@hotmail.com
To: cf-talk cf-talk@houseoffusion.com
Sent: Sunday, December 28, 2008 4:33 PM
Subject: Re: CF Express ... Syntax error - CFQUERY - UPDATE Options


 Comments = '#trim(Form.Comments)#')

 Should be Comments =  Comments = '#trim(Form.Comments)#'

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317177
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF Express ... Syntax error - CFQUERY - UPDATE Options

2008-12-28 Thread Jide Aliu
 Comments = '#trim(Form.Comments)#')

 Should be Comments =  Comments = '#trim(Form.Comments)#'


Remove the opening bracket as well

CFquery NAME=qUpdate DATASOURCE=learncfe!--- error ---
   UPDATE  GuestBook
   SET
GuestName = '#Form.GuestName#',
   Email = '#Form.Email#',
   FirstVisit = #Form.FirstVisit#,
   GotHere = '#Form.GotHere#',
   Rating = '#Form.Rating#',
   Comments = '#trim(Form.Comments)#'

   WHERE   GuestBook_ID = #Form.GuestBook_ID#
/CFquery

'Scuse my mad typing, yes Casey is right it's the opening and closing brackets. 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317178
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF Express ... Syntax error - CFQUERY - UPDATE Options

2008-12-28 Thread BobSharp
Woo !Thanks for that. works ok now.


- Original Message - 
From: Casey Dougall ca...@uberwebsitesolutions.com
To: cf-talk cf-talk@houseoffusion.com
Sent: Sunday, December 28, 2008 4:37 PM
Subject: Re: CF Express ... Syntax error - CFQUERY - UPDATE Options


 On Sun, Dec 28, 2008 at 11:33 AM, Jide Aliu jide_a...@hotmail.com wrote:

 Comments = '#trim(Form.Comments)#')

 Should be Comments =  Comments = '#trim(Form.Comments)#'


 Remove the opening bracket as well

 CFquery NAME=qUpdate DATASOURCE=learncfe!--- error ---
   UPDATE  GuestBook
   SET
 GuestName = '#Form.GuestName#',
   Email = '#Form.Email#',
   FirstVisit = #Form.FirstVisit#,
   GotHere = '#Form.GotHere#',
   Rating = '#Form.Rating#',
   Comments = '#trim(Form.Comments)#'

   WHERE   GuestBook_ID = #Form.GuestBook_ID#
 /CFquery


 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317179
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF Express ... Syntax error - CFQUERY - UPDATE Options

2008-12-28 Thread BobSharp
Woo !   Thanks for thatworks ok now.
- Original Message - 
From: Jide Aliu jide_a...@hotmail.com
To: cf-talk cf-talk@houseoffusion.com
Sent: Sunday, December 28, 2008 4:35 PM
Subject: Re: CF Express ... Syntax error - CFQUERY - UPDATE Options


Comments = '#trim(Form.Comments)#')

Should be Comments =  Comments = '#trim(Form.Comments)#'

 Sorry that should be Comments = '#trim(Form.Comments)#)'

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317180
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CF Express ... Syntax error - CFQUERY - UPDATE Options

2008-12-28 Thread Jide Aliu
Thanks,   but that is supposed to be the right bracket of the  SET


 Comments = '#trim(Form.Comments)#')

 Should be Comments =  Comments = '#trim(Form.Comments)#'

Yep, but syntactically (sqlwise) you can't have the construct (opening and 
closing bracket) the way it's laid out unlike your INSERT statements. 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317181
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


CF Express

2004-09-24 Thread Donna French
Does anyone have a copy of this? I have a client that I need to build
a small app for but it's a non-profit organization and they can't
afford the full version. I have an FTP I can setup if anyone has it
and willing to upload.

Thanks!

-- 

Donna French
[EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: CF Express

2004-09-24 Thread Jim Davis
Is there any particular reason that you're looking for Express?As I
remember the it's actually based on CF 4.5 and lacks quire a bit of the
functionality is missing.

On the other hand BlueDragon is (I'm almost sure) free for such a purpose,
has much more functionality and is (damn near) feature compatible with CF
MX.Check out NewAtlanta.com for more information - I think you'll be
pleasantly surprised.

Jim Davis

_

From: Donna French [mailto:[EMAIL PROTECTED] 
Sent: Friday, September 24, 2004 4:10 PM
To: CF-Talk
Subject: CF Express

Does anyone have a copy of this? I have a client that I need to build
a small app for but it's a non-profit organization and they can't
afford the full version. I have an FTP I can setup if anyone has it
and willing to upload.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: CF Express

2004-09-24 Thread Donna French
Thanks Jim,

I can't get www.newatlanta.com to load ?

Donna


- Original Message -
From: Jim Davis [EMAIL PROTECTED]
Date: Fri, 24 Sep 2004 16:27:55 -0400
Subject: RE: CF Express
To: CF-Talk [EMAIL PROTECTED]

Is there any particular reason that you're looking for Express?As I
remember the it's actually based on CF 4.5 and lacks quire a bit of the
functionality is missing.

On the other hand BlueDragon is (I'm almost sure) free for such a purpose,
has much more functionality and is (damn near) feature compatible with CF
MX.Check out NewAtlanta.com for more information - I think you'll be
pleasantly surprised.

Jim Davis

_

From: Donna French [mailto:[EMAIL PROTECTED] 
Sent: Friday, September 24, 2004 4:10 PM
To: CF-Talk
Subject: CF Express

Does anyone have a copy of this? I have a client that I need to build
a small app for but it's a non-profit organization and they can't
afford the full version. I have an FTP I can setup if anyone has it
and willing to upload.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: CF Express

2004-09-24 Thread Jeff Garza
I definately agree with Jim here... take a look at Blue Dragon.I've used it with several smaller clients that were hosting some internal sites and didn't want to pay for a full version of CF.Works very well.

Cheers,

Jeff Garza
- Original Message - 
From: Jim Davis 
To: CF-Talk 
Sent: Friday, September 24, 2004 1:27 PM
Subject: RE: CF Express

Is there any particular reason that you're looking for Express?As I
remember the it's actually based on CF 4.5 and lacks quire a bit of the
functionality is missing.

On the other hand BlueDragon is (I'm almost sure) free for such a purpose,
has much more functionality and is (damn near) feature compatible with CF
MX.Check out NewAtlanta.com for more information - I think you'll be
pleasantly surprised.

Jim Davis

 _

From: Donna French [mailto:[EMAIL PROTECTED] 
Sent: Friday, September 24, 2004 4:10 PM
To: CF-Talk
Subject: CF Express

Does anyone have a copy of this? I have a client that I need to build
a small app for but it's a non-profit organization and they can't
afford the full version. I have an FTP I can setup if anyone has it
and willing to upload.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: CF Express

2004-09-24 Thread Donna French
Thanks a million guys!

Finally got their site to load and have downloaded Blue Dragon. You
all are great - saved my #$% on this one I do believe...

Thanks,
Donna

- Original Message -
From: Jeff Garza [EMAIL PROTECTED]
Date: Fri, 24 Sep 2004 13:37:01 -0700
Subject: Re: CF Express
To: CF-Talk [EMAIL PROTECTED]

I definately agree with Jim here... take a look at Blue Dragon.I've
used it with several smaller clients that were hosting some internal
sites and didn't want to pay for a full version of CF.Works very
well.

Cheers,

Jeff Garza

- Original Message - 
From: Jim Davis 
To: CF-Talk 
Sent: Friday, September 24, 2004 1:27 PM
Subject: RE: CF Express

Is there any particular reason that you're looking for Express?As I
remember the it's actually based on CF 4.5 and lacks quire a bit of the
functionality is missing.

On the other hand BlueDragon is (I'm almost sure) free for such a purpose,
has much more functionality and is (damn near) feature compatible with CF
MX.Check out NewAtlanta.com for more information - I think you'll be
pleasantly surprised.

Jim Davis

 _

From: Donna French [mailto:[EMAIL PROTECTED] 
Sent: Friday, September 24, 2004 4:10 PM
To: CF-Talk
Subject: CF Express

Does anyone have a copy of this? I have a client that I need to build
a small app for but it's a non-profit organization and they can't
afford the full version. I have an FTP I can setup if anyone has it
and willing to upload.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: CF Express

2004-09-24 Thread Jim Davis
Several folks from New Atlanta are members of the list and there's also a
BlueDragon-specific list you might want to hit if it doesn't sort itself
out.

Jim Davis

From: Donna French [mailto:[EMAIL PROTECTED] 
Sent: Friday, September 24, 2004 4:37 PM
To: CF-Talk
Subject: Re: CF Express

Thanks Jim,

I can't get www.newatlanta.com to load ?

Donna
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: CF Express

2002-08-18 Thread Vince Bonfanti

Oh, yes, very biased.  ;-)

I'll be interested in your feedback, good and bad.

Vince Bonfanti
New Atlanta Communications, LLC

 -Original Message-
 From: John Wilker [mailto:[EMAIL PROTECTED]] 
 Sent: Thursday, August 15, 2002 8:55 PM
 To: CF-Talk
 Subject: RE: CF Express
 
 
 No bias huh? :)
 
 I'll take a look, thanks for the 411
 
 J. 
  
 John Wilker  Codito, ergo sum
 Web Applications Consultant, and Writer
 Macromedia Certified ColdFusion Developer
 President/Founder, Inland Empire CFUG.
 www.red-omega.com
  
 I asked Do you know DOS?
  
 The reply was: No, but I met Tom and Drew a few minutes ago.
 
 
 -Original Message-
 From: Vince Bonfanti [mailto:[EMAIL PROTECTED]] 
 Sent: Thursday, August 15, 2002 5:24 AM
 To: CF-Talk
 Subject: RE: CF Express
 
 
 John,
 
 You might want to take a look at BlueDragon Server. It's 
 priced at $249 per server, and is CF5-compatible:
 
http://www.newatlanta.com/products/bluedragon/index.jsp

Vince Bonfanti
New Atlanta Communications, LLC

 -Original Message-
 From: John Wilker [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, August 15, 2002 12:16 AM
 To: CF-Talk
 Subject: RE: CF Express
 
 
 Except for the project I have a need of, even pro is more than I need,

 IIRC express was priced right and did the job, I don't need a great 
 many features for this project but price is kinda an issue.
 
 I'll dig around some.
 
 J.
  
 John Wilker  Codito, ergo sum
 Web Applications Consultant, and Writer
 Macromedia Certified ColdFusion Developer
 President/Founder, Inland Empire CFUG.
 www.red-omega.com
  
 I asked Do you know DOS?
  
 The reply was: No, but I met Tom and Drew a few minutes ago.


__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CF Express

2002-08-15 Thread Sean A Corfield

On Wednesday, August 14, 2002, at 09:16 , John Wilker wrote:
 Except for the project I have a need of, even pro is more than I need,
 IIRC express was priced right and did the job, I don't need a great many
 features for this project but price is kinda an issue.

So the *free* Developer Edition sounds like what you need then?

Or do you need the server to allow more than one external IP address to 
connect to it?

Note: Developer Edition is what you get in Studio MX and also what the 
Trial Download version turns into after 30 days (it is Enterprise for the 
first 30 days).

Sean A Corfield -- http://www.corfield.org/blog/

If you're not annoying somebody, you're not really alive.
-- Margaret Atwood

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



RE: CF Express

2002-08-15 Thread Vince Bonfanti

John,

You might want to take a look at BlueDragon Server. It's priced at $249
per server, and is CF5-compatible:

http://www.newatlanta.com/products/bluedragon/index.jsp

Vince Bonfanti
New Atlanta Communications, LLC

 -Original Message-
 From: John Wilker [mailto:[EMAIL PROTECTED]] 
 Sent: Thursday, August 15, 2002 12:16 AM
 To: CF-Talk
 Subject: RE: CF Express
 
 
 Except for the project I have a need of, even pro is more 
 than I need, IIRC express was priced right and did the job, I 
 don't need a great many features for this project but price 
 is kinda an issue.
 
 I'll dig around some.
 
 J. 
  
 John Wilker  Codito, ergo sum
 Web Applications Consultant, and Writer
 Macromedia Certified ColdFusion Developer
 President/Founder, Inland Empire CFUG.
 www.red-omega.com
  
 I asked Do you know DOS?
  
 The reply was: No, but I met Tom and Drew a few minutes ago.
 
 

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



RE: CF Express

2002-08-15 Thread Robertson-Ravo, Neil (REC)

Shameless I like it :-)





-Original Message-
From: Vince Bonfanti [mailto:[EMAIL PROTECTED]]
Sent: 15 August 2002 13:24
To: CF-Talk
Subject: RE: CF Express


John,

You might want to take a look at BlueDragon Server. It's priced at $249
per server, and is CF5-compatible:

http://www.newatlanta.com/products/bluedragon/index.jsp

Vince Bonfanti
New Atlanta Communications, LLC

 -Original Message-
 From: John Wilker [mailto:[EMAIL PROTECTED]] 
 Sent: Thursday, August 15, 2002 12:16 AM
 To: CF-Talk
 Subject: RE: CF Express
 
 
 Except for the project I have a need of, even pro is more 
 than I need, IIRC express was priced right and did the job, I 
 don't need a great many features for this project but price 
 is kinda an issue.
 
 I'll dig around some.
 
 J. 
  
 John Wilker  Codito, ergo sum
 Web Applications Consultant, and Writer
 Macromedia Certified ColdFusion Developer
 President/Founder, Inland Empire CFUG.
 www.red-omega.com
  
 I asked Do you know DOS?
  
 The reply was: No, but I met Tom and Drew a few minutes ago.
 
 


__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF Express

2002-08-15 Thread John Wilker

Except I need more than a developer edition. I have a project needing a
production solution. Something slimmer and less expensive would do the
trick. The developer edition, wouldn't work for me because between 3-6
machines will be making requests, plus it would be bad ju ju.

J.
 
 
John Wilker  Codito, ergo sum
Web Applications Consultant, and Writer
Macromedia Certified ColdFusion Developer
President/Founder, Inland Empire CFUG.
www.red-omega.com
 
I asked Do you know DOS?
 
The reply was: No, but I met Tom and Drew a few minutes ago.


-Original Message-
From: Sean A Corfield [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, August 14, 2002 11:33 PM
To: CF-Talk
Subject: Re: CF Express


On Wednesday, August 14, 2002, at 09:16 , John Wilker wrote:
 Except for the project I have a need of, even pro is more than I need,

 IIRC express was priced right and did the job, I don't need a great 
 many features for this project but price is kinda an issue.

So the *free* Developer Edition sounds like what you need then?

Or do you need the server to allow more than one external IP address to 
connect to it?

Note: Developer Edition is what you get in Studio MX and also what the 
Trial Download version turns into after 30 days (it is Enterprise for
the 
first 30 days).

Sean A Corfield -- http://www.corfield.org/blog/

If you're not annoying somebody, you're not really alive.
-- Margaret Atwood


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



RE: CF Express

2002-08-15 Thread John Wilker

No bias huh? :)

I'll take a look, thanks for the 411

J. 
 
John Wilker  Codito, ergo sum
Web Applications Consultant, and Writer
Macromedia Certified ColdFusion Developer
President/Founder, Inland Empire CFUG.
www.red-omega.com
 
I asked Do you know DOS?
 
The reply was: No, but I met Tom and Drew a few minutes ago.


-Original Message-
From: Vince Bonfanti [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, August 15, 2002 5:24 AM
To: CF-Talk
Subject: RE: CF Express


John,

You might want to take a look at BlueDragon Server. It's priced at $249
per server, and is CF5-compatible:

http://www.newatlanta.com/products/bluedragon/index.jsp

Vince Bonfanti
New Atlanta Communications, LLC

 -Original Message-
 From: John Wilker [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, August 15, 2002 12:16 AM
 To: CF-Talk
 Subject: RE: CF Express
 
 
 Except for the project I have a need of, even pro is more
 than I need, IIRC express was priced right and did the job, I 
 don't need a great many features for this project but price 
 is kinda an issue.
 
 I'll dig around some.
 
 J.
  
 John Wilker  Codito, ergo sum
 Web Applications Consultant, and Writer
 Macromedia Certified ColdFusion Developer
 President/Founder, Inland Empire CFUG.
 www.red-omega.com
  
 I asked Do you know DOS?
  
 The reply was: No, but I met Tom and Drew a few minutes ago.
 
 


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



CF Express

2002-08-14 Thread John Wilker

Is there a CF Express in MX?
 
I didn't see any mention of it on the MACR site.
 
J.
 
John Wilker  Codito, ergo sum
Web Applications Consultant, and Writer
Macromedia Certified ColdFusion Developer
President/Founder, Inland Empire CFUG.
www.red-omega.com http://www.red-omega.com/ 
 
I asked Do you know DOS?
 
The reply was: No, but I met Tom and Drew a few minutes ago.
 

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CF Express

2002-08-14 Thread Howie Hamlin

I don't think that there is a version of Express beyond version 4.5 and I don't think 
that there will be one...

Regards,

--
Howie Hamlin - inFusion Project Manager
On-Line Data Solutions, Inc. - www.CoolFusion.com  - 631-737-4668 x101
inFusion Mail Server (iMS) - The Award-winning, Intelligent Mail Server
 Find out how iMS Stacks up to the competition: 
http://www.coolfusion.com/imssecomparison.cfm

- Original Message - 
From: John Wilker [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, August 14, 2002 11:38 PM
Subject: CF Express


 Is there a CF Express in MX?
  
 I didn't see any mention of it on the MACR site.
  
 J.
  
 John Wilker  Codito, ergo sum
 Web Applications Consultant, and Writer
 Macromedia Certified ColdFusion Developer
 President/Founder, Inland Empire CFUG.
 www.red-omega.com http://www.red-omega.com/ 
  
 I asked Do you know DOS?
  
 The reply was: No, but I met Tom and Drew a few minutes ago.
  
 
 
__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CF Express

2002-08-14 Thread mark brinkworth

As far as I know CF4.5 was the last that had an express version. With the 
release of the developer version, there seems little point is such a thing.





Is there a CF Express in MX?

I didn't see any mention of it on the MACR site.

J.







__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF Express

2002-08-14 Thread John Wilker

I thought that might be the case. Just wanted to make sure.

Thanks!

J. 
 
John Wilker  Codito, ergo sum
Web Applications Consultant, and Writer
Macromedia Certified ColdFusion Developer
President/Founder, Inland Empire CFUG.
www.red-omega.com
 
I asked Do you know DOS?
 
The reply was: No, but I met Tom and Drew a few minutes ago.


-Original Message-
From: Howie Hamlin [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, August 14, 2002 8:46 PM
To: CF-Talk
Subject: Re: CF Express


I don't think that there is a version of Express beyond version 4.5 and
I don't think that there will be one...

Regards,

--
Howie Hamlin - inFusion Project Manager
On-Line Data Solutions, Inc. - www.CoolFusion.com  - 631-737-4668 x101
inFusion Mail Server (iMS) - The Award-winning, Intelligent Mail Server
 Find out how iMS Stacks up to the competition: 
 http://www.coolfusion.com/imssecomparison.cfm

- Original Message - 
From: John Wilker [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, August 14, 2002 11:38 PM
Subject: CF Express


 Is there a CF Express in MX?
  
 I didn't see any mention of it on the MACR site.
  
 J.
  
 John Wilker  Codito, ergo sum
 Web Applications Consultant, and Writer
 Macromedia Certified ColdFusion Developer
 President/Founder, Inland Empire CFUG.
 www.red-omega.com http://www.red-omega.com/
  
 I asked Do you know DOS?
  
 The reply was: No, but I met Tom and Drew a few minutes ago.
  
 
 

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



RE: CF Express

2002-08-14 Thread John Wilker

Except for the project I have a need of, even pro is more than I need,
IIRC express was priced right and did the job, I don't need a great many
features for this project but price is kinda an issue.

I'll dig around some.

J. 
 
John Wilker  Codito, ergo sum
Web Applications Consultant, and Writer
Macromedia Certified ColdFusion Developer
President/Founder, Inland Empire CFUG.
www.red-omega.com
 
I asked Do you know DOS?
 
The reply was: No, but I met Tom and Drew a few minutes ago.


-Original Message-
From: mark brinkworth [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, August 14, 2002 8:54 PM
To: CF-Talk
Subject: Re: CF Express


As far as I know CF4.5 was the last that had an express version. With
the 
release of the developer version, there seems little point is such a
thing.





Is there a CF Express in MX?

I didn't see any mention of it on the MACR site.

J.








__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CF Express vs ColdFusion

2002-04-08 Thread Jeffry Houser

  ColdFusion Express is a limited version based off of 4.5.  It is (or was) 
given out free by Macromedia (Or Allaire).  It is not fully functional.

At 08:44 AM 4/8/2002 -0400, you wrote:
Hi,

I found a web hosting company http://www.parcom.net/ which in its standard
list of features includes ColdFusion Express Support.

Whats the difference from this and  just CF support?



__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Trouble installing CF Express

2002-01-21 Thread Billy Cravens

Note that the downloadable version of CF5 has a developer's liscense
available (connections from one IP address), so that you can explore the
full feature-set of CF (CFExpress is feature limited, missing things like
CFFile)

Of course, this may not be the issue at all.

Do ASP pages work in PWS?  Just paste this code into a page and name it
test.asp:

%= Now() %

Note that even though PWS  may be able to serve up static pages, that
doesn't mean that everything is OK.

What do the permissions in PWS look like?  It's been a while since I ran it,
but you need to make sure that permissions are set to either Script or
Execute.

Another possibility is running the Apache web server -  supported by CF as
well.

- Original Message -
From: Bear Clover [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Sunday, January 20, 2002 5:47 PM
Subject: Trouble installing CF Express


 Hello, I am new to this list. I am glad I discovered it!

 I have just discovered ColdFusion, and am pretty excited about learning
it.
 I've created a few simple scripts, (and got them to WORK) and now I want
to
 learn more. I have a few good CF books, which are really helping so far.

 I have been trying to install CF Express on my Windows 98 PC, and it just
 won't take. I cannot get Administrator to open, no matter what. I know
my
 Personal Web Server is working, because I can open its IP, and
localhost.
 I am at a loss about why CF Express won't install. I even uninstalled and
 reinstalled it, but that didn't make any difference. If anyone has any
idea
 what might be the problem, I'd appreciate any help!

 Right now, I'm editing CF scripts on my Mac, using BBEdit, and then
 uploading them to my webhost (which supports CF 4.5) to test. This is a
 little more time-consuming, but at least it works! I could do the same on
my
 PC, of course, but my PC is out of favor with me since it refused to
install
 CF Express! ;-)

 ~JR

 
__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Trouble installing CF Express

2002-01-20 Thread Bear Clover

Hello, I am new to this list. I am glad I discovered it!

I have just discovered ColdFusion, and am pretty excited about learning it.
I've created a few simple scripts, (and got them to WORK) and now I want to
learn more. I have a few good CF books, which are really helping so far.

I have been trying to install CF Express on my Windows 98 PC, and it just
won't take. I cannot get Administrator to open, no matter what. I know my
Personal Web Server is working, because I can open its IP, and localhost.
I am at a loss about why CF Express won't install. I even uninstalled and
reinstalled it, but that didn't make any difference. If anyone has any idea
what might be the problem, I'd appreciate any help!

Right now, I'm editing CF scripts on my Mac, using BBEdit, and then
uploading them to my webhost (which supports CF 4.5) to test. This is a
little more time-consuming, but at least it works! I could do the same on my
PC, of course, but my PC is out of favor with me since it refused to install
CF Express! ;-) 

~JR

__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Trouble installing CF Express

2002-01-20 Thread Steve Oliver

Do you get an internal server error, or a page not found?

There are several possibilities,
 It could be that your default directory for IIS is pointing somewhere
other then where CF put the CFIDE and CFDOCS folders.

 Another possibility is that CF didn't pickup PWS and didn't add .cfm to
your application mapping.
I'm not sure where that is in PWS, but there should be a configuration
that allows you to add different extensions.



__
steve oliver
cresco technologies, inc.
http://www.crescotech.com


-Original Message-
From: Bear Clover [mailto:[EMAIL PROTECTED]] 
Sent: Sunday, January 20, 2002 6:47 PM
To: CF-Talk
Subject: Trouble installing CF Express


Hello, I am new to this list. I am glad I discovered it!

I have just discovered ColdFusion, and am pretty excited about learning
it. I've created a few simple scripts, (and got them to WORK) and now I
want to learn more. I have a few good CF books, which are really helping
so far.

I have been trying to install CF Express on my Windows 98 PC, and it
just won't take. I cannot get Administrator to open, no matter what. I
know my Personal Web Server is working, because I can open its IP, and
localhost. I am at a loss about why CF Express won't install. I even
uninstalled and reinstalled it, but that didn't make any difference. If
anyone has any idea what might be the problem, I'd appreciate any help!

Right now, I'm editing CF scripts on my Mac, using BBEdit, and then
uploading them to my webhost (which supports CF 4.5) to test. This is a
little more time-consuming, but at least it works! I could do the same
on my PC, of course, but my PC is out of favor with me since it refused
to install CF Express! ;-) 

~JR


__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Any forums software based on CF-Express?

2001-09-04 Thread Tony Schreiber

SMB (simplemessageboard.com) requires just a few modificiations (removing
some cftransactions, etc.) to run on CF-Express. Someone has already done
it - I have a zip of it somewhere. ;p

 So, any available?  If not, I'm writing one :)


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



Any forums software based on CF-Express?

2001-09-03 Thread Kwang Suh

So, any available?  If not, I'm writing one :)

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



Re: Any forums software based on CF-Express?

2001-09-03 Thread Rey Bango

Go to ForumSpot.org. Its the open source forums effort.

Rey...

- Original Message -
From: Kwang Suh [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, September 03, 2001 5:54 PM
Subject: Any forums software based on CF-Express?


 So, any available?  If not, I'm writing one :)


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



CF Express v. 4.5

2001-08-17 Thread Tristram Charnley

Does anyone know where to find a feature comparison between
ColdFusion Express and its big brothers?

I need to know what tags I can safely use in CF Express.
I seem to remember there was a matrix on Allaire's site
but I can't find it now.

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



Re: CF Express v. 4.5

2001-08-17 Thread Daniel Chicayban

Here you go:

http://www.allaire.com/handlers/index.cfm?ID=13570Method=FullTitle=Edition
%20Comparison%20MatrixCache=False

I found it looking the FAQ.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

There's a lot of good information there.
Daniel


At 12:38 17/8/2001 +0100, you wrote:
Does anyone know where to find a feature comparison between
ColdFusion Express and its big brothers?

I need to know what tags I can safely use in CF Express.
I seem to remember there was a matrix on Allaire's site
but I can't find it now.

Tristram Charnley

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



RE: CF Express

2001-04-21 Thread Deb Dickerson

I don't think it does. According to the CF Express product information on
the website:
ODBC Connections — Access standard ODBC-compliant desktop relational
databases including Microsoft Access and FoxPro, Borland Paradox and dBase,
Lotus Approach, text files, and Excel files with a single tag. Use any SQL
to select, insert, update, or delete data.

The product feature matrix at
http://www.allaire.com/documentcenter/partners/CF45ServerFeatureMatrix.doc
also has a footnote for Express: "ColdFusion Express only supports a limited
set of desktop databases."

Debbie

 -Original Message-
 From: Allan Pichler [mailto:[EMAIL PROTECTED]]
 Sent: Friday, April 20, 2001 9:35 AM
 To: CF-Talk
 Subject: CF Express


 Does CF Express work with SQL server ?

 The following is from the documentation on CF Express:

 ColdFusion Express, as with other editions of ColdFusion,
 supports any ODBC database. However, the Express installation
 process installs the following drivers, which we know to work
 well with ColdFusion:

 Windows: Microsoft drivers are supplied for Access, FoxPro,
 Visual FoxPro, Excel, Filemaker Pro ODBC, and text data sources.

 Does this mean that it'll work with SQL server as long as an odbc
 driver is available ..

 Any input would be appreciated!

 Allan

~~
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 Express

2001-04-20 Thread Allan Pichler

Does CF Express work with SQL server ?  

The following is from the documentation on CF Express:

ColdFusion Express, as with other editions of ColdFusion, supports any ODBC database. 
However, the Express installation process installs the following drivers, which we 
know to work well with ColdFusion: 

Windows: Microsoft drivers are supplied for Access, FoxPro, Visual FoxPro, Excel, 
Filemaker Pro ODBC, and text data sources. 

Does this mean that it'll work with SQL server as long as an odbc driver is available 
..

Any input would be appreciated!

Allan

~~
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 Express

2001-04-10 Thread TDesimone

We have an number of applications running on servers that have CF
Enterprise installed.  We also have applications that could be run on a
server that has CF Express installed.  Are there problems or restrictions
when using CF Express on a commercial site?


~~
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 Express

2001-04-10 Thread Kevin Schmidt

You lose alot of support for specific tags.  There is a comparison chart on
Allaire's site.
- Original Message -
From: [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, April 10, 2001 9:15 AM
Subject: CF Express


 We have an number of applications running on servers that have CF
 Enterprise installed.  We also have applications that could be run on a
 server that has CF Express installed.  Are there problems or restrictions
 when using CF Express on a commercial site?



~~
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 Express

2001-04-10 Thread Edward Smith

Are you asking from a licensing standpoint?  I am not aware of any
licensing issues about express wrt. commerical websites.  I think that
they are relying in the limited functionality to get you to buy Pro or
Enterprise, not any specific licensing terms.

A quick scan of the license should tell you though.  


[EMAIL PROTECTED] wrote:
 
 We have an number of applications running on servers that have CF
 Enterprise installed.  We also have applications that could be run on a
 server that has CF Express installed.  Are there problems or restrictions
 when using CF Express on a commercial site?
 

~~
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 Express

2001-04-10 Thread TDesimone


Any idea where on Allaire's site the chart is located?  I have not been
able to find it.

Thanks.





"Kevin Schmidt" [EMAIL PROTECTED] on 04/10/2001 11:27:21 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Re: CF Express


You lose alot of support for specific tags.  There is a comparison chart on
Allaire's site.
- Original Message -
From: [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, April 10, 2001 9:15 AM
Subject: CF Express


 We have an number of applications running on servers that have CF
 Enterprise installed.  We also have applications that could be run on a
 server that has CF Express installed.  Are there problems or restrictions
 when using CF Express on a commercial site?



~~
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 Express

2001-04-10 Thread Howie Hamlin

http://www.allaire.com/handlers/index.cfm?ID=13570Method=FullTitle=Edition
%20Comparison%20MatrixCache=False

HTH,

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

- Original Message -
From: [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, April 10, 2001 10:43 AM
Subject: Re: CF Express



 Any idea where on Allaire's site the chart is located?  I have not been
 able to find it.

 Thanks.





 "Kevin Schmidt" [EMAIL PROTECTED] on 04/10/2001 11:27:21 AM

 Please respond to [EMAIL PROTECTED]

 To:   CF-Talk [EMAIL PROTECTED]
 cc:

 Subject:  Re: CF Express


 You lose alot of support for specific tags.  There is a comparison chart
on
 Allaire's site.
 - Original Message -
 From: [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Tuesday, April 10, 2001 9:15 AM
 Subject: CF Express


  We have an number of applications running on servers that have CF
  Enterprise installed.  We also have applications that could be run on a
  server that has CF Express installed.  Are there problems or
restrictions
  when using CF Express on a commercial site?
 
 
 


~~
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 Express

2001-04-10 Thread Kevin Schmidt

http://www.allaire.com/handlers/index.cfm?ID=13570Method=FullTitle=Edition
%20Comparison%20MatrixCache=False
- Original Message -
From: [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, April 10, 2001 9:43 AM
Subject: Re: CF Express



 Any idea where on Allaire's site the chart is located?  I have not been
 able to find it.

 Thanks.





 "Kevin Schmidt" [EMAIL PROTECTED] on 04/10/2001 11:27:21 AM

 Please respond to [EMAIL PROTECTED]

 To:   CF-Talk [EMAIL PROTECTED]
 cc:

 Subject:  Re: CF Express


 You lose alot of support for specific tags.  There is a comparison chart
on
 Allaire's site.
 - Original Message -
 From: [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Tuesday, April 10, 2001 9:15 AM
 Subject: CF Express


  We have an number of applications running on servers that have CF
  Enterprise installed.  We also have applications that could be run on a
  server that has CF Express installed.  Are there problems or
restrictions
  when using CF Express on a commercial site?
 
 
 

~~
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 Express - WDDX?

2001-01-29 Thread Jon Hall

Does CF Express include the WDDX tag?

jon


~~
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 Express - WDDX?

2001-01-29 Thread Ben Forta

No, it does not

--- Ben


-Original Message-
From: Jon Hall [mailto:[EMAIL PROTECTED]]
Sent: Monday, January 29, 2001 4:18 PM
To: CF-Talk
Subject: CF Express - WDDX?


Does CF Express include the WDDX tag?

jon
~~
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 Express - WDDX?

2001-01-29 Thread Howie Hamlin

Nope.  For the entire product version comparison look here:

http://www.allaire.com/handlers/index.cfm?ID=13570Method=FullTitle=Edition
%20Comparison%20MatrixCache=False

Regards,

Howie Hamlin - inFusion Project Manager
On-Line Data Solutions, Inc.
www.CoolFusion.com
631-737-4668 x101
inFusion Mail Server (iMS) - the World's most configurable mail server
Get your free copy of iMS POST-SE Server from CoolFusion!

- Original Message -
From: "Jon Hall" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Monday, January 29, 2001 4:18 PM
Subject: CF Express - WDDX?


 Does CF Express include the WDDX tag?

 jon




~~
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 Express - WDDX?

2001-01-29 Thread Deb Dickerson

Here's a page with the tags that are supported (at least with the 4.0
version):
http://www.allaire.com/products/coldfusion/cfexpress/TagSupport.cfm

Debbie

- Original Message -
From: "Ben Forta" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Monday, January 29, 2001 4:30 PM
Subject: RE: CF Express - WDDX?


 No, it does not

 --- Ben


 -Original Message-
 From: Jon Hall [mailto:[EMAIL PROTECTED]]
 Sent: Monday, January 29, 2001 4:18 PM
 To: CF-Talk
 Subject: CF Express - WDDX?


 Does CF Express include the WDDX tag?

 jon

~~
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: What is diff between CF Express, Pro Enterprise

2000-12-11 Thread pardeep

Hi, was wondering if anyone knows what the nuts  bolts functional
differences are between Cold Fusion Express, Professional and Enterprise.

At what stage does one need to go with Professional and then at what stage
is it advisable to go for Enterprise vs. just getting a hardware based load
balancing solution?

I understand that CF Express does not have Verity or e-mail features. What
other limitations differ it from Professional?

Regards,
Pardeep.

P.S. Very deep thought for the day shared below:

Confucious say: Man who walk thru airport door sideways going to Bangkok.


~~
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: What is diff between CF Express, Pro Enterprise

2000-12-11 Thread Howie Hamlin

You should download the feature matrix from Allaire:

http://www.allaire.com/handlers/index.cfm?ID=13570Method=FullTitle=Edition
%20Comparison%20MatrixCache=False

Regards,

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

- Original Message -
From: [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Monday, December 11, 2000 12:24 PM
Subject: Re: What is diff between CF Express, Pro  Enterprise


 Hi, was wondering if anyone knows what the nuts  bolts functional
 differences are between Cold Fusion Express, Professional and Enterprise.

 At what stage does one need to go with Professional and then at what stage
 is it advisable to go for Enterprise vs. just getting a hardware based
load
 balancing solution?

 I understand that CF Express does not have Verity or e-mail features. What

 other limitations differ it from Professional?

 Regards,
 Pardeep.

 P.S. Very deep thought for the day shared below:

 Confucious say: Man who walk thru airport door sideways going to Bangkok.



~~
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: Potential problems with CF Express Server

2000-11-08 Thread Will Ryan

Hi Josh,

  I'm not exactly sure but the license agreement doesn't allow for that.

-Original Message-
From: Josh R [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 07, 2000 12:30 PM
To: CF-Talk
Subject: RE: Potential problems with CF Express Server


Yes. This is exactly what I'm talking about. They want to be cheap and use
CF Express, and I of course don't want that.

I need to convince these folks that CF Express is NOT the way to go for
hosting a large ecommerce site.

What good (realistic) reasons can I give them to go to the Pro server?


Date: Tue, 7 Nov 2000 19:54:17 +1100
From: "Andrew Scott" [EMAIL PROTECTED]
Subject: RE: Potential problems with "FREE" Server

To be honest, I can't see why anyone would want to use express comercially.
Sure it possible could be, but I don't think there would be enough
functions
to do anything decent. Correct me if I am wrong!


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

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



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


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



RE: Potential problems with CF Express Server

2000-11-08 Thread Zachary Bedell

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

 Yes. This is exactly what I'm talking about. They want to be 
 cheap and use 
 CF Express, and I of course don't want that.
 
 I need to convince these folks that CF Express is NOT the way 
 to go for 
 hosting a large ecommerce site.
 
 What good (realistic) reasons can I give them to go to the Pro
 server?  

Just out of curiosity...  How much are these folks paying you, and
will you be paid up front or are you actually going to have to bill
these tight wads  hope to get your money out of them?...

My advice would be drop them before it's too late and you have hours
of code written  nothing to show for it...

But as for a solution for them...  If they're that adamant about not
paying for a server, how about ASP, PHP, or Perl even?  CF Express
really is a useless product.  I find it hard to believe you'll be
able to code anything useful for it.

In any case, good luck!  Believe me, I feel your pain!

Best regards,
Zac Bedell

-BEGIN PGP SIGNATURE-
Version: PGPfreeware 6.5.8 for non-commercial use http://www.pgp.com

iQA/AwUBOgl0EqvhLS1aWPxeEQKc2gCffBh7Fpuyw/Ld3pgM5qd/m8HN+XAAmwVj
LENXBXxG+rFlVGbyQDPhUcJ/
=89Xe
-END PGP SIGNATURE-

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



Re: Potential problems with CF Express Server

2000-11-08 Thread Jim McAtee

  Yes. This is exactly what I'm talking about. They want to be 
  cheap and use 
  CF Express, and I of course don't want that.
  
  I need to convince these folks that CF Express is NOT the way 
  to go for 
  hosting a large ecommerce site.
  
  What good (realistic) reasons can I give them to go to the Pro
  server?  
 
 Just out of curiosity...  How much are these folks paying you, and
 will you be paid up front or are you actually going to have to bill
 these tight wads  hope to get your money out of them?...
 
 My advice would be drop them before it's too late and you have hours
 of code written  nothing to show for it...



Amen to that.  Of course, he's going to tell us he works for them.  If so:

G-e-t  a-n-o-t-h-e-r  j-o-b.




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



RE: Potential problems with CF Express Server

2000-11-07 Thread Josh R

Yes. This is exactly what I'm talking about. They want to be cheap and use 
CF Express, and I of course don't want that.

I need to convince these folks that CF Express is NOT the way to go for 
hosting a large ecommerce site.

What good (realistic) reasons can I give them to go to the Pro server?


Date: Tue, 7 Nov 2000 19:54:17 +1100
From: "Andrew Scott" [EMAIL PROTECTED]
Subject: RE: Potential problems with "FREE" Server

To be honest, I can't see why anyone would want to use express comercially.
Sure it possible could be, but I don't think there would be enough 
functions
to do anything decent. Correct me if I am wrong!


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

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


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



RE: Potential problems with CF Express Server

2000-11-07 Thread Peter Alexandrou

Well just give them the list of difference between Express and Pro... No
CFMAIL alone rules CF Express out right away.

 -Original Message-
 From: Josh R [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, 8 November 2000 04:30
 To: CF-Talk
 Subject: RE: Potential problems with CF Express Server


 Yes. This is exactly what I'm talking about. They want to be
 cheap and use
 CF Express, and I of course don't want that.

 I need to convince these folks that CF Express is NOT the way
 to go for
 hosting a large ecommerce site.

 What good (realistic) reasons can I give them to go to the Pro server?

 
 Date: Tue, 7 Nov 2000 19:54:17 +1100
 From: "Andrew Scott" [EMAIL PROTECTED]
 Subject: RE: Potential problems with "FREE" Server
 
 To be honest, I can't see why anyone would want to use
 express comercially.
 Sure it possible could be, but I don't think there would be enough
 functions
 to do anything decent. Correct me if I am wrong!
 

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

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

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


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



RE: Potential problems with CF Express Server

2000-11-07 Thread Cameron Childress

 I need to convince these folks that CF Express is NOT the way to go for
 hosting a large ecommerce site.

 What good (realistic) reasons can I give them to go to the Pro server?

Well, I would say that the fact that Express only supports desktop databases
such as access, and not databases such as MS SQL Server or Oracle would just
about do it if they are not full of crap and are actually going to have a
"large ecommerce site".

If they still want to host their "large ecommerce site" using access and CF
Express, I would drop the client immediately because they are going to be
_WAY_ more trouble than they are worth.

BITCHY
Sorry, it's 9:30 PM and I'm swimming in coffee here at work all night
(again) instead of where I should be, getting drunk with all my CF buds in
DC. So I'm in a edgy kinda mood...

Having said that, what the hell is up with freaking clients who want their
E-commerce site, which will of course be (in their mind) the next Yahoo, to
be hosted at some cheapest-host-they-can-find ISP in some guy's basement
running off his old Atari 2600 with 500 domains, front(stinking)page
extensions, and CF Express behind a 64K ISDN line.  ...and of course you
should do the work for free because after all, they are going to be the next
Yahoo, so you should be paying THEM for the privilege of being involved with
such a cutting edge massive E-Commerce site.  And by the way, instead of
messing with all those secure certificates and online processing bologna,
could you just forward their customer's credit card information in plain
text to their insecure email account at that pillar of unbreakable security,
AOL?
/BITCHY

Whew.. I feel better now...  Nothing against Josh or anyone else on the
list, and please don't email me telling me that you have never had a problem
with FrontPage extensions on your 2600 machines

:)

-Cameron


Cameron Childress
ElliptIQ Inc.
p.770.460.7277.232
f.770.460.0963


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



CF Express limitation

2000-10-11 Thread Ryan

I was thinking about installing Cold Fusion Express on my linux
box at home to work with, but don't know if it would be worth
the trouble. Has anyone here used it and can tell me what, if
any, limitations you ran in to? I can't find anything on the site
about what it doesn't support, so tell me if there is anything
major thats missing that I will need. Thanks,

Ryan

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



Re: CF Express limitation

2000-10-11 Thread David Shadovitz

This is from the CF Express documentation.
-David

ColdFusion Tags that are not in ColdFusion Express
The following tags are not in ColdFusion Express; however, both
ColdFusion Server Professional and ColdFusion Server Enterprise support
them. 

CFML Tag and Description 
 
CFAPPLET  Embeds Java applets in a CFFORM.  
CFASSOCIATE  Enables sub-tag data to be saved with the base tag.  
CFAUTHENTICATE  Authenticates a user and sets the security context for an
application.  
CFCACHE  Caches ColdFusion pages.  
CFCOL  Defines table column header, width, alignment, and text.  
CFCOLLECTION  Creates and administers Verity collections.  
CFCONTENT  Defines the content type and, optionally, the filename of a
file to be downloaded by the current page.  
CFDIRECTORY  Performs typical directory-handling tasks from within your
ColdFusion application.  
CFERROR  Displays customized HTML error pages when errors occur.  
CFEXIT  Aborts processing of currently executing CFML custom tag.  
CFFILE  Performs typical file-handling tasks from within your ColdFusion
application.  
CFFORM  Builds an input form and performs client-side input validation.  
CFFTP  Permits FTP file operations.  
CFGRID  Used in CFFORM to create a grid control for tabular data.  
CFGRIDCOLUMN  Used in CFFORM to define the columns used in a CFGRID.  
CFGRIDROW  Used with CFGRID to define a grid row.  
CFGRIDUPDATE  Performs updates directly to ODBC data source from edited
grid data.  
CFHEADER  Generates HTTP headers.  
CFHTMLHEAD  Writes text, including HTML, to the HEAD section of a
specified page.  
CFHTTP  Used to perform GET and POST to upload files or post a form,
cookie, query, or CGI variable directly to a specified server.  
CFHTTPPARAM  Used with CFHTTP to specify parameters necessary for a
CFHTTP POST operation.  
CFINDEX  Used to create Verity search indexes.  
CFINPUT  Used in CFFORM to create input elements such as radio buttons,
checkboxes, and text entry boxes.  
CFLDAP  Provides access to LDAP directory servers.  
CFLOCK  Synchronizes a section of CFML code.  
CFMAIL  Assembles and posts an email message.  
CFMODULE  Used to invoke a custom tag.  
CFOBJECT  Creates and uses COM or CORBA objects.  
CFPARAM  Defines a parameter and its initial default value.  
CFPOP  Retrieves messages from a POP mail server.  
CFPROCPARAM  Specifies parameter information for a stored procedure.  
CFPROCRESULT  Specifies a result set name that other ColdFusion tags use
to access the result set from a stored procedure.  
CFREGISTRY  Reads, writes, and deletes keys and values in the system
registry.  
CFREPORT  Embeds a Crystal Reports report.  
CFSCHEDULE  Schedules page execution with option to produce static pages.
 
CFSCRIPT  Encloses a set of CFScript statements.  
CFSEARCH  Executes searches against data indexed in Verity collections
using CFINDEX.  
CFSELECT  Used in CFFORM to create a drop-down list box form element.  
CFSLIDER  Used in CFFORM to create a slider control element.  
CFSTOREDPROC  Specifies database connection information and identifies
the stored procedure to be executed.  
CFTABLE  Builds a table.  
CFTEXTINPUT  Places a single-line text entry box in a CFFORM.  
CFTHROW  Raises a developer-specified exception.  
CFTRANSACTION  Groups CFQUERYs into a single transaction; performs
rollback processing.  
CFTREE  Used in CFFORM to create a tree control element.  
CFTREEITEM  Used with CFTREE to populate a tree control element in a
CFFORM.  
CFWDDX  Serializes and de-serializes CFML data structures to the
XML-based WDDX format.  

You can scale your Express applications using ColdFusion Enterprise or
ColdFusion Professional to deliver complex, large volume, transaction
intensive solutions. Applications built with ColdFusion Express can be
deployed on any other version of ColdFusion Server without modification.
More detailed information on upgrade opportunities from ColdFusion
Express can be found online at www.allaire.com/cfexpressupgrade.


On Wed, 11 Oct 2000 15:42:55 -0500 Ryan [EMAIL PROTECTED] writes:
 I was thinking about installing Cold Fusion Express on my linux
 box at home to work with, but don't know if it would be worth
 the trouble. Has anyone here used it and can tell me what, if
 any, limitations you ran in to? I can't find anything on the site
 about what it doesn't support, so tell me if there is anything
 major thats missing that I will need. Thanks,
 
 Ryan

YOU'RE PAYING TOO MUCH FOR THE INTERNET!
Juno now offers FREE Internet Access!
Try it today - there's no risk!  For your FREE software, visit:
http://dl.www.juno.com/get/tagj.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: CF Express limitation

2000-10-11 Thread Cameron Childress

  I was thinking about installing Cold Fusion Express on my linux
  box at home to work with, but don't know if it would be worth
  the trouble. Has anyone here used it and can tell me what, if
  any, limitations you ran in to? I can't find anything on the site
  about what it doesn't support, so tell me if there is anything
  major thats missing that I will need. Thanks,

You might find the "Edition Comparison Matrix" useful.  It compares the
features of all current versions of CF on all available platforms...

http://www.allaire.com/handlers/index.cfm?ID=13570Method=FullTitle=Edition
%20Comparison%20MatrixCache=False
(URL may wrap)

-Cameron


Cameron Childress
ElliptIQ Inc.
p.770.460.7277.232
f.770.460.0963

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



CF Express

2000-07-18 Thread John Allred

Can anyone give me a URL where I can download CF Express? I found it on
Allaire's site previously using search, but that's currently disabled.

Thanks,
John Allred

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



RE: CF Express

2000-07-18 Thread David Gassner

http://www.allaire.com/cfexpress


 -Original Message-
 From: John Allred [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, July 18, 2000 8:25 AM
 To: [EMAIL PROTECTED]
 Subject: CF Express


 Can anyone give me a URL where I can download CF Express? I found it on
 Allaire's site previously using search, but that's currently disabled.

 Thanks,
 John Allred

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

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



Re: CF Express

2000-07-18 Thread Erki Esken

 Can anyone give me a URL where I can download CF Express? I
 found it on Allaire's site previously using search, but that's
 currently disabled.

http://www.allaire.com/products/coldfusion/cfexpress/

btw: does anyone know then CF Express 4.5 for Win/Linux will be
available?


erki

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



CF Express and SQL 7

2000-07-12 Thread Byron Stuart

I know CF Express does not support SQL Server, and if you set up a SQL 7
data source in CF Administrator, it fails to connect.  So, I'm wondering if
anyone has figured out a way to use a SQL 7 DB w/ CF Express.  Can you just
put all the necessary attributes in the CFQUERY tag to override the data
source settings in CF Administrator?  Or, what about OLE-DB?  Can you access
the SQL 7 DB through an OLE-DB provider?  I haven't had time to test this,
so if you've tried to make a SQL 7 DB work w/ CF Express, you're feedback
would be greatly appreciated.

If all of your databases are SQL 7, but not all your servers need a
full-blown CF Server, it sure would be nice to install CF Express on the
ones that don't need Professional/Enterprise.

Thanks in advance,

Byron Stuart
Lead Application Developer
Data Critical Corp.
http://www.unwireddr.com
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Cf express and sessions

2000-05-26 Thread Raymond K. Camden

I don't pretend to speak for Allaire, but my impression is that any serious
web developer should upgrade from CF Express to 'the real deal' instead of
using my 'hack.' I wrote a simular article for CFDJ concerning using custom
tags for Express. I consider both articles to be more of a "here's an
interesting idea" then "use this for your Amazon.com clone" type deal, know
what I mean?

CF_OT
8 hours left till end of day and the beginning of the three day weekend.  :)
/CF_OT

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

Email   : [EMAIL PROTECTED]
ICQ UIN : 3679482

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


 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, May 25, 2000 6:48 AM
 To: [EMAIL PROTECTED]
 Subject: RE: Cf express and sessions


 Raymond's lucid explanation of how to get around CFExpress's
 absence of session
 management is available on this official Allaire page:

 http://www.allaire.com/developer/referenceDesk/index.cfm

 Thanks, Raymond

 Umm... A bit of interesting irony in a company crippling a
 product in a certain way
 while at the same time publishing a reader "hack" explaining how
 to restore the
 missing functionality...

 Gene Kraybill

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



RE: Cf express and sessions

2000-05-26 Thread Stewart McGowan

three? I've just come back from the pub and everyone's gone!!

-Original Message-
From: Reynolds, Adam [mailto:[EMAIL PROTECTED]]
Sent: 26 May 2000 13:25
To: '[EMAIL PROTECTED]'
Subject: RE: Cf express and sessions


8 Hours?naw should move to the UK only have 3 hours to go... :-)

Adam Reynolds
ColdFusion Consultant
HJ Heinz
Tel: 01344 397016  Fax: 01344 397010
Mobile: 07973 386620
Email: [EMAIL PROTECTED]

 --
 From: Raymond K. Camden[SMTP:[EMAIL PROTECTED]]
 Sent: 26 May 2000 13:17
 To:   [EMAIL PROTECTED]
 Subject:  RE: Cf express and sessions
 
 I don't pretend to speak for Allaire, but my impression is that any
 serious
 web developer should upgrade from CF Express to 'the real deal' instead of
 using my 'hack.' I wrote a simular article for CFDJ concerning using
 custom
 tags for Express. I consider both articles to be more of a "here's an
 interesting idea" then "use this for your Amazon.com clone" type deal,
 know
 what I mean?
 
 CF_OT
 8 hours left till end of day and the beginning of the three day weekend.
 :)
 /CF_OT
 
 ===
 Raymond Camden, Cold Fusion Jedi Master for Syntegra (www.syntegra.com)
 Allaire Certified Instructor and Member of Team Allaire
 
 Email   : [EMAIL PROTECTED]
 ICQ UIN : 3679482
 
 "My ally is the Force, and a powerful ally it is." - Yoda
 
 
  -Original Message-
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
  Sent: Thursday, May 25, 2000 6:48 AM
  To: [EMAIL PROTECTED]
  Subject: RE: Cf express and sessions
 
 
  Raymond's lucid explanation of how to get around CFExpress's
  absence of session
  management is available on this official Allaire page:
 
  http://www.allaire.com/developer/referenceDesk/index.cfm
 
  Thanks, Raymond
 
  Umm... A bit of interesting irony in a company crippling a
  product in a certain way
  while at the same time publishing a reader "hack" explaining how
  to restore the
  missing functionality...
 
  Gene Kraybill
 
 --
 
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.
 
**
 This email and any attachments are confidential and solely
 for the use of the intended recipient.  They may contain
 material protected by legal professional or other privilege.
 If you are not the intended recipient or the person responsible
 for delivering to the intended recipient, you are not authorised
 to and must not disclose, copy, distribute or retain this email
 or its attachments.  Although this email and its attachments
 are believed to be free of any virus or other defect, it is the
 responsibility of the recipient to ensure that they are virus free
 and no responsibility is accepted by the company for any
 loss or damage arising from receipt or use thereof.

**

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



RE: Cf express and sessions

2000-05-26 Thread Raymond K. Camden

Oh hey, my company was just bought out by British Telecom - I wonder if that
means that I can knock off earlier. ;)

Ok, I'll stop now before being admonished to move to
cf-soapbox/cf-community. :)

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

Email   : [EMAIL PROTECTED]
ICQ UIN : 3679482

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


 -Original Message-
 From: Reynolds, Adam [mailto:[EMAIL PROTECTED]]
 Sent: Friday, May 26, 2000 8:25 AM
 To: '[EMAIL PROTECTED]'
 Subject: RE: Cf express and sessions


 8 Hours?naw should move to the UK only have 3 hours to go... :-)

 Adam Reynolds

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



RE: Cf express and sessions

2000-05-25 Thread kraybill

Raymond's lucid explanation of how to get around CFExpress's absence of session 
management is available on this official Allaire page:

http://www.allaire.com/developer/referenceDesk/index.cfm

Thanks, Raymond

Umm... A bit of interesting irony in a company crippling a product in a certain way 
while at the same time publishing a reader "hack" explaining how to restore the 
missing functionality...

Gene Kraybill
LPW  Associates LLC
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Cf express and sessions

2000-04-28 Thread Mark W. Breneman

Anyone... Please

-Original Message-
From: Mark W. Breneman [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 27, 2000 10:03 AM
To: [EMAIL PROTECTED]
Subject: Cf express and sessions



Hello,

I am looking for an answer.  Does CF express support sessions?  At first
glance it aperies not to.  Has anyone found a work around for this?
CFexpress docs are as clear as mud.  Listing tags on both the supported and
not supported lists.  It is trying to say that some of the functions of that
tag are supported.  I know, I know I should not complain it is free after
all.

Thanks,

Mark W. Breneman
-Cold Fusion Developer
-Network Administrator
Vivid Media
[EMAIL PROTECTED]
www.vividmedia.com
608.270.9770


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

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



RE: Cf express and sessions

2000-04-28 Thread Pecora, James

No it does not -
you will have to maintain session via the URL

HTH

-Original Message-
From: Mark W. Breneman [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 28, 2000 12:12 PM
To: [EMAIL PROTECTED]
Subject: RE: Cf express and sessions


Anyone... Please

-Original Message-
From: Mark W. Breneman [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 27, 2000 10:03 AM
To: [EMAIL PROTECTED]
Subject: Cf express and sessions



Hello,

I am looking for an answer.  Does CF express support sessions?  At first
glance it aperies not to.  Has anyone found a work around for this?
CFexpress docs are as clear as mud.  Listing tags on both the supported and
not supported lists.  It is trying to say that some of the functions of that
tag are supported.  I know, I know I should not complain it is free after
all.

Thanks,

Mark W. Breneman
-Cold Fusion Developer
-Network Administrator
Vivid Media
[EMAIL PROTECTED]
www.vividmedia.com
608.270.9770


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


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



RE: Cf express and sessions

2000-04-28 Thread Raymond K. Camden

FYI, per my last email, I plan on actually writing an article about this
method sometime soon. Sorry to just 'show the code' and run.

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

Email   : [EMAIL PROTECTED]
ICQ UIN : 3679482

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


 -Original Message-
 From: Mark W. Breneman [mailto:[EMAIL PROTECTED]]
 Sent: Friday, April 28, 2000 1:12 PM
 To: [EMAIL PROTECTED]
 Subject: RE: Cf express and sessions


 Anyone... Please

 -Original Message-
 From: Mark W. Breneman [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, April 27, 2000 10:03 AM
 To: [EMAIL PROTECTED]
 Subject: Cf express and sessions



 Hello,

 I am looking for an answer.  Does CF express support sessions?  At first
 glance it aperies not to.  Has anyone found a work around for this?
 CFexpress docs are as clear as mud.  Listing tags on both the
 supported and
 not supported lists.  It is trying to say that some of the
 functions of that
 tag are supported.  I know, I know I should not complain it is free after
 all.

 Thanks,

 Mark W. Breneman
 -Cold Fusion Developer
 -Network Administrator
 Vivid Media
 [EMAIL PROTECTED]
 www.vividmedia.com
 608.270.9770

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

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

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



RE: Cf express and sessions

2000-04-28 Thread Chris Montgomery

You're right, it's not patently clear that CF Express supports session
variables.  Neither the FAQ, nor the Datasheet, nor the Tag list that I
pulled from the Partners site explicitly mentioned support for session
variables.  I also did a drill-down on Allaire's site (painfully slow
today) under CF Products and came upon this comparison matrix:
http://www.allaire.com/Products/ColdFusion/features/CF45ServerFeatureMat
rix.doc

It shows that CF Express supports persistent queries, so I would assume
that it does support session variables.  You might get a more definitive
answer in Allaire's support forums, though.

Sorry I couldn't help more.

Chris Montgomery
=
astutia.com - http://www.astutia.com  [EMAIL PROTECTED]
  Astute e-business applications  web site development
  210-490-3249/888-745-7603   Fax 210-490-4692
Allaire Consulting Partner/Authorized NetObjects Reseller
  Find a Job in San Antonio -  http://www.sajobnet.com
 Need professional help? - http://www.psychadvisor.com
=


-Original Message-
From: Mark W. Breneman [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 28, 2000 12:12 PM
To: [EMAIL PROTECTED]
Subject: RE: Cf express and sessions


Anyone... Please

-Original Message-
From: Mark W. Breneman [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 27, 2000 10:03 AM
To: [EMAIL PROTECTED]
Subject: Cf express and sessions



Hello,

I am looking for an answer.  Does CF express support sessions?
 At first
glance it aperies not to.  Has anyone found a work around for this?
CFexpress docs are as clear as mud.  Listing tags on both the
supported and
not supported lists.  It is trying to say that some of the
functions of that
tag are supported.  I know, I know I should not complain it is
free after
all.

Thanks,

Mark W. Breneman
-Cold Fusion Developer
-Network Administrator
Vivid Media
[EMAIL PROTECTED]
www.vividmedia.com
608.270.9770

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



Cf express and sessions

2000-04-27 Thread Mark W. Breneman


Hello,

I am looking for an answer.  Does CF express support sessions?  At first
glance it aperies not to.  Has anyone found a work around for this?
CFexpress docs are as clear as mud.  Listing tags on both the supported and
not supported lists.  It is trying to say that some of the functions of that
tag are supported.  I know, I know I should not complain it is free after
all.

Thanks,

Mark W. Breneman
-Cold Fusion Developer
-Network Administrator
Vivid Media
[EMAIL PROTECTED]
www.vividmedia.com
608.270.9770

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



CF Express for Linux

2000-04-17 Thread Iztok Polanic

Hy!

When can we expect CF Express for Linux?

Lep pozdrav,

Iztok

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



Re: CF Express for Linux

2000-04-17 Thread Chris Giminez

I just asked Allaire this question and was told maybe in a month.


Chris Giminez




 Hy!

 When can we expect CF Express for Linux?

 Lep pozdrav,

 Iztok

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


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