EduAppGT Pro - School Management System

EduAppGT Pro - School Management System v9.1

No permission to download

oguzoksuz

New member
May 8, 2022
13
3
3
For making null change the code in application/controllers/install.php





function verify_purchase($purchase_code = '')

{
$product_code = $purchase_code;
$personal_token = "fVeXFGrqey5861iUpCuVrZ8tBqf85JmS";
$url = "https://api.envato.com/v3/market/author/sale?code=".$product_code;
$curl = curl_init($url);
$bearer = 'bearer ' . $personal_token;
$header = array();
$header[] = 'Content-length: 0';
$header[] = 'Content-type: application/json; charset=utf-8';
$header[] = 'Authorization: ' . $bearer;
$verify_url = 'https://api.envato.com/v1/market/private/user/verify-purchase:'.$product_cod
e.'.json';
$ch_verify = curl_init( $verify_url . '?code=' . $product_code );
curl_setopt( $ch_verify, CURLOPT_HTTPHEADER, $header );
curl_setopt( $ch_verify, CURLOPT_SSL_VERIFYPEER, false );
curl_setopt( $ch_verify, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt( $ch_verify, CURLOPT_CONNECTTIMEOUT, 5 );
curl_setopt( $ch_verify, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13');
$cinit_verify_data = curl_exec( $ch_verify );
curl_close( $ch_verify );
$response = json_decode($cinit_verify_data, true);
if (count($response['verify-purchase']) > 0) {
return true;
} else {
return false;
}
}



Remove this lines and paste this









function verify_purchase($purchase_code = '')

{

return true;

}





Thats it. Your nulled application is ready
 

khyall

New member
Jun 2, 2022
1
0
1
i have this proplem
Error Number: 1055

Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'ahmedbadr_was.message.message_id' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by

SELECT * FROM `message` WHERE `read_status` =0 AND `reciever` = 'admin-1' GROUP BY `message_thread_code`

Filename: models/Crud.php

Line Number: 1878
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu