smurf9852
Forum Replies Created
-
Forum: Plugins
In reply to: [Redis Object Cache] Plugin blocks REST API DELETE requests?I did resolve the issue.
There was a BOM Byte Order Mark in my functions.php file.
This caused the API response of WooCommerce to be different.
Saving functions.php without BOM solved it.
I did not even check if i could activate Redis again, as i was already satisfied with everything working again. Perhaps your problem is actually the same.
Good luck!Forum: Plugins
In reply to: [WooCommerce] WooCommerce REST API Error 401@denimrepubliconline the problem was the functions.php file. You have to save this as type UTF8 without BOM, then it works.
Forum: Plugins
In reply to: [Redis Object Cache] Plugin blocks REST API DELETE requests?i can confirm that flushing the cache solves it, turning 200 into 400.
However, i would like the REST API to work with an external API such that this manual flushing would never be necessary, is this possible to fix?Forum: Plugins
In reply to: [WooCommerce] WooCommerce REST API Error 401Hi,
I have a similar problem, this is the first time i set up the API, through Postman i cannot login with API keys, but doing it directly in URL: ‘/api/endpoint/?consumer_key=X&consumer_secret=X’
This does work for me!
What does this mean, and what can i do about it?
Running on Apache btw. I tried adding in htaccess:RewriteRule ^index\.php$ – [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
&
SetEnvIf Authorization “(.*)” HTTP_AUTHORIZATION=$1but no luck so far
Thanks!
- This reply was modified 6 years, 11 months ago by smurf9852. Reason: more info