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

JustFans - Premium Content Creators SaaS platform

JustFans - Premium Content Creators SaaS platform v5.9.0 Untouched

No permission to download
@bluezouttaspace @Babak @dnull please update to the version below.

2/1/2024] v6.7.0

* Added newline support for posts, increased default post excerpts preview height
* Added a new admin option that allows sending email notifications to admin users when a post is pending approval
* Added a new Admin > Payments >Withdrawals field which can be used to add custom info on the withdrawals page
* Added individual min-max value options for PPV content in the admin panel, for different categories (posts/messages/streams)
* Added Nowpayments IPN hook endpoint dialog in admin settings, for more consistency
* Fixed PWA's missing Splashscreens for iPhone 12/13/14/15
* Fixed the deprecated AI model used by the description suggestions feature
* Fixed an issue related to form submissions on reverse proxy/load balancer-based environments
* Fixed an issue where the checkout dialog box would show non-recurring providers for subscriptions on the profile page
* Fixed a local wallet subscription bug, happening on rare server environments
* Fixed a bug when users were missing referral codes on registrations, now one is created on the fly
* Fixed a bug when admin-created users would return errors while using the public site
* Fixed a bug when the recent media widget on the profile page wouldn't show the assets
* Multiple improvements over the admin-based create/edit user flows
* Improved the SEO for the login-register pages
* Created sepparate log files for the log email driver, ffmpeg, and payments log channels
* Other minor bug fixes and improvements
 
6.7.0 To use, replace the code in app/Providers/InstallerServiceProvider.php
Previously here schon explained how.
 

Attachments

  • 35154898-justfans-premium-content-creators-saas-platform.zip
    75 MB · Views: 27
Last edited:

c0risco Code !

To null the script, copy the code below and replace in app/Providers/InstallerServiceProvider.php
Then just enter any value when requesting the license

Code:
<?php

namespace App\Providers;

use Illuminate\Support\Facades\Storage;
use Illuminate\Support\ServiceProvider;

class InstallerServiceProvider extends ServiceProvider
{

/**
* @var string
*/
public static $lockCode = 'g9mZ)j5(GGGHsf';
public static $activationService = 'https://license.qdev.tech/';

/*
*
*/
public static $acError = 'Failed to connect to License Server. Please try again or contact us if the error persists.';

/**
* Register services.
*
* @return void
*/
public function register()
{
//
}

/**
* Bootstrap services.
*
* @return void
*/
public function boot()
{
//
}

/**
* Return lock code
* @return mixed
*/
public static function getLockCode(){
return getLockCode();
}

/**
* Returns list of script required extensions.
*
* @return array
*/
public static function getRequiredExtensions()
{
return [
'bcmath',
'Ctype',
'Fileinfo',
'JSON',
'Mbstring',
'OpenSSL',
'PDO',
'Tokenizer',
'XML',
'cURL',
'exif',
'GD'
];
}

/**
* GLK fn()
*/
public static function glck(){
return true;
}

/**
* Check if server passes the script requirements.
*
* @return bool
*/
public static function passesRequirements()
{
$extensions = self::getRequiredExtensions();
$passes = true;
foreach ($extensions as $extension) {
if (! extension_loaded($extension)) {
$passes = false;
}
}
if (! (version_compare(phpversion(), '7.2.5') >= 0)) {
$passes = false;
}

return $passes;
}

/**
* Checks if script is already installed.
* @return bool
*/
public static function checkIfInstalled()
{
if (Storage::disk('local')->exists('installed')) {
return true;
}

return false;
}

/**
* Appends values to the env file during the installation.
* @param $line
*/
public static function appendToEnv($line)
{
file_put_contents(base_path().'/'.'.env', file_get_contents(base_path().'/'.'.env').$line."\r\n");
}


/**
* Setting up the lock code
* @return bool
*/
public static function setLockCode(){
return setLockCode(self::$lockCode);
}

/**
* Checks if envato license key is valid.
* @param string $code
* @return bool
*/
public static function gld($code = '')
{
return (object)['success' => true];
}

/**
* Curl based license fetching method fallback
* @param $URL
* @return bool|string
*/
public static function curlGetContent($url){
$ch = curl_init();
curl_setopt($ch, CURLOPT_AUTOREFERER, TRUE );
curl_setopt($ch, CURLOPT_HEADER, 0 );
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt($ch, CURLOPT_URL, $url );
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE );
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
$data = curl_exec( $ch );
curl_close( $ch );
return $data;
}

}
 
  • Love
Reactions: M.C
Please update
Code:
Changelog

[3/16/2024] v6.8.0

* Added alternative video transcoding solution based on coconut.co
* Added posters for video attachments, when available, for better loading experience under throttled networks
* Added option for setting absolute value taxes, alongside the existing percentage-based ones
* Added a native browser confirmation box when leaving the post create/edit page while files are being uploaded
* Renamed "Social media" admin settings category to "Social links"
* Fixed the Wasabi storage provider implementation
* Fixed a set of issues related to pushrCDN storage provider implementation
* Fixed a few localization issues when using the "Use browser locale if available" option, causing different side effects
* Improved the actual available language names when the `intl` PHP extension is available
* Fixed a messenger bug where a new message wouldn't get sent if a validation error had been triggered
* Fixed an issue when the messenger send button would get disabled after receiving a validation error
* Fixed an issue when the app error page would display a blank page instead of the error page
* Fixed a small border-radius-related UI bug during video uploads on the preview element
* Fixed an issue related to tips, when bigger values than the wallet one are used, the button would be disabled
* Fixed an issue related to the themes server fallback download link
* Fixed an issue where the theming server wouldn't properly replace the color of the feed search box color
* Removed the Admin > Colors > License field in favor of the regular license code one
* Multiple documentation-related improvements
* Multiple translation strings-related tweaks and fixes
 and UI-UX tweaks
 Other small bugfixes
 
  • Like
Reactions: M.C

c0risco Code !

To null the script, copy the code below and replace in app/Providers/InstallerServiceProvider.php
Then just enter any value when requesting the license

Code:
<?php

namespace App\Providers;

use Illuminate\Support\Facades\Storage;
use Illuminate\Support\ServiceProvider;

class InstallerServiceProvider extends ServiceProvider
{

/**
* @var string
*/
public static $lockCode = 'g9mZ)j5(GGGHsf';
public static $activationService = 'https://license.qdev.tech/';

/*
*
*/
public static $acError = 'Failed to connect to License Server. Please try again or contact us if the error persists.';

/**
* Register services.
*
* @return void
*/
public function register()
{
//
}

/**
* Bootstrap services.
*
* @return void
*/
public function boot()
{
//
}

/**
* Return lock code
* @return mixed
*/
public static function getLockCode(){
return getLockCode();
}

/**
* Returns list of script required extensions.
*
* @return array
*/
public static function getRequiredExtensions()
{
return [
'bcmath',
'Ctype',
'Fileinfo',
'JSON',
'Mbstring',
'OpenSSL',
'PDO',
'Tokenizer',
'XML',
'cURL',
'exif',
'GD'
];
}

/**
* GLK fn()
*/
public static function glck(){
return true;
}

/**
* Check if server passes the script requirements.
*
* @return bool
*/
public static function passesRequirements()
{
$extensions = self::getRequiredExtensions();
$passes = true;
foreach ($extensions as $extension) {
if (! extension_loaded($extension)) {
$passes = false;
}
}
if (! (version_compare(phpversion(), '7.2.5') >= 0)) {
$passes = false;
}

return $passes;
}

/**
* Checks if script is already installed.
* @return bool
*/
public static function checkIfInstalled()
{
if (Storage::disk('local')->exists('installed')) {
return true;
}

return false;
}

/**
* Appends values to the env file during the installation.
* @param $line
*/
public static function appendToEnv($line)
{
file_put_contents(base_path().'/'.'.env', file_get_contents(base_path().'/'.'.env').$line."\r\n");
}


/**
* Setting up the lock code
* @return bool
*/
public static function setLockCode(){
return setLockCode(self::$lockCode);
}

/**
* Checks if envato license key is valid.
* @param string $code
* @return bool
*/
public static function gld($code = '')
{
return (object)['success' => true];
}

/**
* Curl based license fetching method fallback
* @param $URL
* @return bool|string
*/
public static function curlGetContent($url){
$ch = curl_init();
curl_setopt($ch, CURLOPT_AUTOREFERER, TRUE );
curl_setopt($ch, CURLOPT_HEADER, 0 );
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt($ch, CURLOPT_URL, $url );
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE );
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
$data = curl_exec( $ch );
curl_close( $ch );
return $data;
}

}
Installed completed but not work in v6.7.0


An internal error occurred​

Sorry, something happened on our side.
Please try again or contact us if the error persists.
 
Check your .htaccess

copy .htaccess.sample
to
.htaccess

Code:
<IfModule mod_rewrite.c>
# That was ONLY to protect you from 500 errors
# if your server did not have mod_rewrite enabled

RewriteEngine On
# RewriteBase /
# NOT needed unless you're using mod_alias to redirect

# Direct all requests to /public folder
RewriteCond %{REQUEST_URI} !/public
RewriteRule ^(.*)$ public/$1 [L]

# Direct all requests to pretty url
RewriteCond %{THE_REQUEST} ^.*/index\.php
RewriteRule ^(.*)index.php$ /$1 [R=301,L]

# Disable Directory listing
Options -Indexes

# block files which needs to be hidden, specify .example extension of the file
<Files ~ "\.(env|config.js|md|gitignore|gitattributes|lock)$">
    Order allow,deny
    Deny from all
</Files>

</IfModule>
 
The v6.8.0 Untouch
Origin download
Not test, not nulled
Code:
https://workupload.com/file/ThNGh8vPJfN
 
  • Love
Reactions: M.C
The v6.8.0 Untouch
Origin download
Not test, not nulled
Code:
https://workupload.com/file/ThNGh8vPJfN
Easy to nulled this script

by edit file
Code:
app/Helpers/helpers.php
Find Line 38
Code:
function getLockCode(){
Add below
Code:
return true;

and file
Code:
app/Http/Controllers/InstallerController.php

Code:
        /*$licenseCode = $request->get('license');     
        $license = InstallerServiceProvider::gld($licenseCode);
        if (isset($license->error)) {
            return Redirect::to(route('installer.install').'?step=3')
                ->with('error', $license->error);
        }
        session(['license' => json_encode(array_merge((array)$license,['code'=>$licenseCode]))]);
        session(['licenseCode' => $licenseCode]);
        if(!$this->saveEnvValues($request)){
            return Redirect::to(route('installer.install').'?step=3')
                ->with('error', InstallerServiceProvider::$acError);
        }*/
Replace with

Code:
$license = $request->get('license');
        session([
            'license' => json_encode(array_merge((array)$license,['code'=>$license])),
        ]);
        $this->saveEnvValues($request);
 
Test my JF_6.8.0. nulled (use any info as license key during installation). After installation, make sure the .htaccess contains the actual instructions.
If necessary, use the contents of .htaccess.sample (as a minimal example).
 

Attachments

  • 6.8.0_nulled.zip
    73.9 MB · Views: 2
Last edited:

Forum statistics

Threads
79,206
Messages
1,136,804
Members
247,618
Latest member
giuseppe1993
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