• 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"

MultiSaas - Multi-Tenancy Multipurpose Website Builder (Saas)- Untouched

MultiSaas - Multi-Tenancy Multipurpose Website Builder (Saas)- Untouched 2.2.3

No permission to download
Hello friends.

Does anyone have the password for the compressed file?

If you share it with me, I would really appreciate it.
Hi there,

The password is provided in the Updates tab at the top of the thread.
But you are going to need to own 1 resource to be able to access it.
 
  • Like
Reactions: Judge
I uploaded the code but whenever I try to access the page, there is an aoutmated download. The site wants to download something. Can you help me?

Facing the problem any solution @Judge. Any help is highly appreciated.
 
I uploaded the code but whenever I try to access the page, there is an aoutmated download. The site wants to download something. Can you help me?

Facing the problem any solution @Judge. Any help is highly appreciated.
Do you mean your website serves you a .PHP file for download? or something else?
 
Code:
<?php

use Illuminate\Contracts\Http\Kernel;
use Illuminate\Http\Request;

define('LARAVEL_START', microtime(true));


if(!file_exists('core/.env')){
    echo 'Please install the script first, by yourdomain.com/install wizard <br>';
   if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on'){
        $url = "https://";

   }else{
        $url = "http://";
   }
   // Append the host(domain name, ip) to the URL.
   $url.= $_SERVER['HTTP_HOST'];
   // Append the requested resource location to the URL
   $url.= $_SERVER['REQUEST_URI'];
   header("Location: ".$url.'/install/index.php'); 
   exit;
}


/*
|--------------------------------------------------------------------------
| Check If The Application Is Under Maintenance
|--------------------------------------------------------------------------
|
| If the application is in maintenance / demo mode via the "down" command
| we will load this file so that any pre-rendered content can be shown
| instead of starting the framework, which could cause an exception.
|
*/

if (file_exists(__DIR__.'/core/storage/framework/maintenance.php')) {
    require __DIR__.'/core/storage/framework/maintenance.php';
}

/*
|--------------------------------------------------------------------------
| Register The Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader for
| this application. We just need to utilize it! We'll simply require it
| into the script here so we don't need to manually load our classes.
|
*/

require __DIR__.'/core/vendor/autoload.php';

/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request using
| the application's HTTP kernel. Then, we will send the response back
| to this client's browser, allowing them to enjoy our application.
|
*/

$app = require_once __DIR__.'/core/bootstrap/app.php';

$kernel = $app->make(Kernel::class);

$response = $kernel->handle(
    $request = Request::capture()
)->send();

$kernel->terminate($request, $response);
Do you mean your website serves you a .PHP file for download? or something else?
yes this one.
 
Code:
<?php

use Illuminate\Contracts\Http\Kernel;
use Illuminate\Http\Request;

define('LARAVEL_START', microtime(true));


if(!file_exists('core/.env')){
    echo 'Please install the script first, by yourdomain.com/install wizard <br>';
   if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on'){
        $url = "https://";

   }else{
        $url = "http://";
   }
   // Append the host(domain name, ip) to the URL.
   $url.= $_SERVER['HTTP_HOST'];
   // Append the requested resource location to the URL
   $url.= $_SERVER['REQUEST_URI'];
   header("Location: ".$url.'/install/index.php'); 
   exit;
}


/*
|--------------------------------------------------------------------------
| Check If The Application Is Under Maintenance
|--------------------------------------------------------------------------
|
| If the application is in maintenance / demo mode via the "down" command
| we will load this file so that any pre-rendered content can be shown
| instead of starting the framework, which could cause an exception.
|
*/

if (file_exists(__DIR__.'/core/storage/framework/maintenance.php')) {
    require __DIR__.'/core/storage/framework/maintenance.php';
}

/*
|--------------------------------------------------------------------------
| Register The Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader for
| this application. We just need to utilize it! We'll simply require it
| into the script here so we don't need to manually load our classes.
|
*/

require __DIR__.'/core/vendor/autoload.php';

/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request using
| the application's HTTP kernel. Then, we will send the response back
| to this client's browser, allowing them to enjoy our application.
|
*/

$app = require_once __DIR__.'/core/bootstrap/app.php';

$kernel = $app->make(Kernel::class);

$response = $kernel->handle(
    $request = Request::capture()
)->send();

$kernel->terminate($request, $response);

yes this one.
When instead of parsing the PHP file, the server sends you the source to download, it usually either means that you don't have PHP installed or you have a problem in your handler settings.
If you are using cPanel, usually a simple switch between PHP versions solves the problem.
 
Tried it, not working. I am using shared hosting, can that be the problem?
When instead of parsing the PHP file, the server sends you the source to download, it usually either means that you don't have PHP installed or you have a problem in your handler settings.
If you are using cPanel, usually a simple switch between PHP versions solves the problem.
 
Tried it, not working. I am using shared hosting, can that be the problem?
I don't think the shared hosting can be the problem.
cPanel adds a few lines for the PHP handler to the .htaccess file for your domain and if they are not correct, you usually face the exact same issue that you are having. I was hoping changing the PHP version might replace and fix them...

Maybe try this step-by-step guide by cPanel :


the part that it says to move your .htaccess file by using the mv command, just download the htaccess file to your computer as a backup and remove it from your host.
And then at the end re-add necessary lines from the old .htaccess to the new one that cPanel will make.
 
  • Love
Reactions: Thestun
have 2 check at my end.
on my vps server
the script is up and loads the 1st page (home) but as soon as I click on any other link, it throws me to 404 error...
 
I don't think the shared hosting can be the problem.
cPanel adds a few lines for the PHP handler to the .htaccess file for your domain and if they are not correct, you usually face the exact same issue that you are having. I was hoping changing the PHP version might replace and fix them...

Maybe try this step-by-step guide by cPanel :


the part that it says to move your .htaccess file by using the mv command, just download the htaccess file to your computer as a backup and remove it from your host.
And then at the end re-add necessary lines from the old .htaccess to the new one that cPanel will make.

Hi @This2ShallPass , much thankful to you. It worked!! for others copy paste this code in the main .htaccess file & you should be able to use it in shared hosting.

PHP:
<IfModule mod_rewrite.c>[/FONT]
    <IfModule mod_negotiation.c>
        Options -MultiViews -Indexes
    </IfModule>

    RewriteEngine On

    # Handle Authorization Header
    RewriteCond %{HTTP:Authorization} .
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

    # Redirect Trailing Slashes If Not A Folder...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_URI} (.+)/$
    RewriteRule ^ %1 [L,R=301]

    # Handle Front Controller...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [L]
</IfModule>
 
hi,
VPS - NGINX running...
checked everything, but no good.
home page displays perfect.
but as soon as I click on any other internal link, get a 404 error.
in error log it says....
website.com/pricing-plan" failed (2: No such file or directory),
any help?

also needed to know, thou the script is installed, the install folder is still there, and when I again try to load the install script it starts... 1ce installed should I delete the install folder?
 
Judge updated MultiSaas - Multi-Tenancy Multipurpose Website Builder (Saas)-Nulled by phpCore with a new update entry:

MULTISASS | MULTI-TENANCY MULTIPURPOSE WEBSITE BUILDER (SASS)-1.2.2- Untouched

Date: 1st July 2023

Version: 1.2.2


[added] New barber shop theme (Feature Added)
[added] Appointment & Booking System (Feature Added)
[added] Tenant Instruction system (Feature Added)
[added] Demo data settings of appointment and page builder (Donation home)
[added] Theme set and import system (Feature Added)
[added] Bank transfer and manual payment separated (Feature added)
[added] Plugin Manage (Feature Added)
[Fixed] Bug Fixed


Read the rest of this update entry...
 
the title says nulled by php core v1.2.2
but cant find v1.2.2 nulled.
is it a mistake or ?
 
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