LottoLab - Live Lottery Platform

LottoLab - Live Lottery Platform 2.0 Nulled

No permission to download
Joined
Sep 11, 2021
Messages
5,561
Reaction score
2,678
Credits
$2,755
thanks to dear member @theresa submitted a new resource:

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

View attachment 45448

note: enter any PURCHASE CODE to continue ( do not enter spaces or symbols)
LottoLab, a laravel made Live Lottery platform that enables a great opportunity to start your own lottery website. Lotto is by far the most popular draw, in 2016, Americans spent a total of $70.15 billion on lottery tickets, according to the North American Association of State and Provincial Lotteries. we got Severals of requests to develop such items and we...

Read more about this resource...
 
Tested And Nulled:
enter any PURCHASE CODE ( not include spaces or symbols) to continue
02202328_08.webp
02202328_11.webp

if PURCHASE CODE have spaces ,you can change .env for right code to continue
 
PHP 8.1.2
error on activate

Undefined array key "REQUEST_SCHEME"​


/home/****/public_html/index.php:52
$request = Request::capture())->send();
do not write Space or symbol,i tested again ,no find any issue about active.if write ?you can edit .env to fixed. video in here
 
Last edited:
"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;
    }
 
Solved by correcting url path here from : $current = $_SERVER['REQUEST_SCHEME'] . '://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; to:
$current = $_SERVER['REQUEST_SCHEME'] . ':https//' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];

'.//' to 'https://'
 
Top