[cfaussie] Re: Server Monitoring

2009-02-16 Thread charlie arehart
Scott, yes, you can abort requests in the CF8 Server monitor. But note that you need to enable the start monitoring button to be able to see the running requests on the active requests screen. If you do, then when you see a request running, it will have a red exclamation which when you mouse over

[cfaussie] How do you handle previews?

2009-02-16 Thread Mike Kear
A question for those who have CMS systems How do you folks handle previews?The preview function in my CMS is less than perfect and I'd like to do it better. Currently, I'm storing all the changes users make in the session scope, then when they click 'preview' they get a combination of

[cfaussie] Re: How do you handle previews?

2009-02-16 Thread Dale Fraser
Sessions don't expire when the browser closes, unless you force them to. So you could keep this info in session even across browser sessions. Regards Dale Fraser http://dale.fraser.id.au http://learncf.com http://flexcf.com -Original Message- From: cfaussie@googlegroups.com

[cfaussie] Re: How do you handle previews?

2009-02-16 Thread Kym Kovan
Mike Kear wrote: A question for those who have CMS systems How do you folks handle previews?The preview function in my CMS is less than perfect and I'd like to do it better. ... Another method i've seen is having the CMS working entirely from a preview table, which is a

[cfaussie] Finally a CF conference for Melbourne

2009-02-16 Thread Dale Fraser
Yep, All those Melbourne folk will be happy to hear, CF Objective is coming to Melbourne this year. http://www.cfobjective.com.au/ Regards Dale Fraser http://dale.fraser.id.au http://learncf.com http://flexcf.com --~--~-~--~~~---~--~~ You

[cfaussie] Re: Finally a CF conference for Melbourne

2009-02-16 Thread Mark Mandel
..some extra blog reading for you if you would like as well: http://www.web-relevant.com/blogs/cfobjective/index.cfm?mode=entryentry=8133D166-BDB9-5320-EEF16B4E23414129 http://kay.smoljak.com/index.php/a-dedicated-cf-conference-down-under-cfobjectiveanz/ Oh yeah, and me :D

[cfaussie] Re: Finally a CF conference for Melbourne

2009-02-16 Thread Dale Fraser
Good stuff Mark, Sounds like you played a big part in getting it here. Well done. Regards Dale Fraser http://dale.fraser.id.au http://learncf.com http://flexcf.com From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of Mark Mandel Sent: Monday, 16

[cfaussie] Re: How do you handle previews?

2009-02-16 Thread Andrew Myers
I'm using an almost identical method. Something like this (although I've tried to improve up the column names a bit because on my actual schema they are not as good as they could be ;-) -- -- Table structure for table `cms_page` -- CREATE TABLE `cms_page` ( `PAGE_ID` int(11) NOT NULL

[cfaussie] Upgrading to CF8 advice?

2009-02-16 Thread Matthew
Hi everyone We are finally upgrading to CF8 from CF7 (Standard). I'm looking forward to playing around with all the image manipulation features, CFTEXTAREA, and all the AJAX stuff (even if it is using old YUI libraries and doesn't have the scope of jQuery). I just wanted to see if anyone had

[cfaussie] Re: Finally a CF conference for Melbourne

2009-02-16 Thread Mark Mandel
I just got in trouble with Toby for not posting his blog post! http://www.tobytremayne.com/2009/02/cfobjectiveanz/ We're all very excited to bring this conference down to Australia, and we think everyone who comes down is going to have a great time :D Mark On Tue, Feb 17, 2009 at 10:53 AM,

[cfaussie] Re: How do you handle previews?

2009-02-16 Thread Blair McKenzie
FarCry does this by adding status and versionid fields to a content type. Status to indicate which data is live / pending / draft, and versionid to link draft content to live content. This means that any given piece of content can have two versions in the database (our workflow doesn't allow both