php - Sylius/Payum/Stripe config error "boolean sandbox option must be set" -
i have set stripe gateway, when try submit payment user, error, "the boolean sandbox option must set." not error paypal, stripe.
here relevant config.yml entries:
payum: gateways: paypal_express_checkout: factory: "paypal_express_checkout" payum.http_client: "@sylius.payum.http_client" username: "%paypal.express_checkout.username%" password: "%paypal.express_checkout.password%" signature: "%paypal.express_checkout.signature%" sandbox: true stripe: factory: stripe_checkout publishable_key: pk_test_1uyhcw3tydyjdxylvagprmkh secret_key: sk_test_81j9puwh2ftnrogotik0hjlb sandbox: true sylius_payment: driver: doctrine/orm gateways: stripe: stripe
what doing wrong?
(also, not real keys)
there typo in paypal section of parameters.yml file. guess breaking config before "sandbox: true" line.
Comments
Post a Comment