On Monday, April 13, 2015 at 10:08:08 AM UTC-4, ivanelson wrote: > > In the trac.log, just noticed this: > > 2015-04-13 11:04:11,227 Trac[main] WARNING: [66.249.67.66] > HTTPInternalError: 500 Configuration Error (Cannot find an implementation > of the <tt>IPasswordHashMethod</tt> interface named > <tt>HtDigestHashMethod</tt>. Please check that the Component is enabled or > update the option <tt>[account-manager] hash_method</tt> in trac.ini.) > 2015-04-13 11:04:11,227 Trac[perm] DEBUG: No policy allowed anonymous > performing EMAIL_VIEW on None >
AccountManagerPlugin's default value for hash_method is HtDigestHashMethod. You've not specified hash_method in your configuration so it uses the default value. http://trac-hacks.org/browser/accountmanagerplugin/tags/acct_mgr-0.4.4/acct_mgr/db.py?marks=23#L19 It appears you haven't enabled the Component HtDigestHashMethod. The other possibility is that the Component is failing to load, but if that's the case it should be visible in your logs when restarting the web server. Therefore you have two possible resolutions: - Enable the Component - Edit trac.ini to set the [account-manager] hash_method option to some other non-default value -- You received this message because you are subscribed to the Google Groups "Trac Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/trac-users. For more options, visit https://groups.google.com/d/optout.
