• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

TongTang - Laravel Short Video Sharing Platform (Our code is retail all nullsite copy from babiato )

TongTang - Laravel Short Video Sharing Platform (Our code is retail all nullsite copy from babiato ) 23 March 21

No permission to download

White Devil

Well-known member
Trusted Seller
Trusted Uploader
Banned User
Jan 6, 2019
3,031
6,200
120
world
babiato.co
White Devil submitted a new resource:

TongTang - Laravel Short Video Sharing Platform (Our code is retail all nullsite copy from babiato ) - TongTang - Laravel Short Video Sharing Platform

Group 2 (1).png


ongTang is the best way to start your own short video based website! TongTang is fast, secured, and it will be

regularly updated. This amazing script was written using the amazing Laravel PHP framework. The script has high

performance, responsive & flexible design.FRONTEND URL
https://tongtang.lpress.xyz/ADMIN URL
https://tongtang.lpress.xyz/loginCREDENTIALS
Email...

Read more about this resource...
 
can you update, i see
Last Update3 January 21
 
For nulling, replace this code in script/app/Http/Controllers/Installer/InstallerController.php
PHP:
<?php

namespace App\Http\Controllers\Installer;

use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use File;
use Illuminate\Support\Str;
use DB;
use Illuminate\Support\Facades\Http;

class InstallerController extends Controller
{
    public function index()
    {
        try {
          DB::connection()->getPdo();
          if(DB::connection()->getDatabaseName()){
            return redirect()->route(404);
          }else{
            return view('installer.index');
          }
        } catch (\Exception $e) {
            return view('installer.index');
        }
    }

    public function configuration()
    {
        try {
          DB::connection()->getPdo();
          if(DB::connection()->getDatabaseName()){
            return redirect()->route(404);
          }else{
            return view('installer.configuration');
          }
        } catch (\Exception $e) {
            return view('installer.configuration');
        }
    }

    public function complete()
    {
        return view('installer.complete');
    }


     public function send(Request $request)
    {

        $APP_NAME = Str::slug($request->app_name);
        $PUSHER_APP_KEY = $request->PUSHER_APP_KEY;
        $PUSHER_APP_CLUSTER = $request->PUSHER_APP_CLUSTER;
        $txt ="APP_NAME=".$APP_NAME."
APP_ENV=local
APP_KEY=base64:kZN2g9Tg6+mi1YNc+sSiZAO2ljlQBfLC3ByJLhLAUVc=
APP_DEBUG=true
APP_URL=".$request->app_url."
LOG_CHANNEL=stack\n
DB_CONNECTION=mysql
DB_HOST=".$request->db_host."
DB_PORT=3306
DB_DATABASE=".$request->db_name."
DB_USERNAME=".$request->db_user."
DB_PASSWORD=".$request->db_pass."\n
BROADCAST_DRIVER=log
CACHE_DRIVER=array
QUEUE_CONNECTION=sync
SESSION_DRIVER=file
SESSION_LIFETIME=120\n
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379\n
MAIL_DRIVER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=
MAIL_PASSWORD=
MAIL_ENCRYPTION=tls
MAIL_FROM_ADDRESS=
MAIL_FROM_NAME=\n
PUSHER_APP_ID=
PUSHER_APP_KEY=
PUSHER_APP_SECRET=
PUSHER_APP_CLUSTER=mt1\n
MIX_PUSHER_APP_KEY=
MIX_PUSHER_APP_CLUSTER=\n
PAYPAL_ID=
       ";
       File::put(base_path('.env'),$txt);
       return "Sending Credentials";
    }


    public function check()
    {
        try {
          DB::connection()->getPdo();
            if(DB::connection()->getDatabaseName()){
                return "Database Installing";
            }else{
                return false;
            }
        } catch (\Exception $e) {
            return false;
        }
        
    }

    public function verify_check(Request $request)
    {
        return redirect()->route('install.configuration');
        
    }

    public function verify()
    {
        return view('installer.verify');
    }

    public function migrate()
    {
        ini_set('max_execution_time', '0');
        \Artisan::call('migrate:fresh');
        return "Demo Importing";
    }

    public function seed()
    {
        ini_set('max_execution_time', '0');
        \Artisan::call('db:seed');
        return "Congratulations! Your site is ready";
    }
}


Enjoy! 😉
 
For nulling, replace this code in script/app/Http/Controllers/Installer/InstallerController.php
PHP:
<?php

namespace App\Http\Controllers\Installer;

use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use File;
use Illuminate\Support\Str;
use DB;
use Illuminate\Support\Facades\Http;

class InstallerController extends Controller
{
    public function index()
    {
        try {
          DB::connection()->getPdo();
          if(DB::connection()->getDatabaseName()){
            return redirect()->route(404);
          }else{
            return view('installer.index');
          }
        } catch (\Exception $e) {
            return view('installer.index');
        }
    }

    public function configuration()
    {
        try {
          DB::connection()->getPdo();
          if(DB::connection()->getDatabaseName()){
            return redirect()->route(404);
          }else{
            return view('installer.configuration');
          }
        } catch (\Exception $e) {
            return view('installer.configuration');
        }
    }

    public function complete()
    {
        return view('installer.complete');
    }


     public function send(Request $request)
    {

        $APP_NAME = Str::slug($request->app_name);
        $PUSHER_APP_KEY = $request->PUSHER_APP_KEY;
        $PUSHER_APP_CLUSTER = $request->PUSHER_APP_CLUSTER;
        $txt ="APP_NAME=".$APP_NAME."
APP_ENV=local
APP_KEY=base64:kZN2g9Tg6+mi1YNc+sSiZAO2ljlQBfLC3ByJLhLAUVc=
APP_DEBUG=true
APP_URL=".$request->app_url."
LOG_CHANNEL=stack\n
DB_CONNECTION=mysql
DB_HOST=".$request->db_host."
DB_PORT=3306
DB_DATABASE=".$request->db_name."
DB_USERNAME=".$request->db_user."
DB_PASSWORD=".$request->db_pass."\n
BROADCAST_DRIVER=log
CACHE_DRIVER=array
QUEUE_CONNECTION=sync
SESSION_DRIVER=file
SESSION_LIFETIME=120\n
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379\n
MAIL_DRIVER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=
MAIL_PASSWORD=
MAIL_ENCRYPTION=tls
MAIL_FROM_ADDRESS=
MAIL_FROM_NAME=\n
PUSHER_APP_ID=
PUSHER_APP_KEY=
PUSHER_APP_SECRET=
PUSHER_APP_CLUSTER=mt1\n
MIX_PUSHER_APP_KEY=
MIX_PUSHER_APP_CLUSTER=\n
PAYPAL_ID=
       ";
       File::put(base_path('.env'),$txt);
       return "Sending Credentials";
    }


    public function check()
    {
        try {
          DB::connection()->getPdo();
            if(DB::connection()->getDatabaseName()){
                return "Database Installing";
            }else{
                return false;
            }
        } catch (\Exception $e) {
            return false;
        }
       
    }

    public function verify_check(Request $request)
    {
        return redirect()->route('install.configuration');
       
    }

    public function verify()
    {
        return view('installer.verify');
    }

    public function migrate()
    {
        ini_set('max_execution_time', '0');
        \Artisan::call('migrate:fresh');
        return "Demo Importing";
    }

    public function seed()
    {
        ini_set('max_execution_time', '0');
        \Artisan::call('db:seed');
        return "Congratulations! Your site is ready";
    }
}


Enjoy! 😉
is this safe for playstore ?
 
White Devil updated TongTang - Laravel Short Video Sharing Platform (Our code is retail all nullsite copy from babiato ) with a new update entry:

TongTang - Laravel Short Video Sharing Platform

NB: DONT ASK PASSWORD UNLESS
1. U DONT HAVE UR OWN RESOURSES FROM CATEGORY (PHP/ANDROID) NOT LIKE EVANTO/VIDEOHIVE OR MOD APK OR ANY TEMPLATES
2. MIN 9 RESOURSES IS REGURIED
3. YOU SHOULD POST REGULARLY DONT SIT IDLE TO GET PASSWORD

4. FOR THOSE WHO HAVE PAST 9 RESOURSES TO GET THIS IT WONT BE COUNTBLE AGAIN 9 IS REQUIRED FROM DATE OF UPDATE


23 March 21

Read the rest of this update entry...
 
  • Like
Reactions: dgdfsdsdsd
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock