Changes between Version 34 and Version 35 of NewbieMistakes
- Timestamp:
- Jul 13, 2007, 6:35:34 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
NewbieMistakes
v34 v35 173 173 174 174 Make 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 178 You have no clue how to map a media url to your media directory when using apache2. 179 180 ==== Solution ==== 181 Use the ''Alias'' Directive and don't forget to set-up access rights correctly. 182 {{{ 183 Alias /mediaurl /path/to/files 184 <Directory /path/to/files> 185 Order allow,deny 186 Allow from all 187 </Directory> 188 }}} 175 189 176 190 == QuerySets aren't Lists ==