Joshua... I'm not sure if you're understanding the function of the reload=true setting. That setting is there to reload the framework on every request--something that you definitely don't want to do in production.
What you really should do is set that back to false and use the URL parameter defined in the XML config to force a one-time reload of the application. The URL parameter and value that you'll have to use is configured in the same ColdSpring XML file where you found the reload property. Look for two lines in your XML file that look like this: <property name="reloadPassword"><value>true</value></property> <property name="reloadKey"><value>init</value></property> You'd then just need to browse to your ModelGlue application and append those to the URL string like so: someurl.com/index.cfm?init=true Of course you'll substitute the value found in the reloadKey property for "init" in my example and the value found in the reloadPassword property for "true" in my example. This will cause ModelGlue to reinitialize itself and reload any CFCs managed by ColdSpring. Be sure to ping us back if you continue to have problems. Dan Skaggs On Nov 12, 2009, at 3:39 PM, Joshua O'Connor-Rose wrote: > > So I've made some changes to fix some production issue. > > I've set the reload value = true > > But some things seem to be broken still it seems cfcs aren't being > updated to the changes I've made in the Model. > > My coworker says stopping and starting CF should fix it and while I > agree, let's just say I don't want to do that. > > Has this been addressed at all? Is there an article I'm missing. > > Any help would be appreciated > > -Joshua O'Connor-Rose > -All is Good > > > --~--~---------~--~----~------------~-------~--~----~ Model-Glue Sites: Home Page: http://www.model-glue.com Documentation: http://docs.model-glue.com Bug Tracker: http://bugs.model-glue.com Blog: http://www.model-glue.com/blog You received this message because you are subscribed to the Google Groups "model-glue" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/model-glue?hl=en -~----------~----~----~----~------~----~------~--~---
