Re: Site wide error handlers

2007-10-01 Thread Richard White
Thanks for all your help i now understand how to tackle this thanks ~| Get involved in the latest ColdFusion discussions, product development sharing, and articles on the Adobe Labs wiki.

Site wide error handlers

2007-09-30 Thread Richard White
Hi, i have just set up a hosting package with a cf host. it is on a shared server and they are telling me that they do not allow me to have access to the cf administrator and therefore i cannot set a site wide error handler or a missing template handler. i was told that i couldn't set a site

RE: Site wide error handlers

2007-09-30 Thread ColdFusion
, session, request, etc) -Original Message- From: Richard White [mailto:[EMAIL PROTECTED] Sent: Sunday, September 30, 2007 10:15 PM To: CF-Talk Subject: Site wide error handlers Hi, i have just set up a hosting package with a cf host. it is on a shared server and they are telling me

Re: Site wide error handlers

2007-09-30 Thread Richard White
Thats fantastic Thanks very much :) ~| ColdFusion 8 - Build next generation apps today, with easy PDF and Ajax features - download now http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf Archive:

Re: Site wide error handlers

2007-09-30 Thread Richard White
i just tried to put these in my application .cfm as follows but it is not catching all the errors, have i done this right? thanks cfcomponent cfset This.name = Portex cfset This.sessionmanagement = True cfset This.loginstorage=Session cfset This.clientmanagement=True cfset

Re: Site wide error handlers

2007-09-30 Thread Mike Kear
They're right, Richard, you couldn't have a situation where everyone on the system can open the CFAdminstrator and change things.It would affect everyone. In situations where hosting companies want to allow their clients access to aspects of the CF Admin functions normally they'll either

Re: Site wide error handlers

2007-09-30 Thread Richard White
Hi Mike, Thanks for taking the time to reply. You mention some very fair points and I now understand why this is the case. I will be doing the testing on a local machine but wanted to set the error handlers just in case anything unexpected happens. I will do this as you and the previous post

RE: Site wide error handlers

2007-09-30 Thread Michael E. Carluen
What does cferror do if cftry-cfthrow-cfcatch is already in place? -Original Message- From: ColdFusion [mailto:[EMAIL PROTECTED] Sent: Sunday, September 30, 2007 6:30 PM To: CF-Talk Subject: RE: Site wide error handlers What I have is in my Application.cfm file: cferror type

Re: Site wide error handlers

2007-09-30 Thread Richard White
for example: how do you handle the error if someone types in a url that doesnt exist? ~| Enterprise web applications, build robust, secure scalable apps today - Try it now ColdFusion Today ColdFusion 8 beta - Build next

Re: Site wide error handlers

2007-09-30 Thread Richard White
. and you dont want it to show the standard cf error page ~| Get involved in the latest ColdFusion discussions, product development sharing, and articles on the Adobe Labs wiki.

Re: Site wide error handlers

2007-09-30 Thread Mike Kear
Well i dont know how your hosting company handles that, but ours has a standard 401 page (i.e. missing page handler) that everyone gets by default, and through the control panel, anyone can change their own 401 page to something of their own design if they want. (few do as it happens, even

RE: Site wide error handlers

2007-09-30 Thread William Seiter
: RE: Site wide error handlers What does cferror do if cftry-cfthrow-cfcatch is already in place? -Original Message- From: ColdFusion [mailto:[EMAIL PROTECTED] Sent: Sunday, September 30, 2007 6:30 PM To: CF-Talk Subject: RE: Site wide error handlers What I have is in my

RE: Site wide error handlers

2007-09-30 Thread Michael E. Carluen
. -Original Message- From: William Seiter [mailto:[EMAIL PROTECTED] Sent: Sunday, September 30, 2007 9:40 PM To: CF-Talk Subject: RE: Site wide error handlers Michael, There is an 'order of presedence' with error control. CFTRY/CFCATCH - priority over all CFERROR is 2nd priority Site

RE: Site wide error handlers

2007-09-30 Thread William Seiter
No prob -- William E. Seiter Web Developer http://William.Seiter.com -Original Message- From: Michael E. Carluen [mailto:[EMAIL PROTECTED] Sent: Sunday, September 30, 2007 9:50 PM To: CF-Talk Subject: RE: Site wide error handlers Thanks, William. I was hoping someone would confirm