Re: Proxying Apache to Tomcat For CF9

2011-06-17 Thread Michael Wright

Thanks for all your help Sean. I've got ACF and Railo running now together
on jrun using the same webroot so that will do. And yes you are very right
about ACF :)

On Fri, Jun 17, 2011 at 7:24 AM, Sean Corfield seancorfi...@gmail.comwrote:


 On Thu, Jun 16, 2011 at 9:19 PM, Michael Wright
 mich...@mwwebsolutions.com wrote:
  Ahh ok I see now :) Basically its failing because the webroot I'm trying
 to
  use doesnt have the WEB-INF right?

 Yup.

  Would my idea of all 3 engines sharing a webroot on JRun work then?

 No. Railo and OpenBD are strict Java web applications and expect the
 webroot to contain their WEB-INF/ folder.

 ACF has really spoiled CFers and made them oblivious to how (Java) web
 applications work :)
 --
 Sean A Corfield -- (904) 302-SEAN
 An Architect's View -- http://corfield.org/
 World Singles, LLC. -- http://worldsingles.com/
 Railo Technologies, Inc. -- http://www.getrailo.com/

 Perfection is the enemy of the good.
 -- Gustave Flaubert, French realist novelist (1821-1880)

 

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


Proxying Apache to Tomcat For CF9

2011-06-16 Thread Michael Wright

Hi,

I'm experimenting with running CF on Tomcat and having a bit of a problem
getting the proxying set up.

I've been using

http://www.web-rat.com/blog/post.cfm/installing-railo-on-tomcat-the-windows-edition
and
http://www.andyallan.com/blog/post.cfm/coldfusion-and-tomcat-web-server-conifguration

as guides.

I've got my vhost set-up and it works finee with basic .htm but gives me
404's on all my .cfm

It's probably something simple I've missed due to it being 2am :)

Extract from httpd.conf:

LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
#LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
#LoadModule proxy_connect_module modules/mod_proxy_connect.so
#LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
#LoadModule proxy_http_module modules/mod_proxy_http.so
#LoadModule proxy_scgi_module modules/mod_proxy_scgi.so
#LoadModule reqtimeout_module modules/mod_reqtimeout.so
LoadModule rewrite_module modules/mod_rewrite.so

And my httpd-vhosts entry:

VirtualHost *:80
ServerName cfusion.local
# We need to specify the Document Root as we are only proxying .cf* files to
Tomcat, therefore keeping
# all static files served by Apache
DocumentRoot C:/Websites
DirectoryIndex index.cfm
Location /
 Order allow,deny
 Allow from All
/Location
# Only allow proxing from 127.0.0.1
Proxy *
 Order Deny,Allow
 Deny from all
 Allow from 127.0.0.1
/Proxy
# We need the ProxyPreserveHost if we are using multiple VHosts
ProxyPreserveHost On
# Only Proxy .cfc and .cfm files
ProxyPassMatch ^/(.+\.cf[cm])(/.*)?$ ajp://localhost:8009/$1$2#
# Need these two lines to maintain sessions
ProxyPassReverseCookieDomain / /
ProxyPassReverseCookiePath / /
# Configure logging
ErrorLog logs/cfusion-error.log
CustomLog logs/cfusion-access.log common
/VirtualHost


I'm guessing it's something to do with the ProxyPassMatch entry???

Thanks,
Michael


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


Re: Proxying Apache to Tomcat For CF9

2011-06-16 Thread Michael Wright

I've changed ProxyPassMatch to
ProxyPassMatch ^/(.+\.cf[cm])(/.*)?$ ajp://localhost:8009/cfusion/$1$2
and now have CF serving up the 404's instead of Tomcat.

On Fri, Jun 17, 2011 at 2:09 AM, Michael Wright
mich...@mwwebsolutions.comwrote:

 Hi,

 I'm experimenting with running CF on Tomcat and having a bit of a problem
 getting the proxying set up.

 I've been using


 http://www.web-rat.com/blog/post.cfm/installing-railo-on-tomcat-the-windows-edition
 and

 http://www.andyallan.com/blog/post.cfm/coldfusion-and-tomcat-web-server-conifguration

 as guides.

 I've got my vhost set-up and it works finee with basic .htm but gives me
 404's on all my .cfm

 It's probably something simple I've missed due to it being 2am :)

 Extract from httpd.conf:

 LoadModule proxy_module modules/mod_proxy.so
 LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
 #LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
 #LoadModule proxy_connect_module modules/mod_proxy_connect.so
 #LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
 #LoadModule proxy_http_module modules/mod_proxy_http.so
 #LoadModule proxy_scgi_module modules/mod_proxy_scgi.so
 #LoadModule reqtimeout_module modules/mod_reqtimeout.so
 LoadModule rewrite_module modules/mod_rewrite.so

 And my httpd-vhosts entry:

 VirtualHost *:80
 ServerName cfusion.local
 # We need to specify the Document Root as we are only proxying .cf* files
 to Tomcat, therefore keeping
 # all static files served by Apache
 DocumentRoot C:/Websites
 DirectoryIndex index.cfm
 Location /
  Order allow,deny
  Allow from All
 /Location
 # Only allow proxing from 127.0.0.1
 Proxy *
  Order Deny,Allow
  Deny from all
  Allow from 127.0.0.1
 /Proxy
 # We need the ProxyPreserveHost if we are using multiple VHosts
 ProxyPreserveHost On
 # Only Proxy .cfc and .cfm files
 ProxyPassMatch ^/(.+\.cf[cm])(/.*)?$ ajp://localhost:8009/$1$2#
 # Need these two lines to maintain sessions
 ProxyPassReverseCookieDomain / /
 ProxyPassReverseCookiePath / /
 # Configure logging
 ErrorLog logs/cfusion-error.log
 CustomLog logs/cfusion-access.log common
 /VirtualHost


 I'm guessing it's something to do with the ProxyPassMatch entry???

 Thanks,
 Michael



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


Re: Proxying Apache to Tomcat For CF9

2011-06-16 Thread Michael Wright

Still no success having tried those, but thinking about it I'm guessing the
proxying side of it must be working as its CF's 404 template I'm getting.

That's leading me to think it's more to do with context and docbase, so
going to have a play with server.xml.

On Fri, Jun 17, 2011 at 2:33 AM, Sean Corfield seancorfi...@gmail.comwrote:


 Try adding this first:

 ProxyPassReverse / ajp://localhost:8009/

 If that doesn't work, try the following...

 I've never used ProxyPassMatch - I use a RewriteRule with proxying.
 Take a look at this blog entry:

 http://corfield.org/blog/post.cfm/Railo_for_Dummies_Part_IV_Appendix

 Sean

 On Thu, Jun 16, 2011 at 6:09 PM, Michael Wright
 mich...@mwwebsolutions.com wrote:
  VirtualHost *:80
  ServerName cfusion.local
  # We need to specify the Document Root as we are only proxying .cf* files
 to
  Tomcat, therefore keeping
  # all static files served by Apache
  DocumentRoot C:/Websites
  DirectoryIndex index.cfm
  Location /
  Order allow,deny
  Allow from All
  /Location
  # Only allow proxing from 127.0.0.1
  Proxy *
  Order Deny,Allow
  Deny from all
  Allow from 127.0.0.1
  /Proxy
  # We need the ProxyPreserveHost if we are using multiple VHosts
  ProxyPreserveHost On
  # Only Proxy .cfc and .cfm files
  ProxyPassMatch ^/(.+\.cf[cm])(/.*)?$ ajp://localhost:8009/$1$2#
  # Need these two lines to maintain sessions
  ProxyPassReverseCookieDomain / /
  ProxyPassReverseCookiePath / /
  # Configure logging
  ErrorLog logs/cfusion-error.log
  CustomLog logs/cfusion-access.log common
  /Vi

 

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


Re: Proxying Apache to Tomcat For CF9

2011-06-16 Thread Michael Wright

Where I've got to at the moment is that I'm getting the 404's because Tomcat
is looking in the webapps/cfusion folder for the files rather than my own
webroot.

What I'm ultimately wanting to acheive is being able to have CF, Railo 
OpenBD all running under Tomcat but sharing the one webroot and having them
on cfusion.local, railo.local  openbd.local to determine which engine will
process the file.

Should I be looking at separate hosts in tomcats server.xml, somehow all
pointing back to the same webroot?

On Fri, Jun 17, 2011 at 4:18 AM, Sean Corfield seancorfi...@gmail.comwrote:


 Make sure localhost:8080/cfusion/ is working as expected. That way you
 can verify the Tomcat configuration is right.

 _Then_ worrying about connecting Apache.

 Since you're using a context on Tomcat /cfusion you'll need that in
 both the proxy forward and proxy reverse.

 Depending on your level of Java Servlet container experience, you may
 find it easier to install ColdFusion as the ROOT context...?

 Sean

 On Thu, Jun 16, 2011 at 7:44 PM, Michael Wright
 mich...@mwwebsolutions.com wrote:
  Still no success having tried those, but thinking about it I'm guessing
 the
  proxying side of it must be working as its CF's 404 template I'm getting.
 
  That's leading me to think it's more to do with context and docbase, so
  going to have a play with server.xml.

 

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


Re: Proxying Apache to Tomcat For CF9

2011-06-16 Thread Michael Wright

Ahh ok I see now :) Basically its failing because the webroot I'm trying to
use doesnt have the WEB-INF right?

Would my idea of all 3 engines sharing a webroot on JRun work then?


On Fri, Jun 17, 2011 at 5:04 AM, Sean Corfield seancorfi...@gmail.comwrote:


 You're not showing us your Tomcat server.xml so it's kinda hard to debug
 this :)

 I suspect the problem is you don't have your Host / Context set up
 correctly...

 Bear in mind that Tomcat, being a _standard_ Servlet container (unlike
 JRun) requires that the web application (the WEB-INF/ stuff) be in the
 web context (i.e., the web root).

 You absolutely cannot have ACF / Railo / OpenBD sharing a single
 webroot on Tomcat - because all three have incompatible WEB-INF/
 stuff.

 Sean

 On Thu, Jun 16, 2011 at 8:55 PM, Michael Wright
 mich...@mwwebsolutions.com wrote:
 
  Where I've got to at the moment is that I'm getting the 404's because
 Tomcat
  is looking in the webapps/cfusion folder for the files rather than my own
  webroot.
 
  What I'm ultimately wanting to acheive is being able to have CF, Railo 
  OpenBD all running under Tomcat but sharing the one webroot and having
 them
  on cfusion.local, railo.local  openbd.local to determine which engine
 will
  process the file.
 
  Should I be looking at separate hosts in tomcats server.xml, somehow all
  pointing back to the same webroot?

 

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


BlueDragon.Net Hosting/Server

2007-06-09 Thread Michael Wright
I recently won a copy of Bluedragon.Net 7 Standard at Scotch on the Rocks
and as a single developer who does not use .Net I'm not sure what to do with
it.

One idea that I have come up with is either to offer BD.Net shared hosting
or alternatively a VPS solution or my preferred idea is to lease out a
server with the BlueDragon.Net licence included in the cost.

If anyone would be interested in any of these ideas please contact me
off-list to discuss it further. Please also feel free to suggest any other
ways I could use the licence.

Thanks

Michael Wright


~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:280544
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Development Machine Setup

2007-06-03 Thread Michael Wright
I'm looking to setup a development windows xp machine with CF 7.02, 8 and
Bluedragon on it. I would like to use Apache rather than IIS and really am
just wondering the best way to have these co-exist. I have a few scenarios
in my head of ways to do it but would like to hear the way you experts have
it.

Thanks
Michael


~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:279947
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Development Machine Setup

2007-06-03 Thread Michael Wright
Actually it wasn't IIS/Apache running together I was really asking about but
I have just realised it is BD.Net I am getting (it was a prize!!) so IIS
will be needed obviously. My personal preference has always been to have CF
running on apache but for simplicities sake I may just go the IIS route
alone.

Or maybe this is the time to start looking at using virtual machines - I
just want the easiest way to test code under the 3 engines - maybe even
throwing railo into the mix as well.

I did find this blog entry about running CF 7.02 and 8 on the same apache
server:

http://rickosborne.org/blog/index.php/2007/05/30/run-cf7-and-cf8-side-by-side-with-the-same-apache-server/

On 03/06/07, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED]
wrote:

 Co-exist IIS / Apache? Well they can co-exist but not running at the same
 time listening on port 80.





 This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
 Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
 Registered in England, Number 678540.  It contains information which is
 confidential and may also be privileged.  It is for the exclusive use of
 the
 intended recipient(s).  If you are not the intended recipient(s) please
 note
 that any form of distribution, copying or use of this communication or the
 information in it is strictly prohibited and may be unlawful.  If you have
 received this communication in error please return it to the sender or
 call
 our switchboard on +44 (0) 20 89107910.  The opinions expressed within
 this
 communication are not necessarily those expressed by Reed Exhibitions.
 Visit our website at http://www.reedexpo.com

 -Original Message-
 From: Michael Wright
 To: CF-Talk
 Sent: Sun Jun 03 19:40:33 2007
 Subject: Development Machine Setup

 I'm looking to setup a development windows xp machine with CF 7.02, 8 and
 Bluedragon on it. I would like to use Apache rather than IIS and really am
 just wondering the best way to have these co-exist. I have a few scenarios
 in my head of ways to do it but would like to hear the way you experts
 have
 it.

 Thanks
 Michael




 

~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:279949
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Development Machine Setup

2007-06-03 Thread Michael Wright
Thanks Neil,

Pretty much what I thought to be honest - I'll have a play about with some
of the VM solutions available.

As a 1 man shop I'm not entirely sure what I'm going to do with this
bd.netlicence but hey a freebie is a freebie so I'm sure I'll come up
with
something.

Cheers
Michael

PS - Sorry to rub it in but you missed a great couple of days at Scotch.

On 03/06/07, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED]
wrote:

 Yeah, If you want to run BD.NET which obviously needs IIS and ColdFusion
 which you want to use Apache for them I would definitely think of using
 VM.

 You can run multiple ColdFusion servers side by side on both IIS and
 Apache
 a far as I am aware.




 This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
 Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
 Registered in England, Number 678540.  It contains information which is
 confidential and may also be privileged.  It is for the exclusive use of
 the
 intended recipient(s).  If you are not the intended recipient(s) please
 note
 that any form of distribution, copying or use of this communication or the
 information in it is strictly prohibited and may be unlawful.  If you have
 received this communication in error please return it to the sender or
 call
 our switchboard on +44 (0) 20 89107910.  The opinions expressed within
 this
 communication are not necessarily those expressed by Reed Exhibitions.
 Visit our website at http://www.reedexpo.com

 -Original Message-
 From: Michael Wright
 To: CF-Talk
 Sent: Sun Jun 03 20:30:58 2007
 Subject: Re: Development Machine Setup

 Actually it wasn't IIS/Apache running together I was really asking about
 but
 I have just realised it is BD.Net I am getting (it was a prize!!) so IIS
 will be needed obviously. My personal preference has always been to have
 CF
 running on apache but for simplicities sake I may just go the IIS route
 alone.

 Or maybe this is the time to start looking at using virtual machines - I
 just want the easiest way to test code under the 3 engines - maybe even
 throwing railo into the mix as well.

 I did find this blog entry about running CF 7.02 and 8 on the same apache
 server:


 http://rickosborne.org/blog/index.php/2007/05/30/run-cf7-and-cf8-side-by-sid
 e-with-the-same-apache-server/

 On 03/06/07, Robertson-Ravo, Neil (RX)
 [EMAIL PROTECTED]
 wrote:
 
  Co-exist IIS / Apache? Well they can co-exist but not running at the
 same
  time listening on port 80.
 
 
 
 
 
  This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
  Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
  Registered in England, Number 678540.  It contains information which is
  confidential and may also be privileged.  It is for the exclusive use of
  the
  intended recipient(s).  If you are not the intended recipient(s) please
  note
  that any form of distribution, copying or use of this communication or
 the
  information in it is strictly prohibited and may be unlawful.  If you
 have
  received this communication in error please return it to the sender or
  call
  our switchboard on +44 (0) 20 89107910.  The opinions expressed within
  this
  communication are not necessarily those expressed by Reed Exhibitions.
  Visit our website at http://www.reedexpo.com
 
  -Original Message-
  From: Michael Wright
  To: CF-Talk
  Sent: Sun Jun 03 19:40:33 2007
  Subject: Development Machine Setup
 
  I'm looking to setup a development windows xp machine with CF 7.02, 8
 and
  Bluedragon on it. I would like to use Apache rather than IIS and really
 am
  just wondering the best way to have these co-exist. I have a few
 scenarios
  in my head of ways to do it but would like to hear the way you experts
  have
  it.
 
  Thanks
  Michael
 
 
 
 
 



 

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:279954
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Development Machine Setup

2007-06-03 Thread Michael Wright
Thanks for the reply Jim,

I'm really looking for the simplest solution possible - in an ideal world
I'd rather not have both Apache and IIS running together, I would prefer to
have everything on port 80. Saying that if using different ports was the
easiest way then so be it.

I could go completley the IIS route, but I have always run into problems
installing CF on IIS, but I'm sure with the help of the list I could work my
way around these.

Does IIS allow virtual hosts in the same way as Apache does?

Thanks
Michael

On 03/06/07, Jim McAtee [EMAIL PROTECTED] wrote:

 Why the need for VMs?  Can't you just bind multiple addresses to the NIC
 and configure IIS and Apache to listen to whichever addresses for their
 respective web sites?






~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:279958
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Free Beer @ Scotch on the Rocks

2007-05-10 Thread Michael Wright
Stephen, Andy

You guys are certainly coming up with the goods. I'm guessing tickets must
be pretty near sold out by now.

Can't wait - only 3 weeks to go :)

On 10/05/07, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED]
wrote:

 It's only free for us Scots, everyone else has to pay .. he missed that
 bit
 off ...



 :-)





 -Original Message-
 From: Paul Hastings [mailto:[EMAIL PROTECTED]
 Sent: 10 May 2007 13:03
 To: CF-Talk
 Subject: Re: Free Beer @ Scotch on the Rocks

 Stephen Moretti wrote:
  Instead, we're now having a ColdFusion Celebration, where we will be
  serving up free food, and yes, free beer.

 free beer at a conference in scotland called Scotch on the Rocks? this
 is
 funny on some many levels ;-)



 

~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277607
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF6.1 dropped?

2007-05-02 Thread Michael Wright
Joe

If you still need to get hold of it you could always buy a copy of the old
edition of CFWACK available from Amazon.com starting at about $8, just make
sure the one you are ordering has the CD included.

http://www.amazon.com/gp/offer-listing/0321125169/ref=dp_olp_2/104-8766044-9863104?ie=UTF8qid=1178111025sr=8-18


On 01/05/07, Joe Bernard [EMAIL PROTECTED] wrote:

 I agree, according to what's been published it should be available.
 Unfortunately that's not the case. All the links are down, and the guy I
 talked to verified it.

 If you have this installer, hang onto it.

 

~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276742
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Unsubscribing

2007-04-25 Thread Michael Wright
Steve

I'm not sure what method you are using on the house of fusion site to
unsubscribe but the manage lists section doesn't work for me - what does
work for me though is going into the list archive and selecting the
subscribe option, changes there seem to stick.

Hope that helps.

Regards
Michael

On 25/04/07, Dave Watts [EMAIL PROTECTED] wrote:

  Mike, I hope you read this.  I've tried, unsuccessfully, for
  two days now to unsubscribe this email address from the list.

 I'm not Mike obviously, but I run a couple of mailing lists. The most
 common
 problem people have when trying to unsubscribe from them, is that they're
 using the wrong address. Are you sure you subscribed with
 [EMAIL PROTECTED]?

 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!

 This email has been processed by SmoothZap - www.smoothwall.net


 

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276256
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 Pocket Reference?

2007-02-23 Thread Michael Wright
Ben was asking for peoples input about a month ago on the format of the
books for Scorpio.

It is quite a long thread but you can view the discussion and add your input
at:

http://www.forta.com/blog/index.cfm/2007/1/26/Book-Publishing-Dilemma-Input-
Requested

Bringing back a pocket version was one of the suggestions offered.



~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:270570
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: How to re-order items?

2007-02-13 Thread Michael Wright
Rick

I'm not sure how you your client defines seniority but a couple of ideas of
the top off my head.
If it's based on length of service add a database field called joindate and
sort on that.
Or if it's on say job title/rank add a jobtitleid field which references a
separate table with jobtitle and weight fields or more simply just assign
each jobtitle a number.

Regards
Michael

-Original Message-
From: Rick Faircloth [mailto:[EMAIL PROTECTED] 
Sent: 13 February 2007 18:42
To: CF-Talk
Subject: How to re-order items?

Hi, all.

I'm trying to figure out the best approach to
ordering the display of Real Estate agents on
a website.

I have it by last name currently, but my client
wants to re-order by Seniority.

So, I figured I'd just put a field in the database
called Display_Order and then the person who
manages the site could provide a number for
each person. e.g. 1 on top, 2 next, etc.

The problem would come when an agent
gets added to the list who would be between 1 and 2.
(I don't want to use decimals).

I can instruct the manager of the site to put 10 for the top
spot, then 20 for the second, etc.  That leaves room for
additional spots to be added between 10 and 20.

However, I'm looking for a long-term solution.

Would it be a good approach to have them initially number
the agents starting with 10, then 20, and have them say, use
15 if someone needed to between 10 and 20, but code the
site so that all number are rounded up to increments of 10
upon entry into the database?

10 stays 10, but 15 becomes 20, 20 becomes 30, etc.

Is that a good solution?  What other solutions have any
of you used for this?

Thanks for the insight.

Rick

(Remember. CF 4.5 here. :o)






~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269685
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Strange CF Install Problem

2007-02-12 Thread Michael Wright
Yes I had PLESK on the server and found something on their site about
running the reconfigurator after installing CF. I did this as per their
instructions but still no joy.

I've even gone as far as uninstalling plesk, CF and IIS and then
reinstalling IIS (no username/password asked for)then reinstalling CF (this
is when it starts asking for username/password not just on the administrator
but all pages). As soon as I uninstall CF again all is fine.

 

I even went as far as trying it on Apache on windows and that works fine but
really I need it on IIS.

 

I have also tried making a list of all the various user permissions before
and after installing CF - but there is no difference in them. I've also read
through the install log to see if there was any clues in there but nothing.

 

I'm getting to the desperation stage now so any help would be very much
appreciated.

 

Thanks

Michael

 

-Original Message-

From: John Skrotzki [mailto:[EMAIL PROTECTED]

Sent: 11 February 2007 21:40

To: CF-Talk

Subject: SPAM-LOW: Re: Strange CF Install Problem

 

Do you have PLESK on the server?  If so you might not have the correct
permissions set for PLESK to the Coldfusion root directory.  I don't know
the solution ( I had my server support fix it ) but that might point you in
the right direction.

 

I've just installed CF 7.02 on windows 2003 using the server config and 

all IIS sites, but at the end of the install just as it opens the 

administrator for the first time a popup comes up asking for a username 

and password for localhost.

 

 

 

Sorry if this is a really stupid question but It's got me beat - I've 

googled it and found others with the same issue but no solution.

 

 

 

Thanks

 

Michael

 



~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269501
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Strange CF Install Problem

2007-02-12 Thread Michael Wright
I managed to figure this out thanks to a technote I found. Basically I had
to add IIS_WPG as a user with read and write privileges to the
CFusionMX7\runtime\lib\wsconfig folder.

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED] 
Sent: 12 February 2007 18:05
To: CF-Talk
Subject: SPAM-LOW: RE: Strange CF Install Problem

 I've just installed CF 7.02 on windows 2003 using the server 
 config and all IIS sites, but at the end of the install just 
 as it opens the administrator for the first time a popup 
 comes up asking for a username and password for localhost.

Make sure that the IIS anonymous user account has read/execute rights on
your .cfm files (including those in /CFIDE/administrator), and that the CF
service user account has read/execute rights on those files, and full
control over the directory in which you installed CF.

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!




~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269584
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Flash Form CFSELECT not populating

2007-02-12 Thread Michael Wright
I have a very simple flash form which includes 2 cfselect fields with hard
coded options. It works fine on my shared hosting account but not on my new
server.

 

The form appears but there are no values available in the select boxes and
the clock keeps spinning.

 

I'm sure it's something simple but I can't find reference to it.

 

Michael

 

 




~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269587
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Strange CF Install Problem

2007-02-11 Thread Michael Wright
I've just installed CF 7.02 on windows 2003 using the server config and all
IIS sites, but at the end of the install just as it opens the administrator
for the first time a popup comes up asking for a username and password for
localhost.

 

Sorry if this is a really stupid question but It's got me beat - I've
googled it and found others with the same issue but no solution.

 

Thanks

Michael




~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269467
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Pro-Bono Work Offered

2007-02-10 Thread Michael Wright
Mark

I'd be delighted to help out with the cfeclipse.org website in any way I
can.

Feel free to get in touch anytime.

Michael

-Original Message-
From: Mark Drew [mailto:[EMAIL PROTECTED] 
Sent: 10 February 2007 10:00
To: CF-Talk
Subject: Re: Pro-Bono Work Offered

Doesnt that sound like a perfect candidate to work on the  
cfeclipse.org website?

MD


On 10 Feb 2007, at 00:36, Michael Wright wrote:

 Today's discussion of pro-bono work and its relative merits got me  
 thinking.



 I'm learning ColdFusion with a view to a career change and I'm  
 faced with
 the age old problem of no experience, no job.



 What I would like to do is offer my services to the wider CF  
 community on a
 free of charge basis in return for developing contacts and  
 references. (Of
 course if you feel my work deserves a little reward then I wont  
 refuse lol)



 So if you have any small coding tasks you could send my way I'd be  
 most
 appreciative.



 I'm based in the UK, but regularly find myself available during US  
 working
 hours.



 If you feel you could use me please do not hesitate to contact me  
 off list
 at [EMAIL PROTECTED] with details of what you would like  
 done, I won't
 promise I will be able to fulfill all requests but I view this as a  
 valuable
 learning exercise.



 Regards



 Michael Wright






 



~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269398
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Pro-Bono Work Offered

2007-02-09 Thread Michael Wright
Today's discussion of pro-bono work and its relative merits got me thinking.

 

I'm learning ColdFusion with a view to a career change and I'm faced with
the age old problem of no experience, no job.

 

What I would like to do is offer my services to the wider CF community on a
free of charge basis in return for developing contacts and references. (Of
course if you feel my work deserves a little reward then I wont refuse lol)

 

So if you have any small coding tasks you could send my way I'd be most
appreciative.

 

I'm based in the UK, but regularly find myself available during US working
hours.

 

If you feel you could use me please do not hesitate to contact me off list
at [EMAIL PROTECTED] with details of what you would like done, I won't
promise I will be able to fulfill all requests but I view this as a valuable
learning exercise.

 

Regards

 

Michael Wright

 




~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269382
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


CFUnited Europe

2006-11-16 Thread Michael Wright
Just read this on Simon Horwith's blog:

 

There will be a CF United Europe to be held in London on March 12/13 2008.

 

Apparently more details will be available in CFDJ.

 

Michael




~|
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/groups/CF-Talk/message.cfm/messageid:260774
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CFUnited 2007 Pricing

2006-11-16 Thread Michael Wright
Oops, that's what I get for not reading all my mail before sending one out.

-Original Message-
From: Munson, Jacob [mailto:[EMAIL PROTECTED] 
Sent: 16 November 2006 20:51
To: CF-Talk
Subject: RE: CFUnited 2007 Pricing

 The increase definitely stops me from attending again in 2007 (2006
 was my first cfunited).
 
 If I do hike over to the US from Scotland, it will now definitely 100%
 be for cf.Objective().

You could wait until 2008 and go to CFUnited Europe, which will be in
London:
http://www.cfunited.com/blog/index.cfm/2006/8/21/CFUNITED-Europe-2008
However, it will probably cost 1,200 euros.  ;)




EMF idahopower.com made the following annotations.

--
This transmission may contain information that is privileged, confidential
and/or exempt from disclosure under applicable law. If you are not the
intended recipient, you are hereby notified that any disclosure, copying,
distribution, or use of the information contained herein (including any
reliance thereon) is STRICTLY PROHIBITED. If you received this transmission
in error, please immediately contact the sender and destroy the material in
its entirety, whether in electronic or hard copy format. Thank you. 


==




~|
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/groups/CF-Talk/message.cfm/messageid:260776
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CFUnited 2007 Pricing

2006-11-16 Thread Michael Wright
Andy

Talking of Scotch on the Rocks, are there any details available yet for
2007?

Michael

-Original Message-
From: Andy Allan [mailto:[EMAIL PROTECTED] 
Sent: 16 November 2006 22:20
To: CF-Talk
Subject: Re: CFUnited 2007 Pricing

In all honesty ... I can't see CFUnited Europe working. I seriously
doubt they'll get the kind of sponsors they need to justifty the
costs.

Will Adobe really shell out on as a Platinum sponsor at a similar
financial level to the US version when they also run their own MAX
events. And talking of that, I can see MAX hitting Europe in the not
too distant future.

Ultimately I'd be happy to stick with the smaller CF related events
here in the UK; namely CFDevCon and Scotch on the Rocks.

But hey, I'm just one person.

Andy

On 16/11/06, Munson, Jacob [EMAIL PROTECTED] wrote:
  The increase definitely stops me from attending again in 2007 (2006
  was my first cfunited).
 
  If I do hike over to the US from Scotland, it will now definitely 100%
  be for cf.Objective().

 You could wait until 2008 and go to CFUnited Europe, which will be in
 London:
 http://www.cfunited.com/blog/index.cfm/2006/8/21/CFUNITED-Europe-2008
 However, it will probably cost 1,200 euros.  ;)




 EMF idahopower.com made the following annotations.


--
 This transmission may contain information that is privileged, confidential
and/or exempt from disclosure under applicable law. If you are not the
intended recipient, you are hereby notified that any disclosure, copying,
distribution, or use of the information contained herein (including any
reliance thereon) is STRICTLY PROHIBITED. If you received this transmission
in error, please immediately contact the sender and destroy the material in
its entirety, whether in electronic or hard copy format. Thank you.



==


 



~|
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/groups/CF-Talk/message.cfm/messageid:260795
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Unix Timestamp

2006-11-16 Thread Michael Wright
I've googled this but can't find what I'm looking for. I have a MySQL db
that has several date fields storing the date as a Unix timestamp and I need
to display in CF. The only thing I can think of is:

 

cfset newdate = DateAdd(s, #dbdate#, 01-01-70) 

 

And then do a DateFormat on #newdate#

 

Is there any more elegant solutions or am I missing something obvious?

 

Thanks Michael.




~|
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/groups/CF-Talk/message.cfm/messageid:260800
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Northern England CFUG

2006-11-14 Thread Michael Wright
I must say the reaction to this has surprised me. One thing that I took away
from CFDevCon was how pleased people were to put faces to names. Connect is
great but I feel the main benefit of this idea is the social and networking
aspect of it.

Michael Wright




~|
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/groups/CF-Talk/message.cfm/messageid:260323
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Northern England CFUG

2006-11-13 Thread Michael Wright
Having talked to many developers at CFDevCon06, there appears to be a need
for a Northern England CFUG.

 

Taking this on board I have registered such a group with Adobe.

 

What I need is to hear from all you developers who find that London or
Edinburgh is too far to go for a quick meeting.

 

My initial idea is to rotate meetings through Leeds, Manchester, Liverpool
and Newcastle as well as delivering meetings by breeze.

 

Please get back back to me if you might be interested.

 

Regards

 

Michael Wright




~|
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/groups/CF-Talk/message.cfm/messageid:260278
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4