首页 > 解决方案 > 是什么导致 Dokan Stripe Connection HTTP 错误 500?

问题描述

我正在开发一个使用 Dokan 多供应商插件来利用其电子商务功能的 WordPress 网站。它还使用 Stripe Connect 作为支付网关,因此每个卖家都能从每次销售中获得佣金。为了让每个卖家收到付款,每个卖家账户都必须连接到他们自己的 Stripe 账户(如此处所示:https ://wedevs.com/docs/dokan/modules/how-to-install-and-configure-dokan-stripe -连接/

这个功能在网站上已经存在了一段时间,并且运行良好。然而,今天下午,当我点击“连接到 Stripe”蓝色按钮(如上面的链接所示)时,我从 Chrome 收到“HTTP 错误 500”。现在所有用户都无法连接到 Stripe Connect。

我认为这可能与 SSL 有关,但我没有更改任何 Cert 或 Key 或它们的配置。

我正在使用 Ubuntu 16.04 运行 Apache 服务器

这是conf文件:

<VirtualHost *:443> SSLEngine On SSLCertificateFile /etc/ssl/certs/mywebsite.crt SSLCertificateKeyFile /etc/ssl/private/blablabla.key SSLCACertificateFile /etc/ssl/certs/ca-certificates.crt

ServerName mywebsitel.com
ServerAlias www.mywebsite.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/mywebsite.com/public_html

LogLevel info ssl:warn

ErrorLog /var/www/html/mywebsite.com/logs/error.log
CustomLog /var/www/html/mywebsite.com/logs/access.log combined

错误日志显示两个错误:

[Mon Oct 15 17:27:35.146054 2018] [ssl:error] [pid 22095] [client 2600:c02:1020:4202::ac10:826a:52934] AH02042: rejecting client initiated renegotiation [Mon Oct 15 17:29:33.168787 2018] [ssl:error] [pid 21905] [client 64.41.200.106:48000] AH02042: rejecting client initiated renegotiation

有人知道吗?这是该站点的一个关键组件,而这个问题只是突然发生的!

标签: wordpresssslstripe-payments

解决方案


推荐阅读