On 2005-12-27, at 14:34 CET, PythonistL wrote:
MEDIA_ROOT = "/Media/" # because of alias in httpd.conf
MEDIA_URL = "http://localhost:8080/Media/"
Is the settings.py correct?
No, MEDIA_ROOT is filesystem path and MEDIA_URL is URL path:
MEDIA_ROOT='C:/Django/TEMPLATES/Static/'
MEDIA_URL = '/Media/'
How shall I setup directories for the uploading files?
I would like to use these absolute paths:
filepath = 'C:\\Django\\TEMPLATES\Static\\Uploaded\\'
filepathThumb = 'C:\\Django\\TEMPLATES\Static\\Uploaded\\Thumbnail\\'
filepathNormal = 'C:\\Django\\TEMPLATES\\Static\\Uploaded\\Normal\\'
For image fields use something like this:
foo = meta.ImageField(upload_to=os.path.join(MEDIA_ROOT, 'Uploaded'))
also, you can look at http://djangoutils.python-hosting.com/
(thumbnails) for ImageWithThumbnailField and thumbnail related filters.
---
Nebojša Đorđević - nesh
Studio Quattro - Niš - SCG
http://djnesh.blogspot.com/ | http://djnesh-django.blogspot.com/ |
http://djangoutils.python-hosting.com/
Registered Linux User 282159 [http://counter.li.org]