DETAILED INFORMATION.
I am trying to see entrys in Admin Painel.
I Go, for example, to this Link:
https://forms.mysite.com/machform/view_entry.php?form_id=11051&entry_id=1
Everything loads OK.
All data loads OK.
But... IMAGES DONT LOAD.
Print of the Problem == https://prnt.sc/plas22
The name of the images appear correctly. but no images are loaded.
All images were loaded correctly on the server.
Print from folder, opened in ftp. == https://prnt.sc/plassa
( /public_html/machform/data/form_11051/files )
If I Acess for example:
https://forms.mysite.com/machform/data/form_11051/files/element_4_44b1515b72db0cd4cbde302fa8895c57-1-TESTE1.png
I Can see the image OK, Image is Uploaded OK, i Can acess it with direct Link, no problemas here.
Data Folder have correct permision (777)
==== Looking deeper into HTML ====
The Image Code:
<img src="https://forms.mysite.com/machform/view_img.php?q=Zm9ybV9pZD0xMTA1MSZpZD0xJmVsPWVsZW1lbnRfNCZoYXNoPTQwMzZlZGYyNjMxMDFiZjUwZDQzMmE4OWI2MmZlNDdl" style="max-width: 350px;margin: 15px 0;">
The Download Code:
<a class="entry_link" href="https://forms.mysite.com/machform/download.php?q=Zm9ybV9pZD0xMTA1MSZpZD0xJmVsPWVsZW1lbnRfNCZoYXNoPTQwMzZlZGYyNjMxMDFiZjUwZDQzMmE4OWI2MmZlNDdl">TESTE1.png</a>
If I Try to direct access the Image
https://forms.mysite.com/machform/view_img.php?q=Zm9ybV9pZD0xMTA1MSZpZD0xJmVsPWVsZW1lbnRfNCZoYXNoPTQwMzZlZGYyNjMxMDFiZjUwZDQzMmE4OWI2MmZlNDdl
DONT WORK
Result = Unable to access this site - ERR_HTTP2_PROTOCOL_ERROR
Print of Error == https://prnt.sc/plav2n
If I Try to direct Download the Image
https://forms.mysite.com/machform/view_img.php?q=Zm9ybV9pZD0xMTA1MSZpZD0xJmVsPWVsZW1lbnRfNCZoYXNoPTQwMzZlZGYyNjMxMDFiZjUwZDQzMmE4OWI2MmZlNDdl
DONT WORK AGAIN
Result = Unable to access this site - ERR_HTTP2_PROTOCOL_ERROR
But...
If I Change the BASE64 Code To Something Else
Zm9ybV9pZD0xMTA1MSZpZD0xJmVsPWVsZW1lbnRfNCZoYXNoPTQwMzZlZGYyNjMxMDFiZjUwZDQzMmE4OWI2MmZlNDdl
Trying To Access For example
https://forms.mysite.com/machform/view_img.php?q=ANYTHING123456
Result = Its LOAD a page with some chars.
Print of This == https://prnt.sc/plavyq
If I Decode BASE64?
Result = form_id=11051&id=1&el=element_4&hash=4036edf263101bf50d432a89b62fe47e
And if a Change, for example to:
form_id=99999&id=1&el=element_4&hash=4036edf263101bf50d432a89b62fe47e
And encode Again?
Result = Zm9ybV9pZD05OTk5OSZpZD0xJmVsPWVsZW1lbnRfNCZoYXNoPTQwMzZlZGYyNjMxMDFiZjUwZDQzMmE4OWI2MmZlNDdl
Now.. IF I Try To Acess
https://forms.mysite.com/machform/view_img.php?q=Zm9ybV9pZD05OTk5OSZpZD0xJmVsPWVsZW1lbnRfNCZoYXNoPTQwMzZlZGYyNjMxMDFiZjUwZDQzMmE4OWI2MmZlNDdl
Some Chars again.
Result = https://prnt.sc/plawxh
Summary:
Every time I try to access a value that exists, it simply does not load the page, an error happens.
Every time I try to load a value that doesn't exist, it loads a few characters.
How to solve this?