i am using django_multiuploader in my app, and even thou i can upload the 
image, the fancy jquery eye candy is not happening (js,css), and after it 
finishes uploading it doesn't show me my image, only some json text info 
about the image. What am i doing wrong? i am getting this error when i 
inspect element:

Uncaught TypeError: Object [object Object] has no method 'fileupload'

here is my code:

MEDIA_ROOT = os.path.join(BASE_DIR, 'site_media/')
MEDIA_URL = '/site_media/'
STATIC_ROOT = os.path.join(BASE_DIR, '/static/')
STATIC_URL = '/static/'

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'registration',
    'admin',      
    'sorl.thumbnail',
    'multiuploader', 
    # Uncomment the next line to enable the admin:
    'django.contrib.admin',
    # Uncomment the next line to enable admin documentation:
    'django.contrib.admindocs',
)

didnt change anything in the multiuploader app that i clone from
https://github.com/garmoncheg/django_multiuploader my media/multiuploader 
is under my site_media/multiuploader (MEDIA ROOT) like the README says. and 
i have sorl.thumbnail installed and pillow. and i adder the urls also.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/EgLi9jlwShAJ.
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.

Reply via email to