Re: FileField not uploading

2006-03-21 Thread layik
I dont know how to thank you! Julio I feel blessed now! I can go to my progress meeting tomorrow! and showing them all this! onemore time, THANKS! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" gr

Re: FileField not uploading

2006-03-21 Thread Julio Nobrega
The first slash on file = meta.FileField (upload_to ="/myapps/uploads") is probably putting the file on drive C's root. Check if you have this directory: C:\myapps\uploads\ It bite me already :) Anyway this is what I have: settings.py: MEDIA_ROOT = 'C:/Python24/Lib/site-packages/projec

FileField not uploading

2006-03-21 Thread layik
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. M