i am new to learn django and try to use django-filebrower and django- tinymce, and have some troubles.
it happens when i click the filebrowser icon of image(field) in django admin site, the popup window show the errors. exception information: WindowsError at /admin/filebrowser/media/uploads/ (3, '') Request Method: GET Request URL: http://localhost:8000/admin/filebrowser/media/uploads/?pop=1 Exception Type: WindowsError Exception Value: (3, '') Exception Location: C:\Users\workingbird\Desktop\Tourial\test_proj \filebrowser\views.py in index, line 136 Python Executable: C:\Python26\python.exe Python Version: 2.6.2 the location in filebrowser\views.py, has codes below: dir_list = os.listdir(os.path.join(PATH_SERVER, path)) and in my the app models.py, i used the FileBrowseField from filebrowser.fields, has codes like: from django.db import models from tinymce import models as tinymce_models from filebrowser.fields import FileBrowseField class Article(models.Model): title = models.CharField(max_length=100) content = tinymce_models.HTMLField() image = FileBrowseField(max_length=200, initial_directory="/media/ uploads/", extensions_allowed=['.jpg', '.jpeg', '.gif','.png','.tif','.tiff'], blank=True, null=True) can anyone have some ideas? if need some other information, i will add it below. thanks! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---