Reputation: 11
I have used php library for stripe payment, When I call the charge page it gives 500 internal server error by this namespace errors and also the require init.php giving error.
My server PHP Version 5.2.17
SO Please suggest me how to solve this problem..
https://i.sstatic.net/c05Hr.png
Upvotes: 1
Views: 481
Reputation: 25552
The latest release of Stripe's PHP bindings (2.*) require you to have PHP 5.3.3 or later on your server as explained here. Since you're on PHP 5.2.17 you'd need to either:
Upvotes: 1