gpt4 book ai didi

cakephp-2.0 - 与Stripe发生意外错误

转载 作者:行者123 更新时间:2023-12-04 05:07:01 25 4
gpt4 key购买 nike

使用Stripe计费我有一个表格,我提交了信息并下达了以下错误的订单...。

Unexpected error communicating with Stripe. If this problem persists, let us know at support@stripe.com. (Network error [errno 77]: error setting certificate verify locations: CAfile: C:\xampp\htdocs\PhpProject2\app\Lib\Stripe/../data/ca-certificates.crt CApath: none )

我的 Controller Action 代码
    if(!empty($this->request->data)){            
$email = $this->request->data['email'];
$credit_card = $this->request->data['card_number'];
$expire_month = $this->request->data['expiration_month'];
$expire_year = $this->request->data['expiration_year'];
$cvc = $this->request->data['cvc'];
//require_once('./lib/Stripe.php');
require_once "./../lib/Stripe.php";
Stripe::setApiKey("sk_test_KEY");
$token = Stripe_Token::create(array(
"card" => array(
"number" => $credit_card,
"exp_month" => $expire_month,
"exp_year" => $expire_year,
"cvc" => $cvc)));

和我的看法
<?php

echo $this->Form->create(false, array('action' => 'index'));
echo $this->Form->input('email', array('id' => 'email'));
echo $this->Form->input('card_number');
$options = array('1' => 'January', '2' => 'February', '3' => 'March', '4' => 'April',
'5' =>'May', '6' => 'June', '7' => 'July', '8' => 'August', '9' => 'September',
'10' => 'October',
'11' => 'November', '12' => 'December');

$start_year =array('1'=>2013,'2'=>2014,'3'=>2015,'4'=>2016,
'5'=>2017,'6'=>2018,'7'=>2019,'8'=>2020,'9'=>2021);

echo $this->Form->input('expiration_month', array('type' => 'select', 'options' => $options));
echo $this->Form->input('cvc');
echo $this->Form->end('place order', array('controller' => 'stripes', 'action' => 'index'));
?>

任何帮助将不胜感激

最佳答案

不确定,但是您的代码可能有效。问题是,它们要求通过使用库时尚未设置的证书文件(在库本身中,SDK经常像这样工作)来完成加密通信,或者路径不可解析(正斜杠和反斜杠混在一起)。

关于cakephp-2.0 - 与Stripe发生意外错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20513126/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com