And here's how to reset it if you can still reach the installation via SSH or similar.
Start a Django shell:
python manage.py shell
Use the following code to change the password:
from django.contrib.auth.models import User
u = User.objects.get(username__exact='[username]')
u.set_password('[fill in new password here]')
u.save()
exit()
That's all!
When I was working with Django the other day I had a model which contained 3 textareas (models.TextField()). I only wanted 2 of the 3 to use TinyMCE for mark-up in the Admin. I worked out how to achieve this and here’s a quick guide.
Install TinyMCE as explained in an earlier post.
Make sure the tiny_mce folder, the one you downloaded from tinymce.moxiecode.com, is also in your site-media javascript folder (/[sitemedia]/js/tiny_mce/) or change TINYMCE_JS_URL in your settings.py to the correct folder.
In your settings.py define what you want the default tinymce to look like, for example:
TINYMCE_DEFAULT_CONFIG = {
…continue.