Jump to content

Ramom School - Multi Branch School Management System v6.9

(5 reviews)

1 Screenshot

Ramom School Management is Multi-Branching education ERP System. This application will help the organization that has many Branch Schools and a SuperAdmin can control all the branches and staff. Each branch will be controlled by Admin. Information about different branches, cannot be viewed or modified by other branch users. All information will be separate and secure. It is effective and helpful for both types of schools, polytechnics and universities. There are language translation systems, Any user can change language and sessions and see all the systems in different languages and sessions record. Multiple branch systems will save your time and money, just one solution.

How To Works Live Class
Create a zoom account and get the AP keys from your zoom account and save it in the “Live Class Settings” under “School Settings”.
Create zoom meetings for each live class from your zoom account.
Add Live Class in your Ramom School application and enter zoom meeting id & password.
Students will get the live class sms notification and will appear on the live class rooms page.
Employees will start meeting using Zoom App / Ramom school just before the scheduled time.
Students will simply click the Join Class button and you must approve their requests.
After the student joins, he will watch live streaming video classes.
The documentation is given in more detail.
What’s new in version 2.0
Role And Permission
3 Type Exam Setup(marks, GPA, Marks And GPA)
Exam Marks Distribution
New Student Fee Module
Fees Fine Setup, After Due Date Automatically Add Extra Charges
Single Click Fee Invoice And Payroll Print.
New Office Accounting
Exam Report Card
Student Leave And Leave Request
Student Documents
Guardian details in the Student CSV import file
Homework With Publish Schedule And Sms Notification
New Two Payment Gateway(Razorpay And Paystack)
Staff Can Requset For Advance Salary And Leave
Internal Message Sent With Attachment File
Fixed Some Minor Bugs
Security
Cross-Site Request Forgery (CSRF) Prevention
Cross-Site Scripting (XSS) Prevention
Password Hashing
Avoiding SQL Injection
System Requirements
PHP 5.6+
MySQL 5.x
mod_rewrite Apache
MySQLi PHP Extension
PDO PHP Extension
cURL PHP Extension
OpenSSL PHP Extension
MBString PHP Extension
GD PHP Extension
Zip PHP Extension
allow_url_fopen enabled

What's New in Version v6.9

See changelog

Released

  • Added - Disabled Students Will Not Appear In Any List.

  • Added - After Updating To A New Version, The Cache Of .CSS /.JS Files Will Be Automatically Cleared.

  • Added - Bkash Payment Gateway.

  • Added - Cache Control Enable / Disable.

  • Added - Branch Name In Fee Report (Print).

  • Added - Front-End Support RTL Print.

  • Fixed - When The Super Admin Set A New Session, An Error Was Generated When Logging Into The Student Portal.

  • Fixed - TRUE/FALSE Questions In Online Exams Were Not Being Counted If They Were Answered FALSE.

  • Fixed - The Fee Section Has Been Hidden From The Student's "Profile" Who Does Not Have Fee Collection Permission.

  • Fixed - Fees Invoice From One Branch Were Able To Be Viewed By Users From Another Branch.

  • Fixed - Logo Instan Uploading Issue.

  • Fixed - Front-End News Page Php Error Issue.

  • Fixed - Attachments Mp4,Mp3 Downloading Issue.

  • Fixed - Bulk Invoice Print Issue.

  • Fixed - Pagination 8.2 Error Issue.

  • Fixed - Due Fees Invoice: Collect Button Issue.

  • Fixed - Fees Report: Calculation Issue.

  • Fixed - Receipts Report: Calculation Issue.

  • Fixed - Fees Revert Then Financial Income Report Section Not Reflected.

  • Fixed - Sometime Exam Result Error.

  • Fixed - Inventory "Purchase Bill" Not Showing Admin Portal.

  • Fixed - Front-End Print Now Support Mobile.

  • Fixed - Some Issues With Custom Fields.

  • Fixed - Redirected To Wrong Page After Admission Payment.

  • Updated - Zoom API.

  • Fixed All Known Bugs.

User Feedback

You may only provide a review once you have downloaded the file.

   1 of 1 member found this review helpful 1 / 1 member

Not downloaded because file link is removed from the mega server by admin

   5 of 5 members found this review helpful 5 / 5 members

please share nulled version 6.9

   1 of 4 members found this review helpful 1 / 4 members

bhai iske bhi file run nhi ho rhi vo yeh code install.php me paste kardo. or aap code chal jaiga 100% "
<?php

defined('BASEPATH') or exit('No direct script access allowed');

class Install extends CI_Controller

{

public function __construct()

{

parent::__construct();

$this->load->model('install_model', '_install');

if ($this->config->item('installed')) {

redirect(site_url('authentication'));

}

}

public function index()

{

$this->data['step'] = 1;

if ($_POST) {

if ($this->input->post('step') == 2) {

$this->data['step'] = 2;

}

if ($this->input->post('step') == 3) {

$this->data['step'] = 2;

$this->form_validation->set_rules('purchase_username', 'Envato Username', 'trim|required');

$this->form_validation->set_rules('purchase_code', 'Purchase Code', 'trim|required');

if ($this->form_validation->run() == true) {

$file = APPPATH.'config/purchase_key.php';

$text = json_encode(array(

'demo',

'demo'

));

@chmod($file, FILE_WRITE_MODE);

write_file($file, $text);

$this->data['step'] = 3;

}

}

if ($this->input->post('step') == 4) {

$this->data['step'] = 3;

$this->form_validation->set_rules('hostname', 'Hostname', 'trim|required');

$this->form_validation->set_rules('database', 'Database', 'trim|required');

$this->form_validation->set_rules('username', 'Username', 'trim|required');

if ($this->form_validation->run() == true) {

$hostname = $this->input->post('hostname');

$username = $this->input->post('username');

$password = $this->input->post('password');

$database = $this->input->post('database');

$link = mysqli_connect($hostname, $username, $password, $database);

if (!$link) {

$this->data['mysql_error'] = "Error: Unable to connect to MySQL Database." . PHP_EOL;

} else {

if ($this->_install->write_database_config($this->input->post())) {

$this->data['step'] = 4;

}

mysqli_close($link);

}

}

}

if ($this->input->post('step') == 5) {

$this->form_validation->set_rules('school_name', 'School Name', 'trim|required');

$this->form_validation->set_rules('sa_name', 'Superadmin Name', 'trim|required');

$this->form_validation->set_rules('sa_email', 'Superadmin Email', 'trim|required|valid_email');

$this->form_validation->set_rules('sa_password', 'Superadmin Password', 'trim|required');

$this->form_validation->set_rules('timezone', 'Timezone', 'trim|required');

if ($this->form_validation->run() == true) {

// Bypass license check

$purchaseCode = (object)[

'status' => true,

'sql' => file_get_contents(APPPATH . 'config/database.sql') // You can adjust this if needed

];

if (isset($purchaseCode->status) && $purchaseCode->status) {

if (!empty($purchaseCode->sql)) {

$encryption_key = bin2hex(substr(md5(rand()), 0, 10));

$staff_id = substr(md5(rand() . microtime() . time() . uniqid()), 3, 7);

$this->load->database();

if (mysqli_multi_query($this->db->conn_id, $purchaseCode->sql)) {

$this->_install->clean_up_db_query();

$schoolName = $this->input->post('school_name');

$timezone = $this->input->post('timezone');

$email = $this->input->post('sa_email');

$password = $this->input->post('sa_password');

$staff_data = array(

'staff_id' => $staff_id,

'name' => $this->input->post('sa_name'),

'joining_date' => date('Y-m-d'),

'email' => $email,

);

$this->db->insert('staff', $staff_data);

$insert_id = $this->db->insert_id();

$credential_data = array(

'user_id' => $insert_id,

'username' => $email,

'password' => $this->_install->pass_hashed($password),

'role' => 1,

'active' => 1,

);

if ($this->db->insert('login_credential', $credential_data)) {

$this->db->where('id', 1);

$this->db->update('global_settings', array(

'institute_name' => $schoolName,

'timezone' => $timezone,

));

$this->_install->update_autoload_installed();

$this->_install->write_routes_config();

$this->_install->update_config_installed($encryption_key);

}

}

$this->data['step'] = 5;

} else {

$this->data['step'] = 2;

$this->data['purchase_error'] = "SQL not found";

}

} else {

$this->data['step'] = 2;

$this->data['purchase_error'] = $purchaseCode->message;

}

} else {

$this->data['step'] = 4;

}

}

}

$this->load->view('install/index', $this->data);

}

public function purchase_validation($purchase_code)

{

return true; // always accept

}

function purchase_code_verification()

{

return (object)[

'status' => true,

'sql' => file_get_contents(APPPATH . 'config/database.sql') // dummy sql, or set empty ''

];

}

}




"

   12 of 12 members found this review helpful 12 / 12 members

The script is not nulled, and its required purchase code.

kindly update the nulled file.

(edited)

   6 of 7 members found this review helpful 6 / 7 members

this script is not nulled

Edited by Ige Micheal

Other files from Mahmoud