diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2005-07-17 02:46:04 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2005-07-17 02:46:04 +0000 |
| commit | 4211bcb43767b66e65599f7f3e38cdb52cd44243 (patch) | |
| tree | e583985931374b592e7a29b8d3a25ea9b70e52e8 /docs/faq.txt | |
| parent | 364f3704b0cce0d147336ae2d9328ea95e152b63 (diff) | |
Added an example to one of the FAQ answers from [132]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@133 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/faq.txt')
| -rw-r--r-- | docs/faq.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/faq.txt b/docs/faq.txt index 24a06d84cc..29cc3696c8 100644 --- a/docs/faq.txt +++ b/docs/faq.txt @@ -219,7 +219,9 @@ The login cookie isn't being set correctly, because the domain of the cookie sent out by Django doesn't match the domain in your browser. Try these two things: -* Set the ``REGISTRATION_COOKIE_DOMAIN`` setting to match your domain. +* Set the ``REGISTRATION_COOKIE_DOMAIN`` setting to match your domain. For + example, if you're going to "http://www.mysite.com/admin/" in your browser, + set ``REGISTRATION_COOKIE_DOMAIN = 'www.mysite.com'``. * Some browsers (Firefox?) don't like to accept cookies from domains that don't have dots in them. If you're running the admin site on "localhost" or another domain that doesn't have a dot in it, try going to "localhost.localdomain" or |
