Jump to content

Bankpro Php Script With Billing Code, Email, SMS 1.0

(1 review)

1 Screenshot

Bankpro is the Advanced and professional banking PHP Script that has all the necessary banking features to setup a banking website in less than 30 munities. It’s developed in PHP, and support php version 7.4. If you are still looking for complete and professional banking script with no google deceptive, just like foreign banks, then Bankpro is a great choice for you.

 

User Feedback

Recommended Comments

Tom Wilson

Members

Please I need help on this script. When I downloaded everything and unzipped, then after some setups, I noticed the admin page is showing just white screen and I have tried to modify this but still not working.

trunchino

Members

Your database is not connecting.

open admin/dashboard.php at line 2 - where you’ve include_once("./layout/header.php"); change it to include_once("../layout/header.php"); (add another dot)

Then go to layout/header.php and change…

require_once("./include/loginFunction.php"); to require_once("../include/loginFunction.php");

require_once ('./session.php'); to require_once ('../session.php');

this should work

Tom Wilson

Members

Please do you have the working script? I will be very happy if you can share with me. Thanks in advance. Am facing alot of error with the one i downloaded even after doing what you said. The admin dashboard looks incomplete

Screenshot 2025-01-09 063327.png

trunchino

Members

image.thumb.png.514c8b43b375a4424dd0a7626e38585f.png

This is what the admin panel looks like.
Goto the admin folder, locate dashboard.php and replace this code

<?php
include_once("layout/header.php");

$conn = dbConnect();

$sql = "SELECT * FROM users";
$stmt = $conn->prepare($sql);
$stmt->execute();
$row_count = $stmt->rowCount();
$row = $stmt->fetch(PDO::FETCH_ASSOC);
//$balances = $row['acct_balance']->rowCount();
?>

Then locate admin/layout/header.php and replace this code
<?php
ob_start();
require_once("./include/adminloginFunction.php");
require_once("./include/adminregFunction.php");
require_once("./include/session.php");
require_once("./include/adminClass.php");
if(!$_SESSION['admin']) {
    header("location:./login.php");
    die;
}

also locate admin/include/adminClass.php and replace this code
<?php
require_once '../include/vendor/autoload.php';
use PHPMailer\PHPMailer\PHPMailer;
require_once("../include/smtp.php");
//const APP_NAME = "Bank Pro";

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Add a comment...