You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guide/payment/payment_troubleshooting.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ edition: commerce
9
9
10
10
Due to a restriction in JmsPaymentBundle, an order exceeding 99999.99999 causes an error message.
11
11
12
-
It is possible to extend this limit using an [official workaround for the JMSPaymentCoreBundle.](http://jmspaymentcorebundle.readthedocs.io/en/latest/guides/overriding_entity_mapping.html)
12
+
It is possible to extend this limit using an [official workaround for the JMSPaymentCoreBundle.](https://jmspaymentcorebundle.readthedocs.io/en/latest/guides/overriding_entity_mapping.html)
13
13
14
14
You need to override the service class `Siso\Bundle\PaymentBundle\Api\StandardPaymentService` and modify the `EXCEEDED_ENTITY_AMOUNT_VALUE` constant.
15
15
This constant is read by late static binding and will use the overridden value.
@@ -49,7 +49,7 @@ Error: Maximum execution time of 60 seconds exceeded
49
49
Occured in file /var/www/project/vendor/jms/payment-core-bundle/JMS/Payment/CoreBundle/Cryptography/MCryptEncryptionService.php line 91
50
50
```
51
51
52
-
The problem is with the usage of the PHP function [`mcrypt_create_iv`](http://php.net/manual/en/function.mcrypt-create-iv.php) in that line.
52
+
The problem is with the usage of the PHP function [`mcrypt_create_iv`](https://www.php.net/manual/en/function.mcrypt-create-iv.php) in that line.
53
53
The default implementation uses the `/dev/urandom` device to determine a random number.
54
54
This can take a long time if the hosting system doesn't generate random events fast enough.
0 commit comments