![]() |
add paypal as library - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28) +--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30) +--- Thread: add paypal as library (/showthread.php?tid=77367) |
add paypal as library - pws - 08-22-2020 Hello, i want use paypal sdk (expresscheckout) on my website CI4 How i can use the paypal as library? thanks RE: add paypal as library - jreklund - 08-22-2020 There are no need to implement it in CodeIgniter itself, just use their own PHP SDK: https://github.com/paypal/Checkout-PHP-SDK https://developer.paypal.com/docs/checkout/reference/server-integration/setup-sdk/ https://developer.paypal.com/docs/checkout/ Code: // Just remove this line from all their example: RE: add paypal as library - pws - 08-23-2020 thanks for your reply, but where and how i uplaod the paypal SDK in my website directories? RE: add paypal as library - jreklund - 08-23-2020 Check my second link above, installation instruction are in their docs. TLDR; You install it with Composer and get a /vendor/ folder in your CodeIgniter folder. |