Re: Windows VPS Management Without Control Panel

2011-03-27 Thread Russ Michaels
Peter, yes you can use it to manage the VPS, thus why I said we are using it for that purpose :-) It does all the things you stated. you can also use it to manage the website hosting on your VPS as well. On Sun, Mar 27, 2011 at 3:39 AM, Kelly webd...@gmail.com wrote: If you're using Windows

CFSEARCH puzzle

2011-03-27 Thread Kevin Parker
Does anyone have any insight into why CFSEARCH (CF8) might ignore contexthighlightbegin and contexthighlightend - it seems to be ignored - its not even outputting anything into the code in the search results. cfsearch collection=#TheDatabaseCollection#,#TheDocumentCollection#

Re: Open source ColdFusion forums

2011-03-27 Thread Justin Scott
E-Commerce maybe? That is something else I considered and eventually rejected as an idea for an open source project. First, most e-commerce projects have specific needs, so an existing project might get 80% of the way there but will usually be missing that last 20% which makes it essentially

locale now()

2011-03-27 Thread Richard White
Hi, when logging user activity we need to store the date and time in relation to the users local country. is there a way to get the clients local time when using now() thanks ~| Order the Adobe Coldfusion Anthology now!

Re: locale now()

2011-03-27 Thread John M Bliss
http://www.bennadel.com/blog/1595-Converting-To-GMT-And-From-GMT-In-ColdFusion-For-Use-With-HTTP-Time-Stamps.htm On Sun, Mar 27, 2011 at 10:08 AM, Richard White rich...@j7is.co.uk wrote: Hi, when logging user activity we need to store the date and time in relation to the users local

RE: locale now()

2011-03-27 Thread Andrew Scott
That will not work alone, as this is still done on the server side and will always be the same time. Depending on the needs or use case, you will need to capture the TimeZone from the user, which you can then use to get their local time. Now if this is not a website that users sign in to, then

Re: locale now() [spamtrap bayes][spamtrap heur]

2011-03-27 Thread Paul Hastings
On 3/27/2011 10:08 PM, Richard White wrote: when logging user activity we need to store the date and time in relation to the users local country. is there a way to get the clients local time when using now() no. if cf touches the datetime it's server timezone (tz). use js/flex/air or

Re: ColdFusion 9 cflayout ajax errors

2011-03-27 Thread Dave Watts
We are upgrading from CF 8 Ent to 9 Ent - the following example runs fine on CF 8, but once in CF 9 it fails with Error retreiving markup for selected element.. not found, the page returns a 404. Here's the interesting part - as soon as I remove the source= argument in cflayoutarea, the

Re: ColdFusion 9 cflayout ajax errors

2011-03-27 Thread Dave Watts
We are upgrading from CF 8 Ent to 9 Ent - the following example runs fine on CF 8, but once in CF 9 it fails with Error retreiving markup for selected element.. not found, the page returns a 404. Here's the interesting part - as soon as I remove the source= argument in cflayoutarea, the

Re: Open source ColdFusion forums

2011-03-27 Thread Al Musella, DPM
I would love to see a good open source CF medical office management program that includes electronic medical records as well as billing. There is a php based attempt going on at http://www.oemr.org/http://www.oemr.org/ They did an amazing job on some parts, but dropped the ball on others.

Re: ColdFusion 9 cflayout ajax errors

2011-03-27 Thread Jeff Carpenter
Dave, Yes, I can access CFIDE / CF admin fine. Imported the cfajax tags as well on selectpage.cfm but still see the error. Thanks We are upgrading from CF 8 Ent to 9 Ent - the following example runs fine on CF 8, but once in CF 9 it fails with Error retreiving markup for selected

RE: Open source ColdFusion forums

2011-03-27 Thread Bobby Hartsfield
Here's another: http://cf4em.com/ The latest versions are SQL Server only though since I barely have time to test even that much. I've also had the old school PHPBB skin turned on for a while now: http://cf4em.com/cf4em/index.cfm Another free CF app never hurts. In your case, there are a

cfc creation best practice

2011-03-27 Thread Greg Morphis
If you have a site or an area of the site that's not going to get used a WHOLE lot would it make sense to create cfc objects (beans, gateways, daos) when you need them or is it still best just to create the gateway and dao object on application start? At what point would you just create it in the

Re: ColdFusion 9 cflayout ajax errors

2011-03-27 Thread Dave Watts
Dave, Yes, I can access CFIDE / CF admin fine.  Imported the cfajax tags as well on selectpage.cfm but still see the error.  Thanks What does Firebug tell you? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small

Re: cfc creation best practice

2011-03-27 Thread Brian Kotek
Since the memory footprint of a CFC is generally very small, I would just create everything together at app startup (ideally using ColdSpring) and be done with it. On Sun, Mar 27, 2011 at 7:21 PM, Greg Morphis gmorp...@gmail.com wrote: If you have a site or an area of the site that's not

Re: cfc creation best practice

2011-03-27 Thread Greg Morphis
Awesome! I appreciate the info Brian! On Mar 27, 2011 9:48 PM, Brian Kotek brian...@gmail.com wrote: Since the memory footprint of a CFC is generally very small, I would just create everything together at app startup (ideally using ColdSpring) and be done with it. On Sun, Mar 27, 2011 at

Re: ColdFusion 9 cflayout ajax errors

2011-03-27 Thread Jeff Carpenter
What does Firebug tell you? I use the Chrome console, but I ran it in FF w/ firebug as well and get the same '404' response: GET

RE: ColdFusion 9 cflayout ajax errors

2011-03-27 Thread Andrew Scott
And if you copy that response link, can you browse it the browse. My bet you can't. Just so you know the source attribute is just a way of saying where to find the file via the url, in other words if this file is not in the root of the url. Then you need to provide the URL path so the Ajax