Changes between Version 34 and Version 35 of NewbieMistakes


Ignore:
Timestamp:
Jul 13, 2007, 6:35:34 PM (17 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • NewbieMistakes

    v34 v35  
    173173
    174174Make sure each folder of your database file's full path does not start with number, eg. /www/4myweb/db (observed on Windows 2000).
     175
     176==== Problem ====
     177
     178You have no clue how to map a media url to your media directory when using apache2.
     179
     180==== Solution ====
     181Use the ''Alias'' Directive and don't forget to set-up access rights correctly.
     182{{{
     183Alias /mediaurl /path/to/files
     184<Directory /path/to/files>
     185Order allow,deny
     186Allow from all
     187</Directory>
     188}}}
    175189
    176190== QuerySets aren't Lists ==
Back to Top