LottoLab - Live Lottery Platform 2.0 Nulled

Нет прав для скачивания
  • Автор темы Автор темы theresa
  • Дата начала Дата начала
Регистрация
11.09.2021
Сообщения
7 315
Реакции
2 904
Credits
$5 919
thanks to dear member @theresa submitted a new resource:

LottoLab - Live Lottery Platform - LottoLab, a laravel made Live Lottery platform


Read more about this resource...
 
Последнее редактирование:
"REQUEST_SCHEME" this data was get from $_SERVER,if your server can not get it,you need to change code
Files\core\vendor\laramin\utility\src\Helpmate.php
from
PHP:
  public static function appUrl(){
        $current = $_SERVER['REQUEST_SCHEME'] . '://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
        $url = substr($current, 0, -9);
        return  $url;
    }
to
PHP:
  public static function appUrl(){
    if ( (! empty($_SERVER['REQUEST_SCHEME']) && $_SERVER['REQUEST_SCHEME'] == 'https') || (! empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') || (! empty($_SERVER['SERVER_PORT']) && $_SERVER['SERVER_PORT'] == '443') ) {
        $_SERVER['REQUEST_SCHEME'] = 'https';
    } else {
        $_SERVER['REQUEST_SCHEME'] = 'http';
    }
        $current = $_SERVER['REQUEST_SCHEME'] . '://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
        $url = substr($current, 0, -9);
        return  $url;
    }
 
 

Похожие темы