Skip to content

Commit 6c7768b

Browse files
committed
docs/guide/payment/*.md: Fix links
1 parent 20325d9 commit 6c7768b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/guide/payment/payment_troubleshooting.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition: commerce
99

1010
Due to a restriction in JmsPaymentBundle, an order exceeding 99999.99999 causes an error message.
1111

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)
1313

1414
You need to override the service class `Siso\Bundle\PaymentBundle\Api\StandardPaymentService` and modify the `EXCEEDED_ENTITY_AMOUNT_VALUE` constant.
1515
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
4949
Occured in file /var/www/project/vendor/jms/payment-core-bundle/JMS/Payment/CoreBundle/Cryptography/MCryptEncryptionService.php line 91
5050
```
5151

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.
5353
The default implementation uses the `/dev/urandom` device to determine a random number.
5454
This can take a long time if the hosting system doesn't generate random events fast enough.
5555
Then the call runs into a timeout.

docs/guide/payment/paypal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ _siso_paypal_payment:
3434
3535
## Getting API credentials
3636
37-
Provide your [PayPal API credentials](https://developer.paypal.com/docs/nvp-soap-api/apiCredentials/#api-certificates) in configuration:
37+
Provide your [PayPal API credentials](https://developer.paypal.com/api/nvp-soap/apiCredentials/#api-certificates) in configuration:
3838
3939
``` yaml
4040
jms_payment_paypal:

0 commit comments

Comments
 (0)