What is the most usable forum app for Django 1.7?

2015-02-15 Thread Supermario
I am looking for a forum app to integrate into my project which is going to be quite high-traffic. So I am looking for a mature forum app. I know there are a couple of forum apps listed here: https://www.djangopackages.com/grids/g/forums/ By 'usable' I mean: - Easy to integrate into existing

Django UnicodeDecodeError at /admin/login/

2015-01-27 Thread Supermario
I try to implement this hasher in order to be able to authenticate user who are imported from drupal 7. So I put the hasher in the settings.py as follows: PASSWORD_HASHERS = ( 'myproj.drupal_hasher.DrupalPasswordHasher', #drupal hasher

Re: How to use password hasher snippet in Django?

2015-01-22 Thread Supermario
-registration module still refuse to authenticate old drupal users. Any ideas on how to troubleshoot this? Cheers On Thursday, January 22, 2015 at 4:12:07 AM UTC+1, Thomas wrote: > > On Jan 21, 2015, at 3:07 PM, Supermario <huma...@gmail.com > > wrote: > > I am trying to move D

How to use password hasher snippet in Django?

2015-01-21 Thread Supermario
I am trying to move Druap 7 site to django 1.7 without invalidating user passwords, and this proved to be daunting. Fortunately, I have found this SO question and this