[web2py] Re: File Download Broken after Pull Request #2471

2023-10-26 Thread CarlosDB
y, 4 October 2023 at 08:26:46 UTC-7 CarlosDB wrote: > >> Hello, >> >> Today, I downloaded web2py from GitHub to start testing a future update. >> I have several "upload" fields for images, and they have all started to >> fail. >> >> A

[web2py] Re: web2py 2.25.1

2023-10-18 Thread CarlosDB
back (most recent call last): >> File "/home/www-data/web2py/gluon/main.py", line 562, in wsgibase >> return http_response.to(responder, env=env) >> File "/home/www-data/web2py/gluon/http.py", line 129, in to >> responder(status, rheaders) &

[web2py] Re: Displaying images from web2py as a server

2023-10-10 Thread CarlosDB
In your example, `image_url` is not the URL of the image, it's the value of the "upload" field. Try something similar to this: image = AsyncImage(source=f"http://localhost:8000/download/{image_url}";) Carlos. El lunes, 9 de octubre de 2023 a las 6:56:05 UTC+2, mostwanted escribió: > I have a l

[web2py] Re: web2py 2.25.1

2023-10-09 Thread CarlosDB
A fantastic job. Thank you very much. Carlos. El domingo, 8 de octubre de 2023 a las 20:59:27 UTC+2, Massimo Di Pierro escribió: > Hello everybody, > > A new version of web2py, 2.25.1, is out. > > It contains some bug fixes, #2468 #2468 #2236, http headers sanitization, > and fixes this vulen

[web2py] File Download Broken after Pull Request #2471

2023-10-04 Thread CarlosDB
Hello, Today, I downloaded web2py from GitHub to start testing a future update. I have several "upload" fields for images, and they have all started to fail. After some investigation, I found that this issue started after Pull Request (PR) #2471 (Sanitize Headers) was merged. Link to PR