Gravity Forms 跑道积分错误
Gravity Forms Podio Integration Error
我正在尝试使用 Gravity Forms 连接到跑道。我生成了一个 API 密钥并将其添加到 Podio Integration 字段中。但是,在身份验证后,我收到 PodioConnectionError。
Fatal error: Uncaught exception 'PodioConnectionError' with message 'Connection to Podio API failed: [60] SSL certificate problem: unable to get local issuer certificate' in /home/content/80/5825280/html/SITE_2017/wp-content/plugins/gravityformspodio/includes/podio-php/lib/Podio.php:261 Stack trace: #0 /home/content/80/5825280/html/SITE_2017/wp-content/plugins/gravityformspodio/includes/podio-php/lib/Podio.php(107): Podio::request('POST', '/oauth/token', Array, Array) #1 /home/content/80/5825280/html/SITE_2017/wp-content/plugins/gravityformspodio/includes/podio-php/lib/Podio.php(68): Podio::authenticate('authorization_c...', Array) #2 /home/content/80/5825280/html/SITE_2017/wp-content/plugins/gravityformspodio/includes/api/class-gfp-podio-api.php(121): Podio::authenticate_with_authorization_code('d390f383048b45f...', 'https://powerfu...') #3 /home/content/80/5825280/html/SITE_2017/wp-content/plugins/gravityformspodio/includes/class-gfp-podio-addon.php(396): GFP_Podio_API::finish_server_authentication('gravity-forms-p...', in /home/content/80/5825280/html/SITE_2017/wp-content/plugins/gravityformspodio/includes/podio-php/lib/Podio.php on line 261
以前有人遇到过这个问题吗?
谢谢。
按照 Shawn 的建议,我按照提供的解决方案解决了这个问题:SSL certificate error: unable to get local issuer certificate when authenticating with Podio
我使用了这个插件:https://wordpress.org/plugins/php-settings/ 并在字段中添加了以下代码。
curl.cainfo = "/path-to-server/cacert.pem"
openssl.cafile="/path-to-server/cacert.pem"
希望对有需要的人有所帮助。
谢谢!
我正在尝试使用 Gravity Forms 连接到跑道。我生成了一个 API 密钥并将其添加到 Podio Integration 字段中。但是,在身份验证后,我收到 PodioConnectionError。
Fatal error: Uncaught exception 'PodioConnectionError' with message 'Connection to Podio API failed: [60] SSL certificate problem: unable to get local issuer certificate' in /home/content/80/5825280/html/SITE_2017/wp-content/plugins/gravityformspodio/includes/podio-php/lib/Podio.php:261 Stack trace: #0 /home/content/80/5825280/html/SITE_2017/wp-content/plugins/gravityformspodio/includes/podio-php/lib/Podio.php(107): Podio::request('POST', '/oauth/token', Array, Array) #1 /home/content/80/5825280/html/SITE_2017/wp-content/plugins/gravityformspodio/includes/podio-php/lib/Podio.php(68): Podio::authenticate('authorization_c...', Array) #2 /home/content/80/5825280/html/SITE_2017/wp-content/plugins/gravityformspodio/includes/api/class-gfp-podio-api.php(121): Podio::authenticate_with_authorization_code('d390f383048b45f...', 'https://powerfu...') #3 /home/content/80/5825280/html/SITE_2017/wp-content/plugins/gravityformspodio/includes/class-gfp-podio-addon.php(396): GFP_Podio_API::finish_server_authentication('gravity-forms-p...', in /home/content/80/5825280/html/SITE_2017/wp-content/plugins/gravityformspodio/includes/podio-php/lib/Podio.php on line 261
以前有人遇到过这个问题吗?
谢谢。
按照 Shawn 的建议,我按照提供的解决方案解决了这个问题:SSL certificate error: unable to get local issuer certificate when authenticating with Podio
我使用了这个插件:https://wordpress.org/plugins/php-settings/ 并在字段中添加了以下代码。
curl.cainfo = "/path-to-server/cacert.pem" openssl.cafile="/path-to-server/cacert.pem"
希望对有需要的人有所帮助。
谢谢!