From 480e23d2cb9dcaef08d5d39e6b623ed4f0879733 Mon Sep 17 00:00:00 2001 From: Arseniy Plis Date: Fri, 1 May 2026 17:30:34 +0300 Subject: [PATCH 1/2] chore: fix typo in stripe webhook event --- .../version-1.2.x/getting-started/basic-configuration.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/versioned_docs/version-1.2.x/getting-started/basic-configuration.mdx b/versioned_docs/version-1.2.x/getting-started/basic-configuration.mdx index 6e60e78d..e8f37bb2 100644 --- a/versioned_docs/version-1.2.x/getting-started/basic-configuration.mdx +++ b/versioned_docs/version-1.2.x/getting-started/basic-configuration.mdx @@ -127,7 +127,7 @@ To setup Stripe, go to the Developer page and click on API Keys. You only need t Now, you will need to setup a Stripe Webhook in order to accept payments that are not 100% instantly confirmed by stripe (Klarna, Bank-Transfer etc.). To do so, click on Webhooks and add an endpoint. The endpoint route would look something like this: `https://your.ctrlpanel.url/payment/StripeWebhooks`. Change the `your.ctrlpanel.url` to your Ctrlpanel setup link. -Choose the `payment_intent.succeded`, `payment_intent.processing` and `payment_intent.payment_failed` events to be sent to your WebhookRoute. +Choose the `payment_intent.succeeded`, `payment_intent.processing` and `payment_intent.payment_failed` events to be sent to your WebhookRoute. After the webhook creation, you need to get the endpoint secret and copy paste it to your Ctrlpanel payment settings. The endpoint secret can be found in the Webhook Overview page. Just like Paypal, you can change it from Live to Sandbox and vice-versa in case you want to test to make sure that your payments are working correctly. @@ -138,4 +138,4 @@ _Unfortunately, we don't have information on how to configure this payment gatew ### MarcadoPago -_Unfortunately, we don't have information on how to configure this payment gateway. Know how and want to help? Let us know!_ \ No newline at end of file +_Unfortunately, we don't have information on how to configure this payment gateway. Know how and want to help? Let us know!_ From 3718d5235345d60280fb0b2df7a28e6ed97d51ce Mon Sep 17 00:00:00 2001 From: Arseniy Plis Date: Fri, 1 May 2026 17:31:39 +0300 Subject: [PATCH 2/2] fix: missing redis gpg download in debian guide --- .../version-1.2.x/getting-started/_parts/install/os/debian.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/versioned_docs/version-1.2.x/getting-started/_parts/install/os/debian.mdx b/versioned_docs/version-1.2.x/getting-started/_parts/install/os/debian.mdx index b8f90a09..d0acdf9a 100644 --- a/versioned_docs/version-1.2.x/getting-started/_parts/install/os/debian.mdx +++ b/versioned_docs/version-1.2.x/getting-started/_parts/install/os/debian.mdx @@ -42,6 +42,7 @@ wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | tee /etc/apt/sources.list.d/php.list # Add Redis official APT repository (Debian 12 only) +curl -fsSL https://packages.redis.io/gpg | sudo gpg --dearmor -o /usr/share/keyrings/redis-archive-keyring.gpg echo "deb [signed-by=/usr/share/keyrings/redis-archive-keyring.gpg] https://packages.redis.io/deb $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/redis.list # Add MariaDB repository (Debian 12 only)