Django

Code

Changeset 281

Show
Ignore:
Timestamp:
07/21/05 13:03:25 (3 years ago)
Author:
jacob
Message:

Rolled comments on faq into the FAQ

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/faq.txt

    r237 r281  
    173173--------------------------------------- 
    174174 
    175 * For Python 2.4, check out this `guide to mod_python & Python 2.3`_. 
    176 * For Python 2.3, grab mod_python from http://www.mod_python.org/ and read 
    177   `Running mod_python on Apache on Windows2000`_. 
    178 * Also, try this (not Windows-specific) `guide to getting mod_python working`_. 
     175    * For Python 2.4, check out this `guide to mod_python & Python 2.3`_. 
     176    * For Python 2.3, grab mod_python from http://www.modpython.org/ and read 
     177      `Running mod_python on Apache on Windows2000`_. 
     178    * Also, try this (not Windows-specific) `guide to getting mod_python  
     179      working`_. 
    179180 
    180181.. _`guide to mod_python & Python 2.3`: http://www.lehuen.com/nicolas/index.php/2005/02/21/39-win32-build-of-mod_python-314-for-python-24 
     
    253254things: 
    254255 
    255 * Set the ``REGISTRATION_COOKIE_DOMAIN`` setting to match your domain. For 
    256   example, if you're going to "http://www.mysite.com/admin/" in your browser, 
    257   set ``REGISTRATION_COOKIE_DOMAIN = 'www.mysite.com'``. 
    258 * Some browsers (Firefox?) don't like to accept cookies from domains that don't 
    259   have dots in them. If you're running the admin site on "localhost" or another 
    260   domain that doesn't have a dot in it, try going to "localhost.localdomain" or 
    261   "127.0.0.1". And set ``REGISTRATION_COOKIE_DOMAIN`` accordingly. 
     256    * Set the ``REGISTRATION_COOKIE_DOMAIN`` setting in your admin config file 
     257      to match your domain. For example, if you're going to 
     258      "http://www.mysite.com/admin/" in your browser, in 
     259      "myproject.settings.admin" you should set ``REGISTRATION_COOKIE_DOMAIN = 
     260      'www.mysite.com'``. 
     261       
     262    * Some browsers (Firefox?) don't like to accept cookies from domains that 
     263      don't have dots in them. If you're running the admin site on "localhost" 
     264      or another domain that doesn't have a dot in it, try going to 
     265      "localhost.localdomain" or "127.0.0.1". And set 
     266      ``REGISTRATION_COOKIE_DOMAIN`` accordingly. 
    262267 
    263268I can't log in. When I enter a valid username and password, it brings up the login page again, with a "Please enter a correct username and password" error.