Changes between Initial Version and Version 3 of Ticket #6695


Ignore:
Timestamp:
Mar 2, 2008, 8:30:06 AM (16 years ago)
Author:
Jacob
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #6695 – Description

    initial v3  
    1 The following two paragraphs are included in an effort to get past the spam filter:
    2 
    3 {{{
    4 If you just want to experiment with Django, skip ahead to the next section; Django includes a lightweight web server you can use for testing, so you won’t need to set up Apache until you’re ready to deploy Django in production.
    5 
    6 If you want to use Django on a production site, use Apache with mod_python. mod_python is similar to mod_perl — it embeds Python within Apache and loads Python code into memory when the server starts. Code stays in memory throughout the life of an Apache process, which leads to significant performance gains over other server arrangements. Make sure you have Apache installed, with the mod_python module activated. Django requires Apache 2.x and mod_python 3.x
    7 }}}
    81
    92The how to install documentation at:
    103
    11 h ttp://www.djangoproject.co m/documentation/install/
    12 
    13 (URL broken in an attempt to get past the spam filter)
     4http://www.djangoproject.com/documentation/install/
    145
    156says that if django is installed via "setup.py install" django will be installed as a django subdirectory of the site-packages directory.  It further suggests that to find the site-packages directory, one should run the following command:
     
    2920
    3021(and this isn't a symlink to the other.)
    31 
    32 More text in an effort to get past the spam filter:
    33 
    34 {{{
    35 If you plan to use Django’s manage.py syncdb command to automatically create database tables for your models, you’ll need to ensure that Django has permission to create and alter tables in the database you’re using; if you plan to manually create the tables, you can simply grant Django SELECT, INSERT, UPDATE and DELETE permissions. On some databases, Django will need ALTER TABLE privileges during syncdb but won’t issue ALTER TABLE statements on a table once syncdb has created it.
    36 }}}
    37 
    38 
Back to Top