Integrate the ZiNi Pay payment gateway into your SMM panel with a simple step-by-step code-insertion process. No file uploads or replacements are required—just open your existing SMM panel files and add the necessary code snippets.
🔗 Official Website: https://zinipay.com
- Simple installation – add code directly inside existing panel files
- Secure API communication with ZiNi Pay
- Automatic payment verification
- Auto balance update after successful payments
- Custom USD → Local currency conversion
- Full admin control via Payment Methods settings
Important:
You do not upload/replace PHP files.
You only open your existing SMM panel files and insert the provided code in the correct locations.
Extract the .zip file on your computer.
Inside the plugin package, you will find:
app/controller/addfunds.php
app/controller/payment.php
admin/controller/ajax_data.php
payment_methods.sql
These files contain the code you must copy manually, not upload.
Run this SQL inside phpMyAdmin:
INSERT INTO `payment_methods` (`id`, `method_name`, `method_get`, `method_min`, `method_max`, `method_type`, `method_extras`, `method_line`, `nouse`) VALUES
(70, 'zinipay', 'zinipay', 1, 1000, '2', '{\"method_type\":\"2\",\"name\":\"ZiNi Pay\",\"min\":\"1\",\"max\":\"1000\",\"api_key\":\"YOUR_API_KEY_HERE\",\"api_url\":\"https:\/\/api.zinipay.com\",\"exchange_rate\":\"110\"}', 1, '2');public_html/app/controller/addfunds.php
Insert the // start zinipay ... // end zinipay block from the plugin.
public_html/app/controller/payment.php
Add:
- Payment verification
- Callback handling
- Balance update logic
public_html/admin/controller/ajax_data.php
Insert ZiNi Pay admin settings code.
Go to: Settings → Payment Methods → Edit ZiNi Pay
Fill in:
- API Key
- API URL:
https://api.zinipay.com - Exchange Rate
- Min/Max
- Status: Active
- User initializes payment
- ZiNi Pay processes
- Callback hits your panel
- Panel verifies
- User balance updates automatically
MIT License
© 2025 ZiNi Pay