Are you missing a path in PythonPath, in your apache's conf file? Not sure if the python path is returned in Django's error page; if not, create a new view that returns the python path *as seen when launched from apache* and see if it is correct there.
2009/12/30 Osiaq <[email protected]>: > INDEX.HTML: > error message: 'thumbnail' is not a valid tag library: Could not load > template library from django.templatetags.thumbnail, cannot import > name defaults > > 1 {% extends 'website/base_website.html' %} > 2 {% load thumbnail %} <--PROBLEM HERE > > on development server using 'python manage.py runserver' is working > perfect > the same machine using apache2 + mod-python fails > > thumbnail location: /home/osiaq/djangoprojects/myproject/sorl/ > thumbnail > python path: ['/home/osiaq/djangoprojects/myproject/sorl/', '/home/ > osiaq/djangoprojects/', '/home/osiaq/djangoprojects/ > myproject',.......] > > PYTHON: >>>>import PIL <--OK, no errors >>>>import sorl <--OK, no errors > > SETTINGS.PY: > INSTALLED_APPS = ( > 'sorl.thumbnail', (using myproject.sorl.thumbnail also doesnt > work) > ...) > > Help, please. > > -- > > You received this message because you are subscribed to the Google Groups > "Django users" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > > > -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

