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

Quiz Online | Trivia Quiz | Quiz Game | Web Quiz + Admin Panel

Quiz Online | Trivia Quiz | Quiz Game | Web Quiz + Admin Panel v7.1.5 Untouched

No permission to download
How to nul?

Open the file located in .\install\assets
Code:
smartWizard-validation.js

delete or comment the lines between #34 to #40
Code:
//  if (validateStep2() == false) {
//        isStepValid = false;
//        $('#wizard_verticle').smartWizard('setError', {stepnum: 2, iserror: true});
//    } else {
//        $('#wizard_verticle').smartWizard('setError', {stepnum: 2, iserror: false});
//    }

delete or comment the lines between #108 to #145 (the Step 2)

Code:
    // validate step 2
//    if (step == 2) {
//        var res = validateStep2();
//        if (res.error == true) {
//            isStepValid = false;
//            $('#wizard_verticle').smartWizard('showMessage', res.message);
//            $('#wizard_verticle').smartWizard('setError', {stepnum: step, iserror: true});
//        } else {
//            $('#wizard_verticle').smartWizard('hideMessage');
//            $('#wizard_verticle').smartWizard('setError', {stepnum: step, iserror: false});
//        }
//    }


delete or comment the lines between #73 to #84 (the Step 2)

Code:
// }
//
//function validateStep2() {
//    var data = {
//        'error': true,
//        'message': "Please required all field."
//    };
//    $('#step-2 input').each(function () {
//        if (!$(this).val() && $(this).val().length <= 0) {
//            data = {
//                'error': true,
//                'message': "Please required all field."
//            };
//        }
//    });
//    var purchase_code = $("#step-2 input#purchase_code").val();
//    var quiz_url = window.location.host + window.location.pathname;
//    quiz_url = quiz_url.replace("install/index.php", "");
//    quiz_url = quiz_url.replace("install/", "");
//    if (purchase_code !== "" && quiz_url !== "") {
//        data = check_purchase_code(purchase_code, quiz_url);
//    } else {
//        data = {
//            'error': true,
//            'message': "Please required all field."
//        };
//    }
//    return data;
//}
//
//function check_purchase_code(purchase_code, quiz_url) {
//    $.ajaxSetup({async: false, dataType: 'json'});
//    var returnUserData = null;
//    $.post('https://wrteam.in/validator/quiz_online_validator?purchase_code=' + purchase_code + '&domain_url=' + quiz_url, function (data) {
//        returnUserData = data;
//    });
//    $.ajaxSetup({async: true});
//    return returnUserData;

Open the file index.php located in install folder and delete or comment the line #82
Code:
// <li><a href="#step-2"><span class="step_no">2</span></a></li>

delete or comment the lines between #115 to #139

Code:
//                                            </div>
//                                        </div>
//                                    </div>
//
//                                    <div id="step-2">
//                                        <div class="col-md-12">
//                                            <div class="outer_div">
//                                                <div class="form-group row">
//                                                    <div class="col-md-12 text-center">
//                                                        <h5>Check Purchase Code</h5>
//                                                    </div>
//                                                </div>
//                                                <div class="form-group row">
//                                                    <div class="col-md-12">
//                                                        <label>Purchase Code <small class="text-danger">*</small></label>
//                                                        <input name="purchase_code" type="text" id="purchase_code" class="form-control" required placeholder="Enter Purchase Code" />
//                                                        <?php
//                                                        $appurl = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
//                                                        $appurl = preg_replace('#^https?://#i', '', $appurl);
//                                                        $appurl = str_replace('install/index.php', '', $appurl);
//                                                        $appurl = str_replace('install/', '', $appurl);
//                                                        ?>
//                                                        <input value="<?= $appurl; ?>" name="quiz_url" type="hidden" id="quiz_url" class="form-control" required/>
//                                                    </div>
//                                                </div>

Open the file indx.php and delete or comment the lines between #1 to #4

Code:
// <?php
// if (file_exists('install/index.php')) {
//    header("location:install/");
//    die();


Change the line #15
From:
Code:
<meta http-equiv="X-UA-Compatible" content="IE=edge">


to:
Code:
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

why?
  1. IE=edge: specifies that IE should run in the highest mode available to that version of IE as opposed to a compatability mode; IE8 can support up to IE8 modes, IE9 can support up to IE9 modes, and so on.
  2. chrome=1: specifies that Google Chrome frame should start if the user has it installed
The IE=edge flag is still relevant for IE versions 10 and below. IE11 sets this mode as the default.

As for the chrome flag, you can leave it if your users still use Chrome Frame. Despite support and updates for Chrome Frame ending, one can still install and use the final release. If you remove the flag, Chrome Frame will not be activated when installed. For other users, chrome=1 will do nothing more than consume a few bytes of bandwidth.

I recommend you analyze your audience and see if their browsers prohibit any needed features and then decide.
 
  • Like
Reactions: leonkennedy
  • Like
Reactions: Syntaxbyte
Do you have any idea? My Hosting is on PHP 8.1 but am getting the error: Your PHP version must be 7.3 or higher

Screenshot Capture - 2023-08-25 - 16-48-33.png
it's strange, sir, your signature says that you are a Laravel developer, Backend and Frontend Developer


Open the file index.php located in the zipped Admn Panel and extract it from​

Code:
..\install

Change the line between the line #89 until #93 From this:​


Code:
<label class="control-label">PHP Version (>= 7.3)</label>
<?php
 $value1 = 7.3;
 $value2 = phpversion();
?>

To this:​

Code:
<label class="control-label">PHP Version (>= 8.0)</label>
<?php
 $value1 = 8.0;
 $value2 = phpversion();
?>

And try install again (Delete cache first)​

 
it's strange, sir, your signature says that you are a Laravel developer, Backend and Frontend Developer


Open the file index.php located in the zipped Admn Panel and extract it from​

Code:
..\install

Change the line between the line #89 until #93 From this:​


Code:
<label class="control-label">PHP Version (>= 7.3)</label>
<?php
 $value1 = 7.3;
 $value2 = phpversion();
?>

To this:​

Code:
<label class="control-label">PHP Version (>= 8.0)</label>
<?php
 $value1 = 8.0;
 $value2 = phpversion();
?>

And try install again (Delete cache first)​

Yes I am a backend php-laravel developer.
I have tried this even with 8.1
 
it's strange, sir, your signature says that you are a Laravel developer, Backend and Frontend Developer


Open the file index.php located in the zipped Admn Panel and extract it from​

Code:
..\install

Change the line between the line #89 until #93 From this:​


Code:
<label class="control-label">PHP Version (>= 7.3)</label>
<?php
 $value1 = 7.3;
 $value2 = phpversion();
?>

To this:​

Code:
<label class="control-label">PHP Version (>= 8.0)</label>
<?php
 $value1 = 8.0;
 $value2 = phpversion();
?>

And try install again (Delete cache first)​

I was actually trying to follow the null process above with this new version. But I just install this latest version directly, and it working perfectly now.
THanks
 
  • Like
Reactions: enigmahernandez
I was actually trying to follow the null process above with this new version. But I just install this latest version directly, and it working perfectly now.
THanks
It is that the solution to your problem was very easy to solve and I was curious if you are a developer because you did not find the problem...

I'm just an amateur and I like to edit code and I realized in less than 5 seconds how to solve that problem you had
 
I see in original version on Codecanyone, there are only three Zip files in latest release. In your version I see extra Web_Quiz zip. Where is it coming from? What does it contain?
Trying to understand the difference or addition you have here.
 
Babak updated Quiz Online | Trivia Quiz | Quiz Game | Web Quiz + Admin Panel with a new update entry:

Quiz Online v7.1.5 | Trivia Quiz | Quiz Game | Web Quiz + Admin Panel

Download Quiz Online v7.1.5 | Trivia Quiz | Quiz Game | Web Quiz + Admin Panel Nulled Free
v7.1.5
( updated on 19-Mar-2024 )

+ [Update] Update Latest library
+ [Update] MultiLanguage Answer Possible
+ [Fix] Latest Version Profile update Fix
+ [Fix] SpinWheel Issue Fixed
+ [Improve] Improvements & bug fixes

Read the rest of this update entry...
 
  • Like
Reactions: timalin
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