MonsterTools: The All-in-One SEO & Web Toolkit, like a Swiss Army Knife

MonsterTools: The All-in-One SEO & Web Toolkit, like a Swiss Army Knife v1.0.0

No permission to download

tuton012

Strive for progress, not perfection
Babiato Lover
Trusted Uploader
May 23, 2019
1,604
2,057
120
Near You
tuton012 submitted a new resource:

MonsterTools: The All-in-One SEO & Web Toolkit, like a Swiss Army Knife - Download free MonsterTools: The All-in-One SEO & Web Toolkit, like a Swiss Army Knife Nulled

ntroducing “Monster Tools” – the ultimate web application for all your digital needs! This innovative code offers a comprehensive suite of tools for everyday use, SEO optimization, Image Optimization, Developer Tools, Website Management Tools, and more. With Monster Tools, you can create your very own web application that streamlines your online operations, increases your visibility, and takes your business to the next level.

Transform your website into a revenue-generating machine with...

Read more about this resource...
 

LOVE_BABAK

New member
Jan 20, 2023
9
1
3
Before you continue with installation we need to verify your license. Please signin with Envato for validation.
 

rksharma

New member
Feb 9, 2023
3
3
3

Hi, @rksharma can you share how bypass license?​

open website\app\Install and replace this code in VerifyPurchase.php


Code:
<?php

namespace App\Install;

use Illuminate\Support\Facades\URL;
use Illuminate\Support\Facades\Request;
use Illuminate\Support\Facades\Storage;
use Illuminate\Support\Facades\Redirect;

class VerifyPurchase
{
    protected $provider = 'https://verify.bcstatic.com/api-provider';
    protected $product = 'monster-tools';
    protected $key_path;

    public function __construct()
    {
        if (!isset($this->provider)) {
            abort(401, 'Something went wrong, please contact support.');
        }

        $this->key_path = storage_path('app/.' . $this->product);
    }

    public function satisfied()
    {
        return true;
        if (file_exists($this->key_path)) {
            return true;
        }

        return false;
    }

    public function authorize()
    {
        $authorized = Request::input('authorized');
        $message = Request::input('message');
        $authorized_key = Request::input('authorized_key', null);

        if ($authorized === 'success' && $authorized_key) {
            return $this->generate_key($authorized_key, $message);
        } else {
            return redirect('/install/verify')->withErrors($message);
        }
    }

    public function login()
    {
        $redirect = $this->provider . '?item=' . $this->product . '&return_uri=' . urlencode(URL::route('verify.return'));

        return Redirect::away($redirect);
    }

    protected function generate_key($code, $message)
    {
        if (!$this->satisfied()) {
            $filename = '.' . $this->product;
            Storage::disk('local')->put($filename, $code);
        }

        return redirect('/install/verify')->withSuccess($message);
    }
}
 
  • Like
Reactions: LOVE_BABAK

zabi123

New member
Oct 24, 2020
8
0
1
open website\app\Install and replace this code in VerifyPurchase.php


Code:
<?php

namespace App\Install;

use Illuminate\Support\Facades\URL;
use Illuminate\Support\Facades\Request;
use Illuminate\Support\Facades\Storage;
use Illuminate\Support\Facades\Redirect;

class VerifyPurchase
{
    protected $provider = 'https://verify.bcstatic.com/api-provider';
    protected $product = 'monster-tools';
    protected $key_path;

    public function __construct()
    {
        if (!isset($this->provider)) {
            abort(401, 'Something went wrong, please contact support.');
        }

        $this->key_path = storage_path('app/.' . $this->product);
    }

    public function satisfied()
    {
        return true;
        if (file_exists($this->key_path)) {
            return true;
        }

        return false;
    }

    public function authorize()
    {
        $authorized = Request::input('authorized');
        $message = Request::input('message');
        $authorized_key = Request::input('authorized_key', null);

        if ($authorized === 'success' && $authorized_key) {
            return $this->generate_key($authorized_key, $message);
        } else {
            return redirect('/install/verify')->withErrors($message);
        }
    }

    public function login()
    {
        $redirect = $this->provider . '?item=' . $this->product . '&return_uri=' . urlencode(URL::route('verify.return'));

        return Redirect::away($redirect);
    }

    protected function generate_key($code, $message)
    {
        if (!$this->satisfied()) {
            $filename = '.' . $this->product;
            Storage::disk('local')->put($filename, $code);
        }

        return redirect('/install/verify')->withSuccess($message);
    }
}
Screenshot 2023-02-10 150426.png

Installed but no icon or image visible, also i have to add /public/index.php in order to access the site with my domain. on the domain like xyz.com its showing 403 but xyz.com/public/index.php working without any image
 

Kenny

New member
May 6, 2019
1
0
1
Upload the below sql after you have created database ,username and password then paste the following in your .env file:
APP_NAME="Monster Tools"
APP_ENV=local
APP_KEY=base64:QnfTEO6KC5Yugz+Z4g5gVe8z8S8d0zHD6BEyF3MFDy4=
APP_DEBUG=false
APP_URL=https://localhost
APP_INSTALLED=true
APP_VERSION=1.0.0
APP_ADMIN_PREFIX=admin
LOG_CHANNEL=stack
LOG_DEPRECATIONS_CHANNEL=null
LOG_LEVEL=debug
IGNITION_EDITOR=vscode
DEBUGBAR_ENABLED=false
SYSTEM_TIMEZONE=America/Tijuana
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=monster-seo
DB_USERNAME=monster-seo
DB_PASSWORD=monster-seo
BROADCAST_DRIVER=log
CACHE_DRIVER=file
QUEUE_CONNECTION=sync
SESSION_DRIVER=file
SESSION_LIFETIME=120
FILESYSTEM_DRIVER=public
FILESYSTEM_DISK="${FILESYSTEM_DRIVER}"
UPLOADER_TEMP_DISK=local
UPLOADER_TEMP_PATH=temp
PUBLIC_FILES_DISK="${FILESYSTEM_DRIVER}"
PUBLIC_FILES_PATH=uploads
UPLOADER_CHUNKS_PATH=uploads/chunks
MEMCACHED_HOST=127.0.0.1
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
MAIL_MAILER=sendmail
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=587
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=tls
MAIL_FROM_ADDRESS=[email protected]
MAIL_FROM_NAME="${APP_NAME}"
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=us-east-1
AWS_BUCKET=
AWS_USE_PATH_STYLE_ENDPOINT=false
WAS_ACCESS_KEY_ID=
WAS_SECRET_ACCESS_KEY=
WAS_DEFAULT_REGION=us-east-1
WAS_BUCKET=
PUSHER_APP_ID=
PUSHER_APP_KEY=
PUSHER_APP_SECRET=
PUSHER_HOST=
PUSHER_PORT=443
PUSHER_SCHEME=https
PUSHER_APP_CLUSTER=mt1
VITE_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
VITE_PUSHER_HOST="${PUSHER_HOST}"
VITE_PUSHER_PORT="${PUSHER_PORT}"
VITE_PUSHER_SCHEME="${PUSHER_SCHEME}"
VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
FRONT_THEME=canvas
FACEBOOK_APP_ID=
FACEBOOK_REDIRECT=
STRIPE_KEY=
STRIPE_SECRET=
BRIANTREE_MODE=ture
BRIANTREE_MERCHANT_ID=
BRIANTREE_PUBLIC_KEY=
BRIANTREE_PRIVATE_KEY=
PAYPAL_MODE=sandbox
PAYPAL_SANDBOX_CLIENT_ID=
PAYPAL_SANDBOX_CLIENT_SECRET=
PAYPAL_LIVE_CLIENT_ID=
PAYPAL_LIVE_CLIENT_SECRET=
PAYPAL_LIVE_APP_ID=
PAYPAL_VALIDATE_SSL=TRUE
PAYPAL_NOTIFY_URL=
 

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