I've got this media root:
MEDIA_ROOT = '/var/www/hosted/myapp/static/'and this media url
MEDIA_URL = '/static/res/'and I am trying to upload a file using a callable:
def get_uploadto(instance, filename):
''' Dummy callable to silence the upload_to field of FileFields '''
return os.path.join('uploads', filename), it uploads the picture on the disk in /var/www/hosted/myapp/static/uploads/ just as planned, but in the admin it creates a link poiting to static/res/uploads, which does not exist. Does anyone know why? Of course, I can simply move the uploads dir within static res, but I am looking for a more elegant solution.