Hi folks.
Following this thread (
http://groups.google.com/group/django-developers/browse_frm/thread/a0ae32019bb02f05/2c05c5363516ea76?q=streaming&rnum=2#2c05c5363516ea76)
, since I can't reply there ( over 30 days old, google tells me).
I have an app that uploads a 4mb file and is taking a ton o
Hi Ivan.
Just to make sure I understand:
- after patching django I 've set:
STORE_UPLOAD_ON_DISK = True
I am trying to use this on the admin. Any more steps I must take?
thanks a lot
(for the patch and help)
arthur
--~--~-~--~~~---~--~~
You received this messag
Hi Wegen.
carimage = models.ImageField(upload_to = 'images/cars/%s.png' % carID,
null = True, blank = True)
this won't work. upload_to must be a string (it's not evaluated at the
time the object is saved to the database).
your best bet is to leave the path to the desired directory and name
the
Hi Mike.
This is less of a patch review, and more of an user's feedback.
Probably not the best place to post this, but I figured track's ticket
2070 page already has too much going on there.
Been using this patch for a while without a glitch ( in webfaction's
setup, apache2, mod_python). Running
Hi Thejaswi.
A couple of suggestions:
Any reasons for having CommentFlag.flag being a string, and not a
foreign key to a FlagType model ? Having them as strings makes it
easier to end up with bad data (misspelling and so forth). Of course
there is always the performance penalty, but it seems wor