Re: admin is not allowing users to see the main page

2009-02-25 Thread Shantanoo
On Wed, Feb 25, 2009 at 15:02, Kenneth Gonsalves wrote:

>
> hi,
>
> I have a django site which has been working well, with an app name 'web' -
> recently I some changes in the database and now find that all users
> (including
> superusers) are blocked from viewing web in the main admin page. They can
> view
> and edit other pages under 'web' by typing in the url. Where do I go to
> reset
> the permission for 'web' in the db?
> --
> regards
> kg
> http://lawgon.livejournal.com


Following maybe useful.
Source: http://docs.djangoproject.com/en/dev/topics/auth/?from=olddocs

===
Creating 
superusers¶
New
in Django 1.0: The manage.py createsuperuser command is new.

manage.py syncdb prompts you to create a superuser the first time you run it
after adding 'django.contrib.auth' to your
INSTALLED_APPS.
If you need to create a superuser at a later date, you can use a command
line utility:

manage.py createsuperuser --username=joe --email=...@example.com

You will be prompted for a password. After you enter one, the user will be
created immediately. If you leave off the --username or the --email options,
it will prompt you for those values.

If you're using an older release of Django, the old way of creating a
superuser on the command line still works:

python /path/to/django/contrib/auth/create_superuser.py

...where /path/to is the path to the Django codebase on your filesystem. The
manage.py command is preferred because it figures out the correct path and
environment for you.

===


-- 

Fran Lebowitz  - "You're only has good as your last haircut."

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



admin is not allowing users to see the main page

2009-02-25 Thread Kenneth Gonsalves

hi,

I have a django site which has been working well, with an app name 'web' - 
recently I some changes in the database and now find that all users (including 
superusers) are blocked from viewing web in the main admin page. They can view 
and edit other pages under 'web' by typing in the url. Where do I go to reset 
the permission for 'web' in the db?
-- 
regards
kg
http://lawgon.livejournal.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---