On May 17, 5:18 am, mw <[EMAIL PROTECTED]> wrote: > I'm having nothing but tons of trouble right now with the image field > upload. I don't know what the problem is for sure, yet, but yeah I > think that I'm willing to say that the ImageField isn't as easy to get > working as it should be :-/ > > I think my problem may be OS X related and having to do with OS X's > Apache andmod_pythonbeing 64 bit while my PIL is something else, but > I need to verify that PIL is, in fact, 32 bit still.
Determining if PIL .so is fully fat is easy, just use the 'file' command on it. So, find where PIL is installed, find the .so files in the package and go: file *.so If it is fully fat, you will get something like: $ file /usr/libexec/apache2/mod_wsgi.so /usr/libexec/apache2/mod_wsgi.so: Mach-O universal binary with 4 architectures /usr/libexec/apache2/mod_wsgi.so (for architecture ppc7400): Mach-O bundle ppc /usr/libexec/apache2/mod_wsgi.so (for architecture ppc64): Mach-O 64- bit bundle ppc64 /usr/libexec/apache2/mod_wsgi.so (for architecture i386): Mach-O bundle i386 /usr/libexec/apache2/mod_wsgi.so (for architecture x86_64): Mach-O 64- bit bundle If you only see a line for i386, then only Intel 32 bit and would not work on Intel 64 bit under Apache/mod_python/mod_wsgi. For further related information see: http://code.google.com/p/modwsgi/wiki/InstallationOnMacOSX Graham > On May 16, 1:06 pm, Brandon Taylor <[EMAIL PROTECTED]> wrote: > > > Hi everyone, > > > I can't get the newforms admin to upload images. I have PIL and JPEG > > support installed. My selftest on PIL reports that JPEG is supported, > > along with PNG, but when I try to upload, I get: > > > Upload a valid image. The file you uploaded was either not an image or > > a corrupted. > > > I can confirm that it *is* a JPEG, and it was working before I > > switched to newforms-admin :) > > > Thoughts? Anyone experiencing something similar? I'm sure its a > > problem with PIL and no Django, but have no clue as to where to start > > to debug this. > > > TIA, > > Brandon --~--~---------~--~----~------------~-------~--~----~ 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?hl=en -~----------~----~----~----~------~----~------~--~---