未找到页面(404)请求方法: GET请求网址: http://beta.mysite.com/admin/filebrowser/
请求的管理页面没有 存在。
django-filebrowser
要求:
python-imaging
)对于文件浏览器I:
settings.py
,确认已将其删除,因为它曾在我安装之前抛出了PIL未安装的异常(r'^admin/filebrowser/', include('filebrowser.urls')),
有一点需要注意,我没有修改filebrowser settings.py 。
我的网站管理员工作,grappelli应用于管理员,我尝试使用尾部斜杠http://site.com/admin/filebrowser/
,我的网址有一个尾部斜线,继承完整的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')),
)
答案 0 :(得分:7)
/admin/filebrowser/browse
。