2017-04-24 133 views
0

我正在尝试安装并为我的web应用程序配置条纹。 我必须使用Sylius 0.18.0。 我这个政党成员安装条纹:http://sylius-older.readthedocs.io/en/latest/cookbook/stripe.html(我也尝试了版本4.8)无法识别的条纹选项

但是我有一个问题:

Fatal error: Uncaught exception 'Symfony\Component\Config\Definition\Exception\InvalidConfigurationException' with message 'Unrecognized options "factory, secret_key, publishable_key, payum.template.layout, payum.template.obtain_token" under "payum.gateways.stripe_checkout"' in /var/www/html/vendor/symfony/symfony/src/Symfony/Component/Config/Definition/ArrayNode.php:317 Stack trace: #0 /var/www/html/vendor/symfony/symfony/src/Symfony/Component/Config/Definition/BaseNode.php(264): Symfony\Component\Config\Definition\ArrayNode->normalizeValue(Array) #1 /var/www/html/vendor/symfony/symfony/src/Symfony/Component/Config/Definition/PrototypedArrayNode.php(283): Symfony\Component\Config\Definition\BaseNode->normalize(Array) #2 /var/www/html/vendor/symfony/symfony/src/Symfony/Component/Config/Definition/BaseNode.php(264): Symfony\Component\Config\Definition\PrototypedArrayNode->normalizeValue(Array) #3 /var/www/html/vendor/symfony/symfony/src/Symfony/Component/Config/Definition/ArrayNode.php(307): Symfony\Component\Config\Defini in /var/www/html/vendor/symfony/symfony/src/Symfony/Component/Config/Definition/ArrayNode.php on line 317

Config.yml:

payum: 
    gateways: 
     stripe_checkout: 
      factory: stripe_checkout 
      secret_key: "%stripe.secret_key%" 
      publishable_key: "%stripe.publishable_key%" 
      payum.template.layout: SyliusShopBundle::Checkout/layout.html.twig 
      payum.template.obtain_token: SyliusPayumBundle::Action/Stripe/obtainCheckoutToken.html.twig 

当我尝试配置贝宝时,我遇到了同样的问题。

我尝试了很多“解决方案”,但问题仍在这里... 感谢您的时间。

回答

1

我找到了一个解决方案:

payum: 
gateways: 
    paypal: 
     paypal_express_checkout_nvp: 
      username: %paypal.express_checkout.username% 
      password: %paypal.express_checkout.password% 
      signature: %paypal.express_checkout.signature% 
      sandbox: true 

    stripe: 
     stripe_checkout: 
      publishable_key: %stripe.publishable_key% 
      secret_key: %stripe.secret_key% 
    omnipay: 
     omnipay: 
      type: Stripe 
      options: 
       apiKey: %stripe.secret_key% 
       testMode: true 

但是选择条纹是不存在的下拉列表中选择的付款方式