Re: CF hosting needed

2000-09-17 Thread Barbara J. Smith

I, too, am in need of CF hosting for testing purposes, so I am benefiting
from the original question.  But I do have one to add . . . can I expect
that CF hosts will utilize such allow CFDirectory and CFRegistry.  And
should I expect that they have sandboxes enabled?  I'm using sitehosting.net
right now, and they have disallowed all of the above.  Thank you . . . BJS

Barbara J Smith Consulting
http://www.bjsconsulting.com
[EMAIL PROTECTED]
651.365.0822

--
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 hosting needed

2000-09-17 Thread Steve Pierce

The reason many of those features are turned off is because of security
concerns. You have to balance shared hosting with good security while
providing good service. Hosting companies that just open up the entire
server are likely to be very unreliable.

Sandboxing is also only available under CF Enterprise which costs something
like $5,000 per server. So many hosting companies use Pro ($1,500) which
doesn't have sand boxing. If you need every feature turned on in CF, then
your best solution is to go with a dedicated or collocated server that you
have full control over and more importantly, no one else does.

 - Steve


-Original Message-
From: Barbara J. Smith [mailto:[EMAIL PROTECTED]]
Sent: Sunday, September 17, 2000 9:04 AM
To: [EMAIL PROTECTED]
Subject: Re: CF hosting needed


I, too, am in need of CF hosting for testing purposes, so I am benefiting
from the original question.  But I do have one to add . . . can I expect
that CF hosts will utilize such allow CFDirectory and CFRegistry.  And
should I expect that they have sandboxes enabled?  I'm using sitehosting.net
right now, and they have disallowed all of the above.  Thank you . . . BJS

Barbara J Smith Consulting
http://www.bjsconsulting.com
[EMAIL PROTECTED]
651.365.0822


--
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 hosting needed

2000-09-17 Thread paul smith

Anyone have any comments on the CFFILE replacements in Allaire's tag
gallery, CFX_File  CFX_Secure_Functions?

It appears to me they introduce password protection, but not other
functions that would be nice such as directory restriction by
password, no *.EXE, etc, that would bring functionality up to
FTP capability.

Any other tags around?

best,  paul

At 12:38 PM 9/17/00 -0400, Steve Pierce wrote:
The reason many of those features are turned off is because of security
concerns. You have to balance shared hosting with good security while
providing good service. Hosting companies that just open up the entire
server are likely to be very unreliable.

--
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 hosting needed

2000-09-17 Thread Leong Yew

Paul,

I encountered this problem when I used a CF hosting service with these tags 
disabled. For me the solution was simple. Since most CF hosts will be using 
Windows NT, you can most certainly expect them to support ASP. All you'll 
have to do is to  write an ASP template using FileSystemObject object to 
open a file, and then use CFHTTP to access that ASP template and to return 
the file as cfhttp.content, which you can then manipulate as a string.

I have a partially written custom tag for this, and I can send this to you. 
THat is, if I can find it...

Hope this helps.

Leong

At 10:17 AM 9/17/2000 -0700, you wrote:
Anyone have any comments on the CFFILE replacements in Allaire's tag
gallery, CFX_File  CFX_Secure_Functions?

It appears to me they introduce password protection, but not other
functions that would be nice such as directory restriction by
password, no *.EXE, etc, that would bring functionality up to
FTP capability.

Any other tags around?

best,  paul

At 12:38 PM 9/17/00 -0400, Steve Pierce wrote:
 The reason many of those features are turned off is because of security
 concerns. You have to balance shared hosting with good security while
 providing good service. Hosting companies that just open up the entire
 server are likely to be very unreliable.

--
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 hosting needed

2000-09-17 Thread Dave Watts

 I encountered this problem when I used a CF hosting service 
 with these tags disabled. For me the solution was simple. 
 Since most CF hosts will be using Windows NT, you can most 
 certainly expect them to support ASP. All you'll have to do 
 is to write an ASP template using FileSystemObject object to 
 open a file, and then use CFHTTP to access that ASP template 
 and to return the file as cfhttp.content, which you can then 
 manipulate as a string.

Just as a word of warning, providers of ASP shared hosting who are concerned
about security will disable this object for obvious reasons.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
--
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 hosting needed

2000-09-17 Thread paul smith

Well, I'm on the hosting end of the equation.

My issue is a way to enable CFFILE-like function
for my customers without enabling any more security
problems than I already have with FTP.  You've just
given me one more reason I'll never enable ASP on
my servers (apart from the fact I don't have the time
or patience to deal with more than one CF-like product).

best,  paul

At 08:44 AM 9/18/00 +0930, you wrote:
Paul,

I encountered this problem when I used a CF hosting service with these tags
disabled. For me the solution was simple. Since most CF hosts will be using
Windows NT, you can most certainly expect them to support ASP. All you'll
have to do is to  write an ASP template using FileSystemObject object to
open a file, and then use CFHTTP to access that ASP template and to return
the file as cfhttp.content, which you can then manipulate as a string.

--
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 hosting needed

2000-09-16 Thread Bob Lehman

Laszlo

I have found that InfoQuest has done the trick for me. There website is
www.fptoday.com

Robert Lehman (Bob)
New Horizon Mgmt and Consulting
440-542-0992
Visit our Website at www.nhmac.com
Visit the client Website at www.Manage-2000.com
- Original Message -
From: "Laszlo Nadai" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, September 15, 2000 11:05 PM
Subject: CF hosting needed


 Anyone knows a 'reasonable' priced (low volume) CF hosting site?
 I do need WAP and some 'real' database support (MySQL, DB2 or ...)

 Thanks,
 laszlo
 --

 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 hosting needed

2000-09-16 Thread Laszlo Nadai

Thanks, Bob.

laszlo

Bob Lehman wrote:
 
 Laszlo
 
 I have found that InfoQuest has done the trick for me. There website is
 www.fptoday.com
 
 Robert Lehman (Bob)
 New Horizon Mgmt and Consulting
 440-542-0992
 Visit our Website at www.nhmac.com
 Visit the client Website at www.Manage-2000.com
 - Original Message -
 From: "Laszlo Nadai" [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Friday, September 15, 2000 11:05 PM
 Subject: CF hosting needed
 
  Anyone knows a 'reasonable' priced (low volume) CF hosting site?
  I do need WAP and some 'real' database support (MySQL, DB2 or ...)
 
  Thanks,
  laszlo
  --
 
  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.
--
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 hosting needed

2000-09-15 Thread Laszlo Nadai

Anyone knows a 'reasonable' priced (low volume) CF hosting site?
I do need WAP and some 'real' database support (MySQL, DB2 or ...)

Thanks,
laszlo
--
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.