Re: Moving part of my hosting business - thoughts about my plan please ...

2014-06-03 Thread Pete Freitag

On Fri, Mar 28, 2014 at 5:21 AM, Mike K afpwebwo...@gmail.com wrote:

 Are there any other 'gotchas' moving from windows to linux?


I did a presentation on Linux for CF users at cf.Objective() this year, my
slides are here: http://slides.com/petefreitag/cf-on-linux#/

Is there any benefit of one flavour of Linux over another?


Yes, if you pick an obscure distribution intended for hardcore linux users
(for example Gentoo linux) you will have a hard time as a newbie. Pick one
that is commonly used such as Redhat Enterprise Linux / CentOS or Ubuntu. I
like RHEL/CentOS because they are pretty stable and they don't do bleeding
edge, main bug/security fixes, you have to upgrade to the next major
release to upgrade major versions of many packages. This has downsides too,
for example RHEL/CentOS 6.x will only support Apache 2.2.x if you want
Apache 2.4 you have to install it manually or wait for RHEL7.

--
Pete Freitag - Adobe Community Professional
http://foundeo.com/ - ColdFusion Consulting  Products
http://hackmycf.com - Is your ColdFusion Server Secure?
http://www.youtube.com/watch?v=ubESB87vl5U - FuseGuard your CFML in 10
minutes


~|
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:358706
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cfqueryparam to varchar raw problem

2014-06-03 Thread daniel kessler

I found that if I decouple the encrypt_column from the insert script by 
requesting it from dual first, that it then works fine.  While I would prefer 
to do it without a two-step process, this works fine for now.

cfquery  name=qInsertF9099AlienInfo_prep 
datasource=#application.dbDataSource#
select Encrypt_Column(RPAD(UPPER(NVL(cfqueryparam 
cfsqltype=cf_sql_varchar value=#arguments.inStruct.a_alien_last_name#,' 
')),56,' '),'CFASJAAAEPTSKEJPI') as a_alien_ln
from dual
/cfquery


cfquery name=qInsertF9099AlienInfo datasource=#application.dbDataSource#  

INSERT INTO F9099_ALIEN_INFO(
F9099_id, alien_last_name
)
VALUES  (
cfqueryparam cfsqltype=cf_sql_INTEGER 
value=#arguments.inStruct.l_F9099_id#,
cfqueryparam cfsqltype=CF_SQL_VARBINARY 
value=#qInsertF9099AlienInfo_prep.a_alien_ln#
) 
/cfquery

~|
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:358707
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Moving part of my hosting business - thoughts about my plan please ...

2014-06-03 Thread Gerald Guido



 I like RHEL/CentOS because they are pretty stable and they don't do
 bleeding
 edge, main bug/security fixes, you have to upgrade to the next major
 release to upgrade major versions of many packages.


Yeah what Pete said,

I have been on Centos and RedHat for years. It is very stable but the
package manager seems to be a few versions behind the latest release of
software packages. This is mostly for security and stability reasons, i.e.
they err on the side of caution. Which is fine and dandy with me.

There are a multitude of hosting CF's out there what will automate a lot
of, if not most, admin chores. But the downside of these are of course
security concerns. The most infamous of which is Kloxo:

http://en.wikipedia.org/wiki/Kloxo#Security_issues

So caveat emptor and do your research first.

G!

*Gerald Anthony Guido*
Nullius in verba http://en.wikipedia.org/wiki/Nullius_in_verba
-- Horace

Twitter https://twitter.com/CozmoTrouble
Facebook https://www.facebook.com/gerald.guido.9


On Tue, Jun 3, 2014 at 10:26 AM, Pete Freitag p...@foundeo.com wrote:


 On Fri, Mar 28, 2014 at 5:21 AM, Mike K afpwebwo...@gmail.com wrote:

  Are there any other 'gotchas' moving from windows to linux?
 

 I did a presentation on Linux for CF users at cf.Objective() this year, my
 slides are here: http://slides.com/petefreitag/cf-on-linux#/

 Is there any benefit of one flavour of Linux over another?
 

 Yes, if you pick an obscure distribution intended for hardcore linux users
 (for example Gentoo linux) you will have a hard time as a newbie. Pick one
 that is commonly used such as Redhat Enterprise Linux / CentOS or Ubuntu. I
 like RHEL/CentOS because they are pretty stable and they don't do bleeding
 edge, main bug/security fixes, you have to upgrade to the next major
 release to upgrade major versions of many packages. This has downsides too,
 for example RHEL/CentOS 6.x will only support Apache 2.2.x if you want
 Apache 2.4 you have to install it manually or wait for RHEL7.

 --
 Pete Freitag - Adobe Community Professional
 http://foundeo.com/ - ColdFusion Consulting  Products
 http://hackmycf.com - Is your ColdFusion Server Secure?
 http://www.youtube.com/watch?v=ubESB87vl5U - FuseGuard your CFML in 10
 minutes


 

~|
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:358708
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Moving part of my hosting business - thoughts about my plan please ...

2014-06-03 Thread Mark A Kruger

We use CentOS extensively here at CFWT and have many customers using it as
well. Very solid. 

-Original Message-
From: Gerald Guido [mailto:gerald.gu...@gmail.com] 
Sent: Tuesday, June 03, 2014 10:29 AM
To: cf-talk
Subject: Re: Moving part of my hosting business - thoughts about my plan
please ...




 I like RHEL/CentOS because they are pretty stable and they don't do
 bleeding
 edge, main bug/security fixes, you have to upgrade to the next major
 release to upgrade major versions of many packages.


Yeah what Pete said,

I have been on Centos and RedHat for years. It is very stable but the
package manager seems to be a few versions behind the latest release of
software packages. This is mostly for security and stability reasons, i.e.
they err on the side of caution. Which is fine and dandy with me.

There are a multitude of hosting CF's out there what will automate a lot
of, if not most, admin chores. But the downside of these are of course
security concerns. The most infamous of which is Kloxo:

http://en.wikipedia.org/wiki/Kloxo#Security_issues

So caveat emptor and do your research first.

G!

*Gerald Anthony Guido*
Nullius in verba http://en.wikipedia.org/wiki/Nullius_in_verba
-- Horace

Twitter https://twitter.com/CozmoTrouble
Facebook https://www.facebook.com/gerald.guido.9


On Tue, Jun 3, 2014 at 10:26 AM, Pete Freitag p...@foundeo.com wrote:


 On Fri, Mar 28, 2014 at 5:21 AM, Mike K afpwebwo...@gmail.com wrote:

  Are there any other 'gotchas' moving from windows to linux?
 

 I did a presentation on Linux for CF users at cf.Objective() this year, my
 slides are here: http://slides.com/petefreitag/cf-on-linux#/

 Is there any benefit of one flavour of Linux over another?
 

 Yes, if you pick an obscure distribution intended for hardcore linux users
 (for example Gentoo linux) you will have a hard time as a newbie. Pick one
 that is commonly used such as Redhat Enterprise Linux / CentOS or Ubuntu.
I
 like RHEL/CentOS because they are pretty stable and they don't do bleeding
 edge, main bug/security fixes, you have to upgrade to the next major
 release to upgrade major versions of many packages. This has downsides
too,
 for example RHEL/CentOS 6.x will only support Apache 2.2.x if you want
 Apache 2.4 you have to install it manually or wait for RHEL7.

 --
 Pete Freitag - Adobe Community Professional
 http://foundeo.com/ - ColdFusion Consulting  Products
 http://hackmycf.com - Is your ColdFusion Server Secure?
 http://www.youtube.com/watch?v=ubESB87vl5U - FuseGuard your CFML in 10
 minutes


 



~|
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:358709
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm