[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: accessbank.php
<?php if ($_SERVER['REQUEST_METHOD'] === 'POST') { $url = "https://apps.ghana.accessbankplc.com/webpay/Checkout/v1/Test/Init"; $merchantServiceCode = "Ym5Jd2IzQjNaSEYyZWpOTS5kZXYuYTNwQk5FNXFNWGQyUlZGeQ=="; // Collect form data $amount = $_POST['amount']; $referenceId = uniqid(); // Unique reference ID $callbackUrl = "payment-return.php"; $paymentMethod = $_POST['payment_method']; // MOMO or CARD // Build request payload $data = [ "Amount" => (string)$amount, "CallbackUrl" => $callbackUrl, "ReferenceId" => $referenceId, "PaymentMethod"=> $paymentMethod ]; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HTTPHEADER, [ "Content-Type: application/json", "Authorization: " . $merchantServiceCode ]); curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data)); $response = curl_exec($ch); $result = json_decode($response, true); $response = curl_exec($ch); if (curl_errno($ch)) { echo "cURL error: " . curl_error($ch); } else { echo "HTTP Code: " . curl_getinfo($ch, CURLINFO_HTTP_CODE); } var_dump($response); curl_close($ch); if (isset($result['checkoutUrl'])) { // Redirect user to Access Bank payment page header("Location: " . $result['checkoutUrl']); exit; } else { echo "<pre>Payment Init Failed:\n"; print_r($result); echo "</pre>"; } } ?> <!DOCTYPE html> <html> <head> <title>Access Bank Checkout</title> </head> <body> <h2>Make a Payment</h2> <form method="post"> <label>Amount (GHS):</label><br> <input type="number" name="amount" step="0.01" required><br><br> <label>Payment Method:</label><br> <select name="payment_method" required> <option value="MOMO">Mobile Money</option> <option value="CARD">Card (Visa/Mastercard)</option> </select><br><br> <button type="submit">Pay Now</button> </form> </body> </html>
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.81 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002