Re: ColdFusion and Linux

2009-12-09 Thread Tom Chiverton

On Friday 04 Dec 2009, Raul Riera wrote:
 Does anyone know the solution of this? Also, what would be the recommended
 chmod to use? seems like 777 is the only one that will allow me to write to
 the folder

Don't do that. Or '666'. This allows anyone on the server to alter the file. 
This isn't what you want (almost certainly).

Change the owner (or group) of the folder to match what the ColdFusion service 
is running as e.g. 'chown nobody /path/to/folder'.

-- 
Helping to augmentatively cultivate network eye-catching attention-grabbing 
deliverables as part of the IT team of the year, '09 and '08



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office together with a 
list of those non members who are referred to as partners.  We use the word 
“partner” to refer to a member of the LLP, or an employee or consultant with 
equivalent standing and qualifications. Regulated by the Solicitors Regulation 
Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.co

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329002
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion and Linux

2009-12-04 Thread Kris Sisk

 Does anyone know the solution of this? Also, what would be the 
 recommended chmod to use? seems like 777 is the only one that will 
 allow me to write to the folder 

I'm not sure about your accents and whatnot. Being embarrassingly unilingual I 
don't use them very much. But your chmod should be 666 for read/write access. 
777 is read/write/execute permission for everyone, so unless you're outputting 
scripts that you want to be able to run, 666 is the better chmod. 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328844
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: ColdFusion and Linux

2009-12-04 Thread Ravi Gehlot

Hello Raul,

I run Linux on my box. I am not sure what your problem is. My cffile
writes without a problem with or without accents. Can you send your code
through or paste it on pastebin.com?

Regards,
Ravi.

On Fri, 2009-12-04 at 00:34 -0500, Raul Riera wrote:
 rierar...@gmail.com





Ravi Gehlot
http://www.ravigehlot.net
r...@ravigehlot.net
Computer Science Student
Computer Programmer



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328853
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion and Linux

2009-12-04 Thread Raul Riera

Hello Raul,

   I run Linux on my box. I am not sure what your problem is. My cffile
writes without a problem with or without accents. Can you send your code
through or paste it on pastebin.com?


Hi, sure here it is http://pastebin.com/m4ed72d7f the file gets written 
alright, it just the content that is all messed up... (this worked on windows 
though) running Adobe ColdFusion 8 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328863
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion and Linux

2009-12-04 Thread Jordan Michaels

Actually 666 would give read-write permissions to everyone as well. 
Here's the break down:

First number = owner rights
Second number = group rights
Third number = world rights

 From there, each number is determined from the following values:

Read = 4
Write = 2
Execute = 1

If I want to give ONLY the owner read/write permissions, and everyone 
else just gets to read it, I would set it to the following:

4 (read) + 2 (write) = 6

Now that we know the numbers to use, we can assign those numbers to the 
users we want to have those permissions

Owner: 6
Group: 4
World: 4

And now we know what to use with our chmod command:

# chmod 644 myfile.cfm

Make sense?

Hope this helps!

Warm regards,
Jordan Michaels
Vivio Technologies
http://www.viviotech.net/
Open BlueDragon Steering Committee
Adobe Solution Provider


Kris Sisk wrote:
 Does anyone know the solution of this? Also, what would be the 
 recommended chmod to use? seems like 777 is the only one that will 
 allow me to write to the folder 
 
 I'm not sure about your accents and whatnot. Being embarrassingly unilingual 
 I don't use them very much. But your chmod should be 666 for read/write 
 access. 777 is read/write/execute permission for everyone, so unless you're 
 outputting scripts that you want to be able to run, 666 is the better chmod. 
 
 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328879
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


ColdFusion and Linux

2009-12-03 Thread Raul Riera

Hi,

I am new at working with Linux in ColdFusion (plenty of Windows experience) I 
am having problems with the cffile tag, it seems that the tag will destroy my 
accents (spanish) and special characters, I tried using chartset=utf-8 but it 
is still turning them into ? signs and weird symbols.

Does anyone know the solution of this? Also, what would be the recommended 
chmod to use? seems like 777 is the only one that will allow me to write to the 
folder 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328826
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion and Linux

2009-12-03 Thread Paul Hastings

On 12/4/2009 12:34 PM, Raul Riera wrote:
 am having problems with the cffile tag, it seems that the tag will destroy my
 accents (spanish) and special characters, I tried using chartset=utf-8 but
 it is still turning them into ? signs and weird symbols.

first off its charset. 2nd, is the file actually encoded as utf-8?

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328827
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion and Linux

2009-12-03 Thread Raul Riera

On 12/4/2009 12:34 PM, Raul Riera wrote:
 am having problems with the cffile tag, it seems that the tag will destroy my
 accents (spanish) and special characters, I tried using chartset=utf-8 but
 it is still turning them into ? signs and weird symbols.

first off its charset. 2nd, is the file actually encoded as utf-8?

Hey Paul, yeah that was a typo here, but in the code is correct, what do you 
mean by actually encoded? in Windows all I need to do is write in the textarea 
the way I want to (accents, special characters, etc) and it's saved alright to 
the database (this is the case here as well, but when writting to the files, 
all gets messed up...

Example:

(this is what I write in the textarea and how is saved in the DB, notice the 
accent in ofreciéndoles)
Pensando en las cambiantes necesidades de nuestros pacientes, renovamos y 
mejoramos nuestras instalaciones,  ofreciéndoles un mejor servicio, con un 
mayor confort, contando siempre con  un trato humano y amable.

(this is what gets written to the filesystem, notice the question mark)
Pensando en las cambiantes necesidades de nuestros pacientes, renovamos y 
mejoramos nuestras instalaciones, ofreci?ndoles un mejor servicio, con un mayor 
confort, contando siempre con un trato humano y amable.

You can check the site at www.bokanova.mx (I have tried using meta tags, and 
everything, how it is now is how it was in Windows.. and working then)

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328828
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion on Linux

2006-07-14 Thread mac jordan
On 7/14/06, Rick Root [EMAIL PROTECTED] wrote:


 Fedora should actually work quite nicely, not sure about the other.



we're running CFMX 7 Enterprise on Ubuntu with no problems at all.

-- 
mac jordan
home: www.kestrel.org
work: www.webhorus.net
them: www.jordan-cats.org


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246499
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: ColdFusion on Linux

2006-07-14 Thread Tom Chiverton
On Friday 14 July 2006 02:46, Rick Root wrote:
 Rey Bango wrote:
  et al). This will be on a development server.

 Then partitioning is *really* unimportant. 

Seconded.
Take the defaults the installer gives you.

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246506
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


ColdFusion on Linux

2006-07-13 Thread Rey Bango
Hi all,

I want to install CFMX on Linux (Ubuntu specifically). Coming primarily 
from a Windows background, I'm not sure how to properly partition the 
install of Linux. I'm not in need of a partitioning how-to but more some 
guidance on how big to make certain partitions (such as /, /opt, /bin, 
et al). This will be on a development server.

Any help would be awesome.

Rey...


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246487
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: ColdFusion on Linux

2006-07-13 Thread Rick Root
Rey Bango wrote:
 
 et al). This will be on a development server.

Then partitioning is *really* unimportant.  It's not even that important 
in a production environment - not like it used to be.

Here's my suggestion to partition a dev server with aan 80 gig hard drive:

/root 100mb
/boot 250mb
/ everything else

Rick

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246488
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: ColdFusion on Linux

2006-07-13 Thread B V
Regarding this, one quick questions:
I was looking on adobe.com about CF product sys requirements and it said
that the linux OSes were RH Ent and SUSE Linux. Does that mean that he can't
install on Ubuntu and I can't install on FEDORA CORE?

On 7/13/06, Rick Root [EMAIL PROTECTED] wrote:

 Rey Bango wrote:
 
  et al). This will be on a development server.

 Then partitioning is *really* unimportant.  It's not even that important
 in a production environment - not like it used to be.

 Here's my suggestion to partition a dev server with aan 80 gig hard drive:

 /root 100mb
 /boot 250mb
 / everything else

 Rick

 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246489
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: ColdFusion on Linux

2006-07-13 Thread Rey Bango
I picked up this link from on of Jacob's blog posting awhile ago:

http://www.howtoforge.com/coldfusion_installation_debian_sarge

The install is supposed to be very similar to this.

Rey...

B V wrote:
 Regarding this, one quick questions:
 I was looking on adobe.com about CF product sys requirements and it said
 that the linux OSes were RH Ent and SUSE Linux. Does that mean that he can't
 install on Ubuntu and I can't install on FEDORA CORE?

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246490
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion on Linux

2006-07-13 Thread Rick Root
B V wrote:
 Regarding this, one quick questions:
 I was looking on adobe.com about CF product sys requirements and it said
 that the linux OSes were RH Ent and SUSE Linux. Does that mean that he can't
 install on Ubuntu and I can't install on FEDORA CORE?

I have it running on CentOS 4.  OF course, CentOS 4 is essentially an 
exact copy of Redhat Enterprise Linux.

No, what that means is you get no support whatsoever from Adobe if you 
install it and manage to get it running on an unsupported operating 
system.  Adobe can't be expected to support all flavors of Linux, so if 
you really want to run something in production, you go with a supported 
platform.  If you don't need support, and you can get it running, go for 
whatever you want.

Fedora should actually work quite nicely, not sure about the other.

Rick

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246491
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: ColdFusion on Linux

2006-07-13 Thread B V
Well, that's what I got in a quote for a dedicated (possibly) from HMS it's
just the issue was I wasn't looking forward to paying for something more
than the cost of the actual server (linux dist) to support CF... (I
priced the server out on dell.com and its 769) . As for support, HMS can
support it..

On 7/13/06, Rick Root [EMAIL PROTECTED] wrote:

 B V wrote:
  Regarding this, one quick questions:
  I was looking on adobe.com about CF product sys requirements and it said
  that the linux OSes were RH Ent and SUSE Linux. Does that mean that he
 can't
  install on Ubuntu and I can't install on FEDORA CORE?

 I have it running on CentOS 4.  OF course, CentOS 4 is essentially an
 exact copy of Redhat Enterprise Linux.

 No, what that means is you get no support whatsoever from Adobe if you
 install it and manage to get it running on an unsupported operating
 system.  Adobe can't be expected to support all flavors of Linux, so if
 you really want to run something in production, you go with a supported
 platform.  If you don't need support, and you can get it running, go for
 whatever you want.

 Fedora should actually work quite nicely, not sure about the other.

 Rick

 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246493
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: ColdFusion on Linux

2006-07-13 Thread Rick Root
B V wrote:
 Well, that's what I got in a quote for a dedicated (possibly) from HMS it's
 just the issue was I wasn't looking forward to paying for something more
 than the cost of the actual server (linux dist) to support CF... (I
 priced the server out on dell.com and its 769) . As for support, HMS can
 support it..


if I were you, I'd look into VivioTech - their dedicated prices are 
fantastic.  I've had my dedicated server with them for over a year now 
and have been very happy.

They provide CentOS so you won't have any problems at all.  Anything 
that runs on Redhat Enterprise Linux will run exactly the same on CentOS.

If you'll pardon my affiliate code

http://www.viviotech.net/hosting.cfm?rid=rickroot

Rick

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246496
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


SOT: ColdFusion on Linux

2003-07-29 Thread David K
Are there any issues using a MS Access DB 
with ColdFusion on a Linux box? 

David K.

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

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

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: SOT: ColdFusion on Linux

2003-07-29 Thread Oliver Tupman
David K wrote:
 Are there any issues using a MS Access DB 
 with ColdFusion on a Linux box? 

Think you'd need to dig out a JDBC driver to access it. In my brief 
search I discovered that these generally cost money. As it was only 
going to be for a temporary measure I didn't bother, and just used MySQL 
as usual.

 David K.
 
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

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

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: ColdFusion on Linux

2003-07-29 Thread David K
BTW, we're talking CF version 5 on this...


- Original Message - 
From: David K [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, July 29, 2003 8:30 AM
Subject: SOT: ColdFusion on Linux


 Are there any issues using a MS Access DB
 with ColdFusion on a Linux box?

 David K.

 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: ColdFusion on Linux

2003-07-29 Thread Cary Gordon
CF for Linux does not include an Access ODBC driver.  Access is different 
from database servers like MySQL or MS SQL.  The .mdb file is basically 
just a data file.  The Windows Access ODBC driver uses the MSJet database 
engine (we won't muddy this with MSDE) to become, in effect, the database 
server.

AFAIK, there is nothing with similar functionality available on other 
platforms.

There is a company called Intelligent Converters 
http://www.convert-in.com that makes utilities to convert from Access to 
MySQL and back again.  You should check them out.

Cary Gordon
The Cherry Hill Company

At 08:55 AM 7/29/2003 -0700, you wrote:
BTW, we're talking CF version 5 on this...


- Original Message -
From: David K [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, July 29, 2003 8:30 AM
Subject: SOT: ColdFusion on Linux


  Are there any issues using a MS Access DB
  with ColdFusion on a Linux box?
 
  David K.


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



ColdFusion platforms : Linux versus Windows 2000

2002-11-29 Thread [mRg]
Hi,

I am about to set up a web application which has been developed in ColdFusion on  
Linux using Microsoft SQL as the backend database.

This application is now ready to go live, and we need to decide whether to run the 
ColdFusion server on Linux or Microsoft Windows 2000, as we have equal knowledge of 
both.  The database will be sitting on a different server, so the server will only be 
used to host the front-end application.

I'd like to hear peoples thoughts and experiences on the pros and cons of using either 
one of these platforms for a ColdFusion environment.

Thanks,

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: ColdFusion platforms : Linux versus Windows 2000

2002-11-29 Thread webguy
This is the same as any Linux v's windows web hosting debate so you'll get
lots of opinions.

Here are the issues as I see it

a) do know the same amount about each, and you have the same amount of
people in house that do
b) do you are confident in your security knowledge on both (or you are
willing to pay someone)
c) do you find both as easy to admin remotely
d) cost is not a issue
e) your app works in both
f) you have checked the status of verity on Linux (there where issues)
g) what are you developing on ? Linux ? or Win?
h) you are not thinking of using any 3rd party COM or Windows technology now
or in the future

Check out [EMAIL PROTECTED]  and the cf Linux faq at macromedia.com
for more on cf  Linux.

WG


 -Original Message-
 From: [mRg] [mailto:[EMAIL PROTECTED]]
 Sent: 29 November 2002 17:41
 To: CF-Talk
 Subject: ColdFusion platforms : Linux versus Windows 2000


 Hi,

 I am about to set up a web application which has been developed
 in ColdFusion on  Linux using Microsoft SQL as the backend database.

 This application is now ready to go live, and we need to decide
 whether to run the ColdFusion server on Linux or Microsoft
 Windows 2000, as we have equal knowledge of both.  The database
 will be sitting on a different server, so the server will only be
 used to host the front-end application.

 I'd like to hear peoples thoughts and experiences on the pros and
 cons of using either one of these platforms for a ColdFusion environment.

 Thanks,

 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Re: ColdFusion platforms : Linux versus Windows 2000

2002-11-29 Thread samcfug
I have CF 5.0 on my Linux box, and my SQL2000 database on another box running
Win2k.  Using the ODBC driver that comes with CF, I am able to connect to the
SQL database and it works very well.  I even set up a custom port which
side-steps all the port 1433 scans that seem to be the norm these days.

=
Douglas White
group Manager
mailto:[EMAIL PROTECTED]
http://www.samcfug.org
=
- Original Message -
From: [mRg] [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, November 29, 2002 11:41 AM
Subject: ColdFusion platforms : Linux versus Windows 2000


| Hi,
|
| I am about to set up a web application which has been developed in ColdFusion
on  Linux using Microsoft SQL as the backend database.
|
| This application is now ready to go live, and we need to decide whether to run
the ColdFusion server on Linux or Microsoft Windows 2000, as we have equal
knowledge of both.  The database will be sitting on a different server, so the
server will only be used to host the front-end application.
|
| I'd like to hear peoples thoughts and experiences on the pros and cons of
using either one of these platforms for a ColdFusion environment.
|
| Thanks,
|
| 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



ColdFusion for Linux on Sparc?

2000-09-18 Thread Stas Newdel

Does anybody know if ColdFusion Pro for Linux will run on Sun hardware
running Linux? Thanks!

--
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-Talk] Re: ColdFusion for Linux on Sparc?

2000-09-18 Thread Michael Dinowitz

A very interesting question. You may want to ask it on the CF-Linux list as
there may be people there that are not on the CF-Talk list.


 Does anybody know if ColdFusion Pro for Linux will run on Sun hardware
 running Linux? Thanks!

 --

 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-Talk] RE: ColdFusion for Linux on Sparc?

2000-09-18 Thread Michael Sheldon

Nope, if you want to run CF on sun hardware, you gotta run Solaris.

Michael J. Sheldon


-Original Message-
From: Stas Newdel [mailto:[EMAIL PROTECTED]]
Sent: Monday, September 18, 2000 9:34 AM
To: CFTalk
Subject: ColdFusion for Linux on Sparc?


Does anybody know if ColdFusion Pro for Linux will run on Sun hardware
running Linux? Thanks!


--
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-Talk] RE: ColdFusion for Linux on Sparc?

2000-09-18 Thread Dave Watts

 Does anybody know if ColdFusion Pro for Linux will run on Sun 
 hardware running Linux? Thanks!

According to Allaire's official materials, no. I'd guess that you can't
simply because it's a binary distribution, and Linux Sparc binaries will be
different from Linux x386 binaries.

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-Talk] Re: ColdFusion for Linux on Sparc?

2000-09-18 Thread Jesse Noller

Coldfusion for Linux only runs on the Intel architecture at the moment.

-Jesse Noller
Allaire Corp

-Original Message-
From: Michael Dinowitz [mailto:[EMAIL PROTECTED]]
Sent: Monday, September 18, 2000 2:07 PM
To: [EMAIL PROTECTED]
Subject: [CF-Talk] Re: ColdFusion for Linux on Sparc?


A very interesting question. You may want to ask it on the CF-Linux list as
there may be people there that are not on the CF-Talk list.


 Does anybody know if ColdFusion Pro for Linux will run on Sun hardware
 running Linux? Thanks!

 --

 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.



RE: [CF-Talk] Re: ColdFusion for Linux on Sparc?

2000-09-18 Thread mherbene

I'm quite sure Cf Linux is compiled only for Intel (and compatible)
processors, so the answer would be no.

-Original Message-
From: Michael Dinowitz [mailto:[EMAIL PROTECTED]]
Sent: Monday, September 18, 2000 2:07 PM
To: [EMAIL PROTECTED]
Subject: [CF-Talk] Re: ColdFusion for Linux on Sparc?


A very interesting question. You may want to ask it on the CF-Linux list as
there may be people there that are not on the CF-Talk list.


 Does anybody know if ColdFusion Pro for Linux will run on Sun hardware
 running Linux? Thanks!

 --

 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.



RE: [CF-Talk] RE: ColdFusion for Linux on Sparc?

2000-09-18 Thread Kevin Langevin

I seem to remember that there's some known issue(s) with CFFTP.  Anyone know
what it is (are)?

CFUG-SFL Manager
-Kev
/CFUG-SFL Manager

 -Original Message-
 From: Michael Sheldon [mailto:[EMAIL PROTECTED]]
 Sent: Monday, September 18, 2000 2:17 PM
 To: [EMAIL PROTECTED]
 Subject: [CF-Talk] RE: ColdFusion for Linux on Sparc?


 Nope, if you want to run CF on sun hardware, you gotta run Solaris.

 Michael J. Sheldon


 -Original Message-
 From: Stas Newdel [mailto:[EMAIL PROTECTED]]
 Sent: Monday, September 18, 2000 9:34 AM
 To: CFTalk
 Subject: ColdFusion for Linux on Sparc?


 Does anybody know if ColdFusion Pro for Linux will run on Sun hardware
 running Linux? Thanks!

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