How do I fix 'Unprocessed view path found' error with ExceptionNotifier plugin in rails 2.1? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T12:39:22Zhttp://stackoverflow.com/feeds/question/1024http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1024/how-do-i-fix-unprocessed-view-path-found-error-with-exceptionnotifier-plugin-in5How do I fix 'Unprocessed view path found' error with ExceptionNotifier plugin in rails 2.1?Orion Edwards2008-08-04T04:48:38Z2008-10-07T20:15:02Z
<p>After upgrading a rails 1.2 website to 2.1, the <a href="http://agilewebdevelopment.com/plugins/exception_notifier" rel="nofollow">ExceptionNotifier plugin</a> no longer works, complaining about this error:</p>
<pre><code>ActionView::TemplateFinder::InvalidViewPath:
Unprocessed view path found: "/path/to/appname/vendor/plugins/exception_notification/lib/../views". Set your view paths with #append_view_path, #prepend_view_path, or #view_paths=.
</code></pre>
<p>What causes it and how do I fix it?</p>
http://stackoverflow.com/questions/1024/how-do-i-fix-unprocessed-view-path-found-error-with-exceptionnotifier-plugin-in/1026#10267Answer by Orion Edwards for How do I fix 'Unprocessed view path found' error with ExceptionNotifier plugin in rails 2.1?Orion Edwards2008-08-04T04:50:44Z2008-10-07T20:15:02Z<p>This was caused by a change in rails 2.1 which prevents rails from loading views from any arbitrary path for security reasons.</p>
<p>There is now an updated version of the plugin on github, so the solution is to use that.</p>
<p><hr /></p>
<p>The old solution here for posterity</p>
<p>To work around it, edit <code>init.rb</code> under your <code>vendor/plugins/exception_notification</code> directory, and add the following code to the end</p>
<pre><code>ActionController::Base.class_eval do
append_view_path File.dirname(__FILE__) + '/lib/../views'
end
</code></pre>
<p>This adds the ExceptionNotifier plugins' views folder to the list, so it is allowed to load them.</p>
http://stackoverflow.com/questions/1024/how-do-i-fix-unprocessed-view-path-found-error-with-exceptionnotifier-plugin-in/171170#1711700Answer by nertzy for How do I fix 'Unprocessed view path found' error with ExceptionNotifier plugin in rails 2.1?nertzy2008-10-04T23:18:41Z2008-10-04T23:18:41Z<p>You ought to upgrade to the newest Exception Notification plugin which is in <a href="http://github.com/rails/exception_notification/tree/master" rel="nofollow">its new home at GitHub</a>.</p>