Re: Admin login problem

2020-02-26 Thread Naveen Arora
Share all of the code related to this model what you have overriden from nodel to admin registeration part also. Also check through terminal if superuser has been created successfully. Did you override something related to login part too..? Share code please. On Wednesday, 26 February 2020 17:5

Re: Admin login problem

2020-02-26 Thread Naveen Arora
Hi soumen, Are you overriding default user model, if yes check user.is_admin=True. or else, Please post the exact error Cheers Naveen Arora On Wednesday, 26 February 2020 17:43:51 UTC+5:30, Soumen Khatua wrote: > > Hi Folks, > after creating superuser by using this command python manage.py > c

Admin login problem

2020-02-26 Thread Soumen Khatua
Hi Folks, after creating superuser by using this command python manage.py createsuperuser. Whenever I'm entering the same(exact) login credentials.I'm getting this error: Please enter the correct phone number and password for a staff account. Notethat both fields may be case-sensitive .

Re: Admin login problem

2006-12-15 Thread Yatla
Jorge, Turns out that I did need to modify the url as you indicated like (r'^galeria/admin/', include('django.contrib.admin.urls')), the first time the site or my browser must have been caching something and it seemed to work. Now onwards to build the site Yatla On Dec 13, 4:35 pm, "Yatla"

Re: Admin login problem

2006-12-13 Thread Yatla
Jorge, Many thanks! I was using an .htaccess in the subdirectory, but did not have the subdirectory specified after the fcgi file in the last rewrite rule. I don't know much about this so just copied from a tutorial on this that did not have the subdirectory in the rewriterule. Thanks again!

Re: Admin login problem

2006-12-13 Thread Jorge Gajon
On 12/12/06, Yatla <[EMAIL PROTECTED]> wrote: > > Newbie here - saw that the same question was asked earlier but not > answered, and the post was locked so I could not reply. > > I have a Django site in a subdirectory as follows (via fcgi) - (using > ver 0.96 pre via svn) > > http://mydomain.com/d

Admin login problem

2006-12-12 Thread Yatla
Newbie here - saw that the same question was asked earlier but not answered, and the post was locked so I could not reply. I have a Django site in a subdirectory as follows (via fcgi) - (using ver 0.96 pre via svn) http://mydomain.com/dj When I go into the Admin area as follows http://mydomain

Re: Admin login Problem (not the one in the FAQ)

2005-09-02 Thread Boffbowsh
or md5 -s 'password'

Re: Admin login Problem (not the one in the FAQ)

2005-09-01 Thread igor
Quoting "J. Davis" <[EMAIL PROTECTED]>: > > # echo "password" | md5sum > > Can anyone suggest how else I might troubleshoot this? You should use: echo -n "password" | md5sum Igor.

Re: Admin login Problem (not the one in the FAQ)

2005-09-01 Thread J. Davis
That did the trick. Thanks Adrian! -Jake

Re: Admin login Problem (not the one in the FAQ)

2005-09-01 Thread Adrian Holovaty
On 9/1/05, J. Davis <[EMAIL PROTECTED]> wrote: > To create the password I paste in the output from the following > command: > > # echo "password" | md5sum > > Can anyone suggest how else I might troubleshoot this? It appears the md5sum shell command doesn't generate the same output as Python's

Admin login Problem (not the one in the FAQ)

2005-09-01 Thread J. Davis
Hello, I'm greatly enjoying this excellent project. However, I have a problem with users created through the admin web interface being able to log into the admin site. I get "Please enter a correct username and password." Even though all users have "is_active" and "is_staff" set to True. It's defi