Invision Community v4.6.9
using "Invision Community Suite 4.6.9 [WF NULL]"
When attempting to setup an API key I get the following error:
"Your server does not support authentication headers. As you will need to pass the API key in the URL, we recommend you set up IP address restriction."
In my /API/ folder in my .htaccess I have
<IfModule mod_setenvif.c>
SetEnvIf Authorization .+ HTTP_AUTHORIZATION=$0
</IfModule>
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteBase /api/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
</IfModule>
Anyone able to help?
I am using cloudflare, I tried without cloudflare and had the same issue