Hi everyone,
As a newby in django and photologue I surely have badly set my project settings. I can upload some photos and see thew via the folders browser, even with the "cache" folder created by photologue, but I can’t have any display of them (both in admin interface and in the detail view). Find attached my settings.py.
And there it is the rendered error message:
Using the URLconf defined in bloghk.urls, Django tried these URL patterns, in this order:
- ^(?P<bill_id>\d+)/comments/$
- ^admin/doc/
- ^admin/
- ^$ [name='home']
- ^photologue/ ^gallery/(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/(?P<slug>[\-\d\w]+)/$ [name='pl-gallery-detail']
- ^photologue/ ^gallery/(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/$ [name='pl-gallery-archive-day']
- ^photologue/ ^gallery/(?P<year>\d{4})/(?P<month>[a-z]{3})/$ [name='pl-gallery-archive-month']
- ^photologue/ ^gallery/(?P<year>\d{4})/$ [name='pl-gallery-archive-year']
- ^photologue/ ^gallery/?$ [name='pl-gallery-archive']
- ^photologue/ ^gallery/(?P<slug>[\-\d\w]+)/$ [name='pl-gallery']
- ^photologue/ ^gallery/page/(?P<page>[0-9]+)/$ [name='pl-gallery-list']
- ^photologue/ ^photo/(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/(?P<slug>[\-\d\w]+)/$ [name='pl-photo-detail']
- ^photologue/ ^photo/(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/$ [name='pl-photo-archive-day']
- ^photologue/ ^photo/(?P<year>\d{4})/(?P<month>[a-z]{3})/$ [name='pl-photo-archive-month']
- ^photologue/ ^photo/(?P<year>\d{4})/$ [name='pl-photo-archive-year']
- ^photologue/ ^photo/$ [name='pl-photo-archive']
- ^photologue/ ^photo/(?P<slug>[\-\d\w]+)/$ [name='pl-photo']
- ^photologue/ ^photo/page/(?P<page>[0-9]+)/$ [name='pl-photo-list']
The current URL, photologue/photos/2011-01-16/cache/IMGP0860_1_admin_thumbnail.JPG, didn't match any of these.
Thanks for help
Vincent