Page not found (404) Request Method: GET Request URL: http://beta.mysite.com/admin/filebrowser/
The requested admin page does not exist.
django-filebrowser
requirements:
python-imaging
)For filebrowser I:
settings.py
, confirmed its picking it up because it once threw an Exception that PIL wasnt installed before I installed it(r'^admin/filebrowser/', include('filebrowser.urls')),
One thing to note, I did not modify the filebrowser settings.py.
My site admin works, grappelli is applied to the admin, I tried http://site.com/admin/filebrowser/
with the trailing slash, my url has a trailing slash, heres the full urls.py:
urlpatterns = patterns('',
(r'^$', 'django.views.generic.simple.direct_to_template', {'template':'homepage.html'}),
# Uncomment the next line to enable the admin:
(r'^admin/filebrowser/', include('filebrowser.urls')),
(r'^admin/', include(admin.site.urls)),
# add this or you'll get some error:
# Reverse for 'grp_bookmark_get' with arguments
(r'^grappelli/', include('grappelli.urls')),
(r'^search/$', 'site.search.views.search'),
(r'', include('django.contrib.flatpages.urls')),
)
apollo13 on freenode/#django solved this one. I was supposed to go to /admin/filebrowser/browse
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With