KevinTheJedi
The issue has been resolved and now undergoing observation. Since I am new with osTicket, I really do not know where is the issue coming from. I tried clearing Session and Cookies with the browser and it will work on the first try, but the second does not. So my guts tell me that the request is not allowing to proceed within the Client to the application (that is why "check internet connection shows"). So I edited the element <a>
of the download and omitted the attribute download
so that it will go with a fresh session in another tab. (You might check key validation or csrf).
Here is the resolution I made with the code I changed from include/staff/templates/thread-entry.tmpl.php
-> Look to string attachment-info
which is class of <div>
element. line code 106 (ish)
-> Look for the <a>
element with a class name of no-pjax truncate filename
and;
-> delete attribute download="<?php echo Format::htmlchars($A->getFilename()); ?>"
This will make the file link go to another browser tab and proceed to download the file.
Thanks, Cheers