Thanks for your reply!
The issue was indeed related to my nginx.conf.
I added:
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
And i also had something with "try_files" which i removed and everything is now working as it should.
The issue was indeed related to my nginx.conf.
I added:
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
And i also had something with "try_files" which i removed and everything is now working as it should.
Thanks again!
JB