Hi all, I am using: Windows xp Django 0.91 Django's own development server.
myproject/ ...myapp ...media ....../myapp ........./uploads in my settings # Example: "/home/media/media.lawrence.com/" MEDIA_ROOT = 'C:/absolute_file_path/media' # URL that handles the media served from MEDIA_ROOT. MEDIA_URL = 'http://mywebsite.com/media' in my model file = meta.FileField (upload_to ="/myapps/uploads") QUESTION 1: when I add a new object it says added successfully but I check myapps/uploads and there is no file uploaded!!! AND QUESTION2: are these true understandings of MEDIA_ROOT and MEDIA_URL??? I understand the process (through this user group posts) as: 1.Django uses MEDIA_ROOT as the filePath point to resort to for finding where to upload files to each apps using the upload_to option 2. for retrieving these files, it uses the MEDIA_URL as the filePath point to resort to for finding from where to serve the requested files using the full_file_path from the model's "file" field THANKS FOR YOUR TIME! P.S:I cannot finish my project with anything else but Django. --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---