cfguyyes yes said the following on 06/28/2011 05:19 PM: > thanks :), yes may be. > > so it was working in 1.6. > > i deleleted getters and setters and it started working. Good to know. I'll look at the code for 1.9 and see if we can shore up that exception message to be more specific. > still i have problem with my dashboard > ---------------- > error is: > ----------- > Request Name dashboard:config.index > Message The getProxy method was not found. My guess is you've overriden one of the M2 configurable properties with a non-CFC or other CFC that is not management my Mach-II during the Mach-II onApplicationStart sequence. This type of exception indicates that one of your objects is not correctly extending one of the core M2 objects or a property CFC was replaced my something else and Mach-II still thinks it is configurable (therefore calling getProxy() method). There is definitely something in your application coding that is coding the issue. It's either:
1) One of your plugins, filters, listeners or properties isn't extending the official core M2 component 2) You've replaced a property CFC with another value during application load and therefore M2 thinks there should be a M2 property CFC in the property value and it's erroring out there. We've greatly improved the exception messages in the Dashboard in the 1.9 build dealing with this. I highly suggest you download the 1.9 BER and check that out. > after upgrade, i set urlParseSES to true, does it require for mach-ii > upgrade? > <property name="urlParseSES" value="true" /> By default: <cfif NOT isPropertyDefined("urlParseSES")> <!--- Automatically parse for SES urls if the delimiters are not set to query string and no urlParseSES is defined ---> <cfif getProperty("urlDelimiters") NEQ "?|&|="> <cfset setProperty("urlParseSES", true) /> <cfelse> <cfset setProperty("urlParseSES", false) /> </cfif> Use this only if you want to explicitly turn off/on parsing of the cgi.path_info -- Peter J. Farrell pe...@mach-ii.com p...@maestropublishing.com http://blog.maestropublishing.com Identi.ca / Twitter: @maestrofjp -- To post to this group, send email to mach-ii-for-coldfusion@googlegroups.com For more options and to unsubscribe, visit this group at http://groups.google.com/group/mach-ii-for-coldfusion?hl=en SVN: http://svn.mach-ii.com/machii/ Wiki / Documentation / Tickets: http://trac.mach-ii.com/machii/