Re: SOT: Holy Grail? Hosting?

2013-07-12 Thread Meghna Chopra

Hello Russ,

Sometime ago, you told that you are developing a module to create CF DSN using 
WSP.
Are you still working on that?

I raised this in a different thread but nobody replied 
http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:64703 :(

Any ideas?

Fyi websitepanel is more active now, 2.0 released this year and 2.1
currently in beta, supports Windows 2012.
Do not use its ecommerce system though it is awful, but the rest of it
works really well.
We use it for all our Windows hosting and I also use it for
cfmldeveloper.com

Russ Michaels
www.michaels.me.uk
 On 10 Jul 2013 15:21, Byron Mann byronos...@gmail.com wrote:

 

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


Re: C-Panel

2013-07-12 Thread Meghna Chopra

Hello Russ,

Sometime ago, you told that you are developing a module to create CF DSN using 
WSP.
Are you still working on that?

I raised this in a different thread but nobody replied 
http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:64703 :(

Any ideas?

Fyi websitepanel is more active now, 2.0 released this year and 2.1
currently in beta, supports Windows 2012.
Do not use its ecommerce system though it is awful, but the rest of it
works really well.
We use it for all our Windows hosting and I also use it for
cfmldeveloper.com

Russ Michaels
www.michaels.me.uk
 On 10 Jul 2013 15:21, Byron Mann byronos...@gmail.com wrote:

 

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


Re: cfm files bypass permissions -- htm files get 401 unauthorized

2013-07-12 Thread Connor Middleton

  I know this thread is old, but I just ran into a similar situation. 
Yes, they match perfectly.

I just found the issue, my Jakarta folder needed anonymous access to process 
the files properly. So I changed it and everything works properly now. 

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


scientific notation with significant figures

2013-07-12 Thread Keith McGee

!- significant figures numaric 
cfscript
 function SFFormat(fltNumber,intSF) {
  intExponent=int(log10(abs(fltNumber)))-intSF+1;
  return round(fltNumber/10^intExponent) * 10^intExponent;
}
/cfscript

!--- scientific notation 
cfset a = #SFFormat(200100,3)#

cfset num=a*10^-intExponent  x10#Trim(NumberFormat(intExponent, 
_+___))#

cfset num2 = '#REReplace(num, [+], ^, ALL)#' /

cfset num3 = '#REReplace(num2, [x],  x , ALL)#' /

cfoutput#num3#/cfoutput

With this code the answer comes out 200 x 10^4 I need 2.00 x 10^4

I cant get the decimal to appear correctly. Any thoughts?

Thanks
Keith

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


Re: scientific notation with significant figures

2013-07-12 Thread John M Bliss

http://cflib.org/udf/scientificFormat


On Fri, Jul 12, 2013 at 8:41 AM, Keith McGee kpmc...@frontiernet.netwrote:


 !- significant figures numaric 
 cfscript
  function SFFormat(fltNumber,intSF) {
   intExponent=int(log10(abs(fltNumber)))-intSF+1;
   return round(fltNumber/10^intExponent) * 10^intExponent;
 }
 /cfscript

 !--- scientific notation 
 cfset a = #SFFormat(200100,3)#

 cfset num=a*10^-intExponent  x10#Trim(NumberFormat(intExponent,
 _+___))#

 cfset num2 = '#REReplace(num, [+], ^, ALL)#' /

 cfset num3 = '#REReplace(num2, [x],  x , ALL)#' /

 cfoutput#num3#/cfoutput

 With this code the answer comes out 200 x 10^4 I need 2.00 x 10^4

 I cant get the decimal to appear correctly. Any thoughts?

 Thanks
 Keith

 

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


scientific notation with significant figures

2013-07-12 Thread Keith McGee

!- significant figures numaric 
cfscript
 function SFFormat(fltNumber,intSF) {
  intExponent=int(log10(abs(fltNumber)))-intSF+1;
  return round(fltNumber/10^intExponent) * 10^intExponent;
}
/cfscript

!--- scientific notation 
cfset a = #SFFormat(200100,3)#

cfset num=a*10^-intExponent  x10#Trim(NumberFormat(intExponent, 
_+___))#

cfset num2 = '#REReplace(num, [+], ^, ALL)#' /

cfset num3 = '#REReplace(num2, [x],  x , ALL)#' /

cfoutput#num3#/cfoutput

With this code the answer comes out 200 x 10^4 I need 2.00 x 10^4

I cant get the decimal to appear correctly. Any thoughts?

Thanks
Keith

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


Developer of http://www.hayneedle.com

2013-07-12 Thread Robert Harrison

I'm wondering if anyone on list may know the CF Programmer that developed the 
site http://www.hayneedle.com (it is a CF Site, albeit, it's not obvious).

I saw something on that site that I really liked and I'd like to implement 
something similar on my own site (a personal site, not a client site).  I'd 
love to speak with that programmer if anyone may know who did that work.  

As a user of that site, I have to say, it's a very well done site. 

Thanks

Robert Harrison 
Director of Interactive Services

Austin  Williams
Advertising I Branding I Digital I Direct  
125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788
T 631.231.6600 X 119   F 631.434.7022   
http://www.austin-williams.com

Blog:  http://www.austin-williams.com/blog
Twitter:  http://www.twitter.com/austi

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


Re: Developer of http://www.hayneedle.com

2013-07-12 Thread John M Bliss

Maybe...?  http://www.linkedin.com/profile/view?id=171267604


On Fri, Jul 12, 2013 at 10:01 AM, Robert Harrison 
rob...@austin-williams.com wrote:


 I'm wondering if anyone on list may know the CF Programmer that developed
 the site http://www.hayneedle.com (it is a CF Site, albeit, it's not
 obvious).

 I saw something on that site that I really liked and I'd like to implement
 something similar on my own site (a personal site, not a client site).  I'd
 love to speak with that programmer if anyone may know who did that work.

 As a user of that site, I have to say, it's a very well done site.

 Thanks

 Robert Harrison
 Director of Interactive Services

 Austin  Williams
 Advertising I Branding I Digital I Direct
 125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788
 T 631.231.6600 X 119   F 631.434.7022
 http://www.austin-williams.com

 Blog:  http://www.austin-williams.com/blog
 Twitter:  http://www.twitter.com/austi

 

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


Re: Developer of http://www.hayneedle.com

2013-07-12 Thread John M Bliss

@NethScott


On Fri, Jul 12, 2013 at 10:05 AM, John M Bliss bliss.j...@gmail.com wrote:

 Maybe...?  http://www.linkedin.com/profile/view?id=171267604


 On Fri, Jul 12, 2013 at 10:01 AM, Robert Harrison 
 rob...@austin-williams.com wrote:


 I'm wondering if anyone on list may know the CF Programmer that developed
 the site http://www.hayneedle.com (it is a CF Site, albeit, it's not
 obvious).

 I saw something on that site that I really liked and I'd like to
 implement something similar on my own site (a personal site, not a client
 site).  I'd love to speak with that programmer if anyone may know who did
 that work.

 As a user of that site, I have to say, it's a very well done site.

 Thanks

 Robert Harrison
 Director of Interactive Services

 Austin  Williams
 Advertising I Branding I Digital I Direct
 125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788
 T 631.231.6600 X 119   F 631.434.7022
 http://www.austin-williams.com

 Blog:  http://www.austin-williams.com/blog
 Twitter:  http://www.twitter.com/austi

 

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


RE: Developer of http://www.hayneedle.com

2013-07-12 Thread Robert Harrison

That's great. Thanks.  Why didn't I think of Linked in, duh!

Robert Harrison 
Director of Interactive Services

Austin  Williams
Advertising I Branding I Digital I Direct  
125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788
T 631.231.6600 X 119   F 631.434.7022   
http://www.austin-williams.com

Blog:  http://www.austin-williams.com/blog
Twitter:  http://www.twitter.com/austi

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


Re: Developer of http://www.hayneedle.com

2013-07-12 Thread John M Bliss

You did. You just outsourced the thinking to your otherbrain, cf-talk.  :-)


On Fri, Jul 12, 2013 at 10:11 AM, Robert Harrison 
rob...@austin-williams.com wrote:


 That's great. Thanks.  Why didn't I think of Linked in, duh!

 Robert Harrison
 Director of Interactive Services

 Austin  Williams
 Advertising I Branding I Digital I Direct
 125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788
 T 631.231.6600 X 119   F 631.434.7022
 http://www.austin-williams.com

 Blog:  http://www.austin-williams.com/blog
 Twitter:  http://www.twitter.com/austi

 

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


RE: Developer of http://www.hayneedle.com

2013-07-12 Thread Mark A Kruger

Robert,


Hayneedle is a  great, well-established Omaha company (where CFWT is based).
We know many of the developers who have worked on their code - and we've had
a few of them work for us or go from us to them. At one point they had some
15 CF folks on staff. Not sure where they are at right now with staff size.
Like most large operations they have a mixed environment that includes CF as
a front end component.

-Mark


Mark Kruger - CFG
CF Webtools
www.cfwebtools.com
www.coldfusionmuse.com
O: 402.932.3318
E: mkru...@cfwebtools.com
Skype: markakruger



-Original Message-
From: Robert Harrison [mailto:rob...@austin-williams.com] 
Sent: Friday, July 12, 2013 11:02 AM
To: cf-talk
Subject: Developer of http://www.hayneedle.com


I'm wondering if anyone on list may know the CF Programmer that developed
the site http://www.hayneedle.com (it is a CF Site, albeit, it's not
obvious).

I saw something on that site that I really liked and I'd like to implement
something similar on my own site (a personal site, not a client site).  I'd
love to speak with that programmer if anyone may know who did that work.  

As a user of that site, I have to say, it's a very well done site. 

Thanks

Robert Harrison 
Director of Interactive Services

Austin  Williams
Advertising I Branding I Digital I Direct  
125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788
T 631.231.6600 X 119   F 631.434.7022   
http://www.austin-williams.com

Blog:  http://www.austin-williams.com/blog
Twitter:  http://www.twitter.com/austi



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


Re: Developer of http://www.hayneedle.com

2013-07-12 Thread Steve 'Cutter' Blades

Out of curiosity, what was the feature that you liked?

Steve 'Cutter' Blades
Adobe Community Professional
Adobe Certified Expert
Advanced Macromedia ColdFusion MX 7 Developer

http://cutterscrossing.com


Co-Author Learning Ext JS 3.2 Packt Publishing 2010
https://www.packtpub.com/learning-ext-js-3-2-for-building-dynamic-desktop-style-user-interfaces/book

The best way to predict the future is to help create it

On 7/12/2013 11:01 AM, Robert Harrison wrote:
 I'm wondering if anyone on list may know the CF Programmer that developed the 
 site http://www.hayneedle.com (it is a CF Site, albeit, it's not obvious).

 I saw something on that site that I really liked and I'd like to implement 
 something similar on my own site (a personal site, not a client site).  I'd 
 love to speak with that programmer if anyone may know who did that work.

 As a user of that site, I have to say, it's a very well done site.

 Thanks

 Robert Harrison
 Director of Interactive Services

 Austin  Williams
 Advertising I Branding I Digital I Direct
 125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788
 T 631.231.6600 X 119   F 631.434.7022
 http://www.austin-williams.com

 Blog:  http://www.austin-williams.com/blog
 Twitter:  http://www.twitter.com/austi

 

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


Re: C-Panel

2013-07-12 Thread Russ Michaels

that actually turned instead into CFMANAGER, a per site admin (like Railo)
so users can manage their own settings.
still working on it currently and no idea when it will be finished i'm
afraid as I have barely any time for coding.




On Fri, Jul 12, 2013 at 1:18 PM, Meghna Chopra mymailsonl...@gmail.comwrote:


 Hello Russ,

 Sometime ago, you told that you are developing a module to create CF DSN
 using WSP.
 Are you still working on that?

 I raised this in a different thread but nobody replied
 http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:64703 :(

 Any ideas?

 Fyi websitepanel is more active now, 2.0 released this year and 2.1
 currently in beta, supports Windows 2012.
 Do not use its ecommerce system though it is awful, but the rest of it
 works really well.
 We use it for all our Windows hosting and I also use it for
 cfmldeveloper.com
 
 Russ Michaels
 www.michaels.me.uk
  On 10 Jul 2013 15:21, Byron Mann byronos...@gmail.com wrote:
 
 

 

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