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

Dizzy Support Creators Content Script

Dizzy Support Creators Content Script V5.0 - NOT NULLED

No permission to download
I found a comment up there on how to Null Dizzy script, try it...:

Go to include folder and open function.php file there will be a function like this



PHP:
public function iN_Sen($mycd, $mycdStatus,$base_url){
$check = preg_match('/(.*)-(.*)-(.*)-(.*)-(.*)/', $mycd);
if($check && $mycdStatus == '1'){
return true;
}else{
return header('Location:' . $base_url . base64_decode('YmVsZWdhbA=='));
}
}


Just change it to this function




PHP:
public function iN_Sen($mycd, $mycdStatus,$base_url){
return true;
}


2nd step

go to main folder and open the index.php
remove these lines also on line 46

PHP:
if(preg_match('~([[\w.-]+)~u', urldecode($request_uri), $match)){
$tag = $match[1];
$thePage = mysqli_real_escape_string($db, $match[1]);
if($thePage == base64_decode('YmVsZWdhbA==')){
include('sources/'.base64_decode('YmVsZWdhbA==').'.php');
exit();
}
}

3rd step

go to include folder and open inc.php file and remove some lines and do some changes


line no : 35-36 (remove)
line no : 53 (change 1 to Null)
line no : 109 (remove)
line no : 134 (remove)
line no : 163 (remove)
line no : 208-212 (remove)
line no : 223 ( change exit() to return true )

Now every function will work fine . Hope this will help you all.
 
Last edited:
  • Like
Reactions: leonkennedy
After
here is the nulled version of 5.0 I have installed and done a basic test and it seems to work fine
if it works fine for you as well I will update a link
it's working fine, thank you
Hello sir, after installation the CSS is not working on my side. i have placed the website url and the database credentials in connect.php correctly
View attachment dizzy- Support Creators Content Script.png
 
After


Hello sir, after installation the CSS is not working on my side. i have placed the website url and the database credentials in connect.php correctly
View attachment dizzy- Support Creators Content Script.png
open the .htaccess file and change this
RewriteRule ^(.*)$ index\.php/$1 [L,QSA]
RewriteCond %{HTTP_REFERER} !^http://localhost:888/ [NC]
RewriteRule ^(uploads|requests|themes|includes|sources|langs|src)/ - [F]

change http://localhost:888/ to your domain name
 
  • Love
Reactions: WhiteAngel
RewriteCond %{HTTP_REFERER} !^http://localhost:888/ [NC]
open the .htaccess file and change this
RewriteRule ^(.*)$ index\.php/$1 [L,QSA]
RewriteCond %{HTTP_REFERER} !^http://localhost:888/ [NC]
RewriteRule ^(uploads|requests|themes|includes|sources|langs|src)/ - [F]

change http://localhost:888/ to your domain name
Thanks A lot sir, It worked perfectly. I wonder why this step is not mentioned in the documentation by the developer.

I would like to send videos in the chat, but I can’t. Can you tell me how to install ffmpeg on server?
1709259270521.png
 
Last edited:
how to install ffmpeg on server?
  • Log in to the server console and execute the following command:
    Code:
    sudo apt-get update && sudo apt-get install -y ffmpeg

  • Update the /opt/server/resourcespace/include/config.php file by adding the line below to it:
    Code:
    $ffmpeg_path='/usr/bin';

  • Restart Apache:
    Code:
    sudo /opt/server/ctlscript.sh restart apache
 
  • Like
Reactions: Klrahul
Hello, can someone please explain why I get this error after installing the script?

I import the database and change the details of the database inside 'connect.php' but I always end with this error.

Thank you.

1709379211260.png
 
Hello, can someone please explain why I get this error after installing the script?

I import the database and change the details of the database inside 'connect.php' but I always end with this error.

Thank you.

1709379211260.png
try this open the .htaccess and find this line of code
Options +FollowSymLinks -MultiViews

and change it to this
#Options +FollowSymLinks -MultiViews

save this file and try your website again

also if the CSS is all wrong see the post above to fix that also
 
try this open the .htaccess and find this line of code
Options +FollowSymLinks -MultiViews

and change it to this
#Options +FollowSymLinks -MultiViews

save this file and try your website again

also if the CSS is all wrong see the post above to fix that also
Thanks, I will try and let you know.
 
try this open the .htaccess and find this line of code
Options +FollowSymLinks -MultiViews

and change it to this
#Options +FollowSymLinks -MultiViews

save this file and try your website again

also if the CSS is all wrong see the post above to fix that also
Same issue my man, it gives 'HTTP ERROR 500'

1709485777180.png
 
Hi, Im facing the error below when I try to make points topup over Mercado Pago.

AH01071: Got error 'PHP message: {"message":"unknown_error","error":"","status":400,"cause":[]}PHP message: PHP Notice: Undefined index: id in /var/www/html/public/includes/payment/vendor/mercadopago/dx-php/src/MercadoPago/Config.php on line 113PHP message: PHP Notice: Undefined index: country_id in /var/www/html/public/includes/payment/vendor/mercadopago/dx-php/src/MercadoPago/Config.php on line 114PHP message: PHP Notice: Undefined index: BRL in /var/www/html/public/includes/payment/app/Service/MercadopagoService.php on line 55', referer: https://website.com/purchase/purchase_point

How to fix it?
 
open the .htaccess file and change this
RewriteRule ^(.*)$ index\.php/$1 [L,QSA]
RewriteCond %{HTTP_REFERER} !^http://localhost:888/ [NC]
RewriteRule ^(uploads|requests|themes|includes|sources|langs|src)/ - [F]

change http://localhost:888/ to your domain name
Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteBase /

ErrorDocument 404 http://localhost:8888/404
ErrorDocument 403 http://localhost:8888/403

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^(.*)$ index\.php/$1 [L,QSA]
RewriteCond %{HTTP_REFERER} !^http://localhost:888/ [NC]
RewriteRule ^(uploads|requests|themes|includes|sources|langs|src)/ - [F]
 
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