• The default language of any content posted is English.
    Do not create multi-accounts, you will be blocked!
SignalLab - Forex & Crypto Trading Signal by ViserLab

NULLED SignalLab - Forex & Crypto Trading Signal by ViserLab 3.1 NULLED

raz0r

owner
Staff member
Administrator
Moderator
Messages
21,203
Files
6062
Reactions
82,113
raz0r submitted a new resource:

SignalLab - Forex And Crypto Trading Signal Platform - SignalLab - Forex And Crypto Trading Signal Platform - 33821085

View attachment 7623

SignalLab NULLED, a Professional Trading Signal Solution that comes with Email, SMS & Telegram Integration. It’s developed for those people who want to start their Trading or forex signal website with additional features. There are approximately 10 million forex traders in the world today. 3.2 million are in Asia, and 1.5 million each in Europe and North America. 1 in 10 people currently invest in cryptocurrencies...

Read more about this resource...
 
raz0r 's signature
Reacted by:
  • Like
Reactions: tahatehran
raz0r submitted a new resource:

SignalLab - Forex And Crypto Trading Signal Platform - SignalLab - Forex And Crypto Trading Signal Platform - 33821085



Read more about this resource...

Hi, raz0r!
This script is not working. After installation gives an error: 500 SERVER ERROR
In log file /core/storage/logs/laravel.log:
[2023-03-25 18:58:00] local.ERROR: Call to undefined function App\Providers\gs() {"exception":"[object] (Error(code: 0): Call to undefined function App\\Providers\\gs() at /home/toptradi/public_html/core/app/Providers/AppServiceProvider.php:34)
Could you fix this error?
Thank you.
 
Reacted by:
Not work.

Copied all files, created and filled db with data provided. Main page said need php >8.1 -> updated php. Error 500.
Proceeded to /install/index => all completed success. Open /admin or / => error 500. laravel.log 90k full of errors for just two page loads
 
Reacted by:
Professor Sir

Version 2.1 – 28th December 2022

[FIX] SEO content update issue solve
[FIX] Default reCaptcha issue solve

Please Update
Thank You NULL Cave
 
Reacted by:
Professor Update Please

Version 2.2 – 03rd September 2023​

  • [ADD] BTCPay payment gateway
  • [ADD] NowPayments payment gateway
  • [ADD] Checkout payment gateway
  • [ADD] TwoCheckout payment gateway
  • [ADD] Group basis user notification system
  • [ADD] Generated full language key of the system
  • [ADD] Update uploader
  • [ADD] Smart cron manager
  • [ADD] Automatic database creation in installer
  • [FIX] Authorize gateway sandbox issue
  • [PATCH] Gateway credentials security

Version 2.1 – 28th December 2022​

  • [FIX] SEO content update issue solve
  • [FIX] Default reCaptcha issue solve


Thank You NULLCAVE.
 
Reacted by:
I was fix it @dkartik
--------------------------
Post automatically merged:

PHP:
<?php

namespace App\Providers;

use App\Models\AdminNotification;
use App\Models\Deposit;
use App\Models\Frontend;
use App\Models\Language;
use App\Models\GeneralSetting;
use App\Models\SupportTicket;
use App\Models\User;
use Illuminate\Support\ServiceProvider;
use Illuminate\Pagination\Paginator;
use App\Constants\Status;

class AppServiceProvider extends ServiceProvider
{
    /**
     * Register any application services.
     *
     * @return void
     */
    public function register()
    {

    }

    /**
     * Bootstrap any application services.
     *
     * @return void
     */
    public function boot()
    {
                $general = GeneralSetting::first();

        $activeTemplate = activeTemplate();

        $viewShare['general'] = $general;
        $viewShare['activeTemplate'] = $activeTemplate;
        $viewShare['activeTemplateTrue'] = activeTemplate(true);
        $viewShare['language'] = Language::all();
        $viewShare['emptyMessage'] = 'Data not found';
        view()->share($viewShare);

        view()->composer('admin.partials.sidenav', function ($view) {
            $view->with([
                'bannedUsersCount'           => User::banned()->count(),
                'emailUnverifiedUsersCount' => User::emailUnverified()->count(),
                'mobileUnverifiedUsersCount'   => User::mobileUnverified()->count(),
                'pendingTicketCount'         => SupportTicket::whereIN('status', [Status::TICKET_OPEN, Status::TICKET_REPLY])->count(),
                'pendingDepositsCount'    => Deposit::pending()->count(),
            ]);
        });

        view()->composer('admin.partials.topnav', function ($view) {
            $view->with([
                'adminNotifications'=>AdminNotification::where('is_read',Status::NO)->with('user')->orderBy('id','desc')->take(10)->get(),
                'adminNotificationCount'=>AdminNotification::where('is_read',Status::NO)->count(),
            ]);
        });

        view()->composer('partials.seo', function ($view) {
            $seo = Frontend::where('data_keys', 'seo.data')->first();
            $view->with([
                'seo' => $seo ? $seo->data_values : $seo,
            ]);
        });

        if($general->force_ssl){
            \URL::forceScheme('https');
        }

        Paginator::useBootstrapFour();
    }
}
 
Reacted by:
Anyone who got this (not nulled or nulled) 👇 👇 👇 send we will try our best to null it ;)

Version 2.2 – 03rd September 2023​

  • [ADD] BTCPay payment gateway
  • [ADD] NowPayments payment gateway
  • [ADD] Checkout payment gateway
  • [ADD] TwoCheckout payment gateway
  • [ADD] Group basis user notification system
  • [ADD] Generated full language key of the system
  • [ADD] Update uploader
  • [ADD] Smart cron manager
  • [ADD] Automatic database creation in installer
  • [FIX] Authorize gateway sandbox issue
  • [PATCH] Gateway credentials security
 
𝕭𝖎𝖑𝖑𝕸𝖆𝖗𝖛𝖎𝖑𝖑𝖔 's signature
Reacted by:
  • Like
Reactions: Vinod
I was fix it @dkartik
--------------------------
Post automatically merged:

PHP:
<?php

namespace App\Providers;

use App\Models\AdminNotification;
use App\Models\Deposit;
use App\Models\Frontend;
use App\Models\Language;
use App\Models\GeneralSetting;
use App\Models\SupportTicket;
use App\Models\User;
use Illuminate\Support\ServiceProvider;
use Illuminate\Pagination\Paginator;
use App\Constants\Status;

class AppServiceProvider extends ServiceProvider
{
    /**
     * Register any application services.
     *
     * @return void
     */
    public function register()
    {

    }

    /**
     * Bootstrap any application services.
     *
     * @return void
     */
    public function boot()
    {
                $general = GeneralSetting::first();

        $activeTemplate = activeTemplate();

        $viewShare['general'] = $general;
        $viewShare['activeTemplate'] = $activeTemplate;
        $viewShare['activeTemplateTrue'] = activeTemplate(true);
        $viewShare['language'] = Language::all();
        $viewShare['emptyMessage'] = 'Data not found';
        view()->share($viewShare);

        view()->composer('admin.partials.sidenav', function ($view) {
            $view->with([
                'bannedUsersCount'           => User::banned()->count(),
                'emailUnverifiedUsersCount' => User::emailUnverified()->count(),
                'mobileUnverifiedUsersCount'   => User::mobileUnverified()->count(),
                'pendingTicketCount'         => SupportTicket::whereIN('status', [Status::TICKET_OPEN, Status::TICKET_REPLY])->count(),
                'pendingDepositsCount'    => Deposit::pending()->count(),
            ]);
        });

        view()->composer('admin.partials.topnav', function ($view) {
            $view->with([
                'adminNotifications'=>AdminNotification::where('is_read',Status::NO)->with('user')->orderBy('id','desc')->take(10)->get(),
                'adminNotificationCount'=>AdminNotification::where('is_read',Status::NO)->count(),
            ]);
        });

        view()->composer('partials.seo', function ($view) {
            $seo = Frontend::where('data_keys', 'seo.data')->first();
            $view->with([
                'seo' => $seo ? $seo->data_values : $seo,
            ]);
        });

        if($general->force_ssl){
            \URL::forceScheme('https');
        }

        Paginator::useBootstrapFour();
    }
}
bro do look your code ....... we will stuck on activate page after installation :cool: like i said it look this 👇

Capture.JPG
 
𝕭𝖎𝖑𝖑𝕸𝖆𝖗𝖛𝖎𝖑𝖑𝖔 's signature
Reacted by:
see it this part
/core/vendor/laramin/utility/src/Controller/UtilityController.php
 
Reacted by:
okay ... okay i will remove some function and try to do something to see what will happen ;)
see it this part
/core/vendor/laramin/utility/src/Controller/UtilityController.php
 
𝕭𝖎𝖑𝖑𝕸𝖆𝖗𝖛𝖎𝖑𝖑𝖔 's signature
Reacted by:
𝕭𝖎𝖑𝖑𝕸𝖆𝖗𝖛𝖎𝖑𝖑𝖔 's signature
Reacted by:
raz0r 's signature
Top