Skip to content

At Ozow, They make payments easy, convenient and secure. I'm making and supporting a php Custom Ozow Payment Script for developers to integrate it into their php custom websites and Mobile Apps: Read More - https://ozow.com/integrations/

wdtheprovider/ozpay

Repository files navigation

Ozow Pay - Custom Payment-Method



Available in: PHP - Demo : https://dingi.icu/ozpay/

Upcoming: Android (Java) and Flutter(Dart) stay tuned.

Ozow https://ozow.com/ offers different ways to integrate their payment system into your web and mobile application to start accepting payments from your application, Ozow is very Unique because every payment made from your application, the payment goes straight into your Bank Account.


In this repo i will use PHP and MySQL to make a Custom Ozow Payment method so that other developers can re-use this script and put it into thier applications without spending a lot of time.

What you need?
Register a Merchant Account on: https://signup.ozow.com/ or Login to get the below data

*Site Code
*Private Key
*API Key


Installation Steps

Database Creation

CREATE TABLE `payments` (
  `id` int(11) NOT NULL,
  `amount` decimal(9,2) NOT NULL,
  `datePaid` date NOT NULL DEFAULT current_timestamp(),
  `transactionRef` varchar(50) NOT NULL,
  `paymentStatus` varchar(50) NOT NULL,
  `transactionId` varchar(50) NOT NULL,
  `hash` varchar(256) NOT NULL,
  `userid` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

ALTER TABLE `payments`
  ADD PRIMARY KEY (`id`);
  
  ALTER TABLE `payments`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1;


CREATE TABLE `settings` (
  `id` int(11) NOT NULL,
  `siteName` varchar(50) NOT NULL,
  `siteCode` varchar(50) NOT NULL,
  `privateKey` varchar(50) NOT NULL,
  `apiKey` varchar(50) NOT NULL,
  `countryCode` varchar(20) NOT NULL,
  `currencyCode` varchar(20) NOT NULL,
  `isTest` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

ALTER TABLE `settings`
  ADD PRIMARY KEY (`id`);
  
  ALTER TABLE `settings`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1;
COMMIT;

INSERT INTO `settings` (`id`, `siteName`, `siteCode`, `privateKey`, `apiKey`, `countryCode`, `currencyCode`, `isTest`) VALUES
(1, 'Store Name', 'TSTSTE0001', '215114531AFF7134A94C88CEEA48E', 'EB5758F2C3B4DF3FF4F2669D5FF5B', 'ZA', 'ZAR', '');



Download/Clone the repository and edit the Config.php file for the script to work.

Errors: If you get Error 500, that means your database is incorrect.

RUN it.......
Demo: url https://dingi.icu/ozpay/

About

At Ozow, They make payments easy, convenient and secure. I'm making and supporting a php Custom Ozow Payment Script for developers to integrate it into their php custom websites and Mobile Apps: Read More - https://ozow.com/integrations/

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published