drupal_cors
drupal_cors copied to clipboard
Drupal CORS module http://drupal.org/project/cors
Currently, if you add more than 2 lines in the domain text-area, additional domains are not accounted for. The issue is due to the `explode` 3rd parameter. There is no...
Bug: In multi domain mode, CORS module add only last domain. Solution: This code add only request domain to header if exist in list.
Bug: In multi domain mode, CORS module add only last domain. Solution: This code add only request domain to header if exist in list.
Hi, I think I came across a bug in the D8 version, where if, in the options, you pass multiple values for the Methods and/or the Headers. You would only...
Reference: https://www.drupal.org/files/issues/cors-multiple-Access-Control-Allow-Headers-not-working-2823583-1.patch patch 2 src: https://www.drupal.org/files/issues/cors-multiple-Access-Control-Allow-Headers-not-working-2823583-1.patch multiple headers were not properly separating, but instead only the last one of the comma separated list was being used.
Now all the values are added, so the issue #10 is fixed
Symfony kernel keeps headers in lower case, so better way to get it through get method.
Instead or returning multiple allowed-origin headers, return only that header that matches with the client. I added some missing fields to composer.json, so the project can be used via composer.json...
For now `api/*|http://example.com` will not work because of current path will be `/api/...` (with slash at the start).
Hello I want header('Access-Control-Allow-Origin: *'); when I tried to set \* , it didt give me a permission to save *. Could you please suggest me how can I resolve...