Sometime when you try to “Ping APIs” from Sngine admin panel you get this error message

To fix it you will need to edit the htaccess file at the following location
apis/php/.htaccess
You will change it from the following:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,L]
To the following:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /apis/php/index.php [QSA,L]
And will work fine with you.
The issue related to Apache and a flag called AcceptPathInfo but this edit will save your time and fix the issue.
That’s it.
Happy Sngine 🙂
Buy Sngine or Extend your support: https://bit.ly/BuySngine
