Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anburocky3/Stripe-Payment-Gateway-Integration-CodeIgniter
Integrating Stripe Payment Gateway in CodeIgniter 3.1.10 with Bootstrap 4.3.1 layout on the go!
https://github.com/anburocky3/Stripe-Payment-Gateway-Integration-CodeIgniter
codeigniter codeigniter3 payment-gateway payment-integration stripe stripe-payments
Last synced: 3 months ago
JSON representation
Integrating Stripe Payment Gateway in CodeIgniter 3.1.10 with Bootstrap 4.3.1 layout on the go!
- Host: GitHub
- URL: https://github.com/anburocky3/Stripe-Payment-Gateway-Integration-CodeIgniter
- Owner: anburocky3
- License: mit
- Created: 2018-01-21T19:36:24.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-09-23T19:40:22.000Z (over 2 years ago)
- Last Synced: 2024-06-27T04:33:30.887Z (7 months ago)
- Topics: codeigniter, codeigniter3, payment-gateway, payment-integration, stripe, stripe-payments
- Language: PHP
- Homepage:
- Size: 951 KB
- Stars: 19
- Watchers: 6
- Forks: 22
- Open Issues: 4
-
Metadata Files:
- Readme: README.MD
- License: LICENSE
Awesome Lists containing this project
README
# Stripe-Gateway-Integration-CodeIgniter 3.1.10
#Screenshots Overview
1. Card Entering Form![Card Entering Form](/screenshots/homepage.png?raw=true "Card Entering Form")
2. If Card is valid, Will Charge the Card
![If Card is valid, Will Charge the card](/screenshots/payment_success.png?raw=true")
3. If Anything goes Wrong, display Failure page
![If Anything goes Wrong, display Failure page](/screenshots/payment_failure.png?raw=true)
Quick steps to integrate to your web/app on the go!
- Clone the repository
git clone https://github.com/anburocky3/Stripe-Payment-Gateway-Integration-CodeIgniter.git
- Open Terminal, type
cd Stripe-Payment-Gateway-Integration-CodeIgniter
- Copy
Welcome.php
controller file in yourapplications/controllers/
directory
- Copy
product_form.php
,payment_success.php
,payment_error.php
view files in ourapplications/views/
directory to your directory.
- Copy
stripe
folder fromapplications/third_party
folder and paste it in yourapplications/third_party
folder.
- Create New Database and import the
orders.sql
to your Database.
- Configure the
base_url
and database info inapplications/database.php
- Create developer account on Stripe and get your Stripe secret key & Stripe Publishable key.
- Replace your publishable key in
applications/views/product_form.php
online 25
- Replace your Secret key & Publishable key in
applications/controller/Welcome.php
online 30, 31
- Customize the controller logic according to your web/app.