Troubleshoot create order page in CSP restricted mode
This article provides explanations and fixes for the Adobe Commerce 2.4.7 issues while creating an order on the Admin side with CSP restricted mode is Enabled, with the “Refused to execute inline script because it violates the following Content Security Policy directive: "script-src …” error message in the browser console log.
Affected products and versions
Adobe Commerce on cloud infrastructure, Adobe Commerce on-premises, and Magento Open Source:
- 2.4.7
- 2.4.6-pX
- 2.4.5-pX
- 2.4.4-pX
Issue - Admin create order page is broken or isn’t able to load
The Admin create order page is broken or isn’t able to load, with the “Refused to execute inline script because it violates the following Content Security Policy directive: "script-src …” error message in the browser console log.
Steps to reproduce:
- Go to Sales > Orders.
- Create a new order.
Expected results:
The Admin create order page fully loads normally.
Actual results:
The Admin create order page is blank or missing components. The following JS error is displayed in the browser console log: “Refused to execute inline script because it violates the following Content Security Policy directive: "script-src …”
Cause
In Adobe Commerce and Magento Open Source version 2.4.7 and later, CSP is configured in restrict-mode
, by default, for payment pages in the storefront and admin areas, and in report-only
mode for all other pages.
The corresponding CSP header does not contain the unsafe-inline
keyword inside the script-src
directive for payment pages. Also, only whitelisted inline scripts are allowed.
Solution
Users might see browser errors due to certain scripts being blocked because of CSP:
Refused to execute inline script because it violates the following Content Security Policy directive: "script-src
To fix this issue, you must either:
-
Whitelist the blocked scripts using the
SecureHtmlRenderer
class. -
Use the
CSPNonceProvider
class to allow scripts to be executed.
Adobe Commerce and Magento Open Source 2.4.7 and later include a Content Security Policy (CSP) nonce provider to facilitate the generation of unique nonce strings for each request. These nonce strings are then attached to the CSP header.Use the
generateNonce
function inMagento\Csp\Helper\CspNonceProvider
to obtain a nonce string.code language-php use Magento\Csp\Helper\CspNonceProvider; class MyClass { /** * @var CspNonceProvider */ private $cspNonceProvider; /** * @param CspNonceProvider $cspNonceProvider */ public function __construct(CspNonceProvider $cspNonceProvider) { $this->cspNonceProvider = $cspNonceProvider } /** * Get CSP Nonce * * @return String */ public function getNonce(): string { return $this->cspNonceProvider->generateNonce(); } }
-
Add a hash to your module’s
csp_whitelist.xml
file.
Issue - Payment method is missing or isn’t working
Payment method is missing or not working on the Admin order create page, with the “Refused to execute inline script because it violates the following Content Security Policy directive: "script-src …” error message in the browser console log.
Steps to reproduce:
- Go to Sales > Orders.
- Create a new order.
- Create a new customer.
- Enter the customer details.
- Enter the order details (products, shipping method).
- Select a payment method.
Expected results:
You are able to select a payment method and proceed to place an order successfully.
Actual results:
The payment method is missing or not working. The following JS error is displayed in the browser console log: “Refused to execute inline script because it violates the following Content Security Policy directive: "script-src …”.
Cause
In Adobe Commerce and Magento Open Source version 2.4.7 and later, CSP is configured in restrict-mode
, by default, for payment pages in the storefront and admin areas, and in report-only
mode for all other pages.
The corresponding CSP header does not contain the unsafe-inline
keyword inside the script-src
directive for payment pages. Also, only whitelisted inline scripts are allowed.
Solution
Users might see browser errors due to certain scripts being blocked because of CSP:
Refused to execute inline script because it violates the following Content Security Policy directive: "script-src
To fix this issue, you must either:
-
Whitelist the blocked scripts using the
SecureHtmlRenderer
class. -
Use the
CSPNonceProvider
class to allow scripts to be executed.
Adobe Commerce and Magento Open Source 2.4.7 and later include a Content Security Policy (CSP) nonce provider to facilitate the generation of unique nonce strings for each request. These nonce strings are then attached to the CSP header.Use the
generateNonce
function inMagento\Csp\Helper\CspNonceProvider
to obtain a nonce string.code language-php use Magento\Csp\Helper\CspNonceProvider; class MyClass { /** * @var CspNonceProvider */ private $cspNonceProvider; /** * @param CspNonceProvider $cspNonceProvider */ public function __construct(CspNonceProvider $cspNonceProvider) { $this->cspNonceProvider = $cspNonceProvider } /** * Get CSP Nonce * * @return String */ public function getNonce(): string { return $this->cspNonceProvider->generateNonce(); } }
-
add a hash to your module’s
csp_whitelist.xml
file.
Issue - Admin can’t place an order
An admin can’t submit an order on the Admin create order page, with the “Refused to execute inline script because it violates the following Content Security Policy directive: "script-src …” error message in the browser console log.
Steps to reproduce:
- Go to Sales > Orders.
- Create a new order.
- Create a new customer.
- Enter the customer details.
- Enter the order details (products, shipping method).
- Select a payment method.
- Submit the order.
Expected results:
You’re able to submit an order successfully.
Actual results:
You’re not able to submit an order. The following JS error is displayed in the browser console log: “Refused to execute inline script because it violates the following Content Security Policy directive: "script-src …”
Cause
In Adobe Commerce and Magento Open Source version 2.4.7 and later, CSP is configured in restrict-mode
, by default, for payment pages in the storefront and admin areas, and in report-only
mode for all other pages.
The corresponding CSP header does not contain the unsafe-inline
keyword inside the script-src
directive for payment pages. Also, only whitelisted inline scripts are allowed.
Solution
Users might see browser errors due to certain scripts being blocked because of CSP:
Refused to execute inline script because it violates the following Content Security Policy directive: "script-src
To fix this issue, you must either:
-
Whitelist the blocked scripts using the
SecureHtmlRenderer
class. -
Use the
CSPNonceProvider
class to allow scripts to be executed.
Adobe Commerce and Magento Open Source 2.4.7 and later include a Content Security Policy (CSP) nonce provider to facilitate the generation of unique nonce strings for each request. These nonce strings are then attached to the CSP header.Use the
generateNonce
function inMagento\Csp\Helper\CspNonceProvider
to obtain a nonce string.code language-php use Magento\Csp\Helper\CspNonceProvider; class MyClass { /** * @var CspNonceProvider */ private $cspNonceProvider; /** * @param CspNonceProvider $cspNonceProvider */ public function __construct(CspNonceProvider $cspNonceProvider) { $this->cspNonceProvider = $cspNonceProvider } /** * Get CSP Nonce * * @return String */ public function getNonce(): string { return $this->cspNonceProvider->generateNonce(); } }
-
Add a hash to your module’s
csp_whitelist.xml
file.