Re: [web2py] How do I solve an image validation error?

2019-10-13 Thread Maurice Waka
Hello I did the install but still get the same error. regards On Tue, Oct 8, 2019 at 6:48 PM villas wrote: > Do you have Pillow image library installed? > > Check with python commandline: > >> from PIL import Image > > If the system comes back with a ">>>", the Pillow modules are properly >

Re: [web2py] How do I solve an image validation error?

2019-10-08 Thread villas
Do you have Pillow image library installed? Check with python commandline: >> from PIL import Image If the system comes back with a ">>>", the Pillow modules are properly installed. If not, install it... pip install Pillow On Sunday, 6 October 2019 12:29:10 UTC+1, Maurice Waka wrote: > >

Re: [web2py] How do I solve an image validation error?

2019-10-06 Thread Maurice Waka
Found out it's was a python 3.7 vs 2.7 when dealing with syringIO. I managed to change code at module images.py to try: from StringIO import StringIO except ImportError: from io import StringIO This was instead of import cStringIO Now a new form error, error comes still when uploading :

[web2py] How do I solve an image validation error?

2019-10-06 Thread Maurice Waka
I was looking for a good image app and came across this link . After uploading it, on trying to upload an image, I get this error: Traceback (most recent call last): File "/home/mauricewaka/web2py/gluon/restricted.py",