Hi @peopleinside ! Thanks a lot for your quick replies.
I've tried the thread you've mentioned, but it didn't help. I've tried to apply this suggestion several ways:
Option #1
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
#RewriteRule ^(.*)$ ./index.php?/$1 [QSA,L]
RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC]
RewriteRule (.*?)index\.php/*(.*) /$1$2 [R=301,NE,L]
RewriteCond %{HTTP:Authorization} ^(.*)
RewriteRule .* - [e=HTTP_AUTHORIZATION:%1]
</IfModule>
This resulted in 404 errors for any page I am trying to access.
Option #2
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ ./index.php?/$1 [QSA,L]
RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC]
RewriteRule (.*?)index\.php/*(.*) /$1$2 [R=301,NE,L]
RewriteCond %{HTTP:Authorization} ^(.*)
RewriteRule .* - [e=HTTP_AUTHORIZATION:%1]
</IfModule>
This didn't make any difference from the original problem that I've faced with XHR acting weird. Everything works except XHRs, e.g. at the Agents page.
I'll try to give more insights into our setup below:
- I believe this is UVdesk 1.0.17
- PHP 7.4.27
- I've installed UVdesk via SSH, using composer and this guide https://www.uvdesk.com/en/blog/open-source-helpdesk-installation-on-ubuntu-uvdesk/
- I have my virtual host pointing right into /public folder
- The htaccess was already in place after installation, I didn't add it manually
- The first error "No input file specified." I got right away, when accessing the website root. It is shown for any URL, if I don't manually add "index.php" to the URL
- I've just added a question mark to this line:
RewriteRule ^(.*)$ ./index.php?/$1 [QSA,L]
As per some suggestions on Symphony forums.
Any suggestion where to dig? 
Thanks in advance!