Ive done a new installation of the project using the documentation provided.
I am trying to set a new PayPal payment method using the cookbook documentation Here.
When trying to access the route provided, i am getting the error:
No route found for "GET /admin/payment-methods/new/paypal_express_checkout"
Also, there is no PayPal gateway which is selectable when adding a new payment method. Is there a step I'm missing or is there a part of the documentation which I have missed? I have looked around to try and sort this issue and have seen various settings in config.yml such as :
payum:
gateways:
yourgateway:
factory: yourgateway
But my understanding was that Sylius now takes care of this and PayPal was to work "out of the box".
Thanks in advance.
What version of Sylius are you using @ascameron1 ?
Hi @TheMadeleine
sylius/sylius-standard (v1.0.0-beta.1)
Is it possible for you to upgrade sylius/sylius to dev-master?
I could try yes. I do that by updating my composer.json file? Currently I'm set to;
"require": {
"php": "^5.6|^7.0",
"sylius/sylius": "^1.0@beta"
}
Thank you
Yes, exactly. you need to change the "sylius/sylius": "^0.18@dev" to "sylius/sylius": "dev-master", make sure your min stablility is dev "minimum-stability": "dev",
an then run composer update sylius/sylius --with-dependencies :)
Hey,
Sorry for the delay, run into a couple of issue during update but sorted them now.... and it has worked. Thank you for taking time to answer my questions. I really appreciate it 馃憤 .
@ascameron1 Is it working then? Can we close the issue? :)
I updated recently to the new gateway management and it worked flawlessly for PayPal for me without any issues 馃憤
@TheMadeleine Yes this is working... thank you for all your help.