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

King Media - Viral Video, News, Image Upload and Share

King Media - Viral Video, News, Image Upload and Share v8.2 June 3-2023

No permission to download
The administration panel does not open without entering the purchase code. How can I bypass this?
Just Go To \king-include\king-pages\admin\admin-king.php
Open admin-king.php
remove all codes and paste this Below code
Thanks for babak

PHP:
<?php
/*

    File: king-include/king-page-admin-categories.php
    Description: Controller for admin page for editing categories


    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License
    as published by the Free Software Foundation; either version 2
    of the License, or (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    More about this license: LICENCE.html
*/

    if (!defined('QA_VERSION')) { // don't allow this page to be requested directly from browser
    header('Location: ../');
    exit;
}

require_once QA_INCLUDE_DIR.'king-app/admin.php';
require_once QA_INCLUDE_DIR.'king-db/selects.php';
require_once QA_INCLUDE_DIR.'king-db/admin.php';

ini_set('user_agent', 'Mozilla/5.0');

//    Check admin privileges (do late to allow one DB query)

if (!qa_admin_check_privileges2($qa_content))
    return $qa_content;

//    Process saving options

$savedoptions=false;
$securityexpired=false;
$bundle_id = '19106207';

$king_key = qa_opt('king_key');

$enavato_itemid =  '7877877';
$label = '';
    $code = qa_post_text('king_key');
    $personalToken = "R5QWDaq9cwBv5BtwYFDzVLzaCZEeQzUS";
    $userAgent = "Purchase code verification on http://localhost/env/";
        $label='DONE !';
        qa_set_option('king_key', 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx');

if (qa_clicked('dosaveoptions')) {
    if (!qa_check_form_security_code('admin/categories', qa_post_text('code')))
        $securityexpired=true;

    else {
        $savedoptions=false;
    }
}



//    Prepare content for theme

$qa_content=qa_content_prepare();

$qa_content['title']=qa_lang_html('admin/admin_title').' - '.qa_lang_html('admin/categories_title');
$qa_content['error']=$securityexpired ? qa_lang_html('admin/form_security_expired') : qa_admin_page_error();

$qa_content['form']=array(
    'tags' => 'method="post" action="'.qa_path_html(qa_request()).'"',

    'ok' => $savedoptions ? qa_lang_html('admin/options_saved') : null,

    'style' => 'tall',

    'fields' => array(
        'intro' => array(
            'label' => $label,
            'type' => 'static',
        ),
        'name' => array(
            'id' => 'king_key',
            'tags' => 'name="king_key" id="king_key" placeholder="xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"',
            'label' => 'King Media Purchase Code',
            'value' => qa_html(isset($code) ? $code : @$king_key),
            'error' => qa_html(@$errors['king_key']),
        ),             
    ),

    'buttons' => array(
        'save' => array(
            'tags' => 'name="dosaveoptions" id="dosaveoptions"',
            'label' => qa_lang_html('main/save_button'),
        ),

    ),

    'hidden' => array(
        'code' => qa_get_form_security_code('admin/categories'),
    ),
);

$qa_content['navigation']['sub']=qa_admin_sub_navigation();


return $qa_content;


/*
    Omit PHP closing tag to help avoid accidental output
*/
 
Just Go To \king-include\king-pages\admin\admin-king.php
Open admin-king.php
remove all codes and paste this Below code
Thanks for babak

PHP:
<?php
/*

    File: king-include/king-page-admin-categories.php
    Description: Controller for admin page for editing categories


    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License
    as published by the Free Software Foundation; either version 2
    of the License, or (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    More about this license: LICENCE.html
*/

    if (!defined('QA_VERSION')) { // don't allow this page to be requested directly from browser
    header('Location: ../');
    exit;
}

require_once QA_INCLUDE_DIR.'king-app/admin.php';
require_once QA_INCLUDE_DIR.'king-db/selects.php';
require_once QA_INCLUDE_DIR.'king-db/admin.php';

ini_set('user_agent', 'Mozilla/5.0');

//    Check admin privileges (do late to allow one DB query)

if (!qa_admin_check_privileges2($qa_content))
    return $qa_content;

//    Process saving options

$savedoptions=false;
$securityexpired=false;
$bundle_id = '19106207';

$king_key = qa_opt('king_key');

$enavato_itemid =  '7877877';
$label = '';
    $code = qa_post_text('king_key');
    $personalToken = "R5QWDaq9cwBv5BtwYFDzVLzaCZEeQzUS";
    $userAgent = "Purchase code verification on http://localhost/env/";
        $label='DONE !';
        qa_set_option('king_key', 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx');

if (qa_clicked('dosaveoptions')) {
    if (!qa_check_form_security_code('admin/categories', qa_post_text('code')))
        $securityexpired=true;

    else {
        $savedoptions=false;
    }
}



//    Prepare content for theme

$qa_content=qa_content_prepare();

$qa_content['title']=qa_lang_html('admin/admin_title').' - '.qa_lang_html('admin/categories_title');
$qa_content['error']=$securityexpired ? qa_lang_html('admin/form_security_expired') : qa_admin_page_error();

$qa_content['form']=array(
    'tags' => 'method="post" action="'.qa_path_html(qa_request()).'"',

    'ok' => $savedoptions ? qa_lang_html('admin/options_saved') : null,

    'style' => 'tall',

    'fields' => array(
        'intro' => array(
            'label' => $label,
            'type' => 'static',
        ),
        'name' => array(
            'id' => 'king_key',
            'tags' => 'name="king_key" id="king_key" placeholder="xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"',
            'label' => 'King Media Purchase Code',
            'value' => qa_html(isset($code) ? $code : @$king_key),
            'error' => qa_html(@$errors['king_key']),
        ),            
    ),

    'buttons' => array(
        'save' => array(
            'tags' => 'name="dosaveoptions" id="dosaveoptions"',
            'label' => qa_lang_html('main/save_button'),
        ),

    ),

    'hidden' => array(
        'code' => qa_get_form_security_code('admin/categories'),
    ),
);

$qa_content['navigation']['sub']=qa_admin_sub_navigation();


return $qa_content;


/*
    Omit PHP closing tag to help avoid accidental output
*/
Hello @Babak you are the best 😺


If indeed it is my new account after what happened

Greetings ✌️
 
@patrocle do you have a null version?
@Babak
can you give a hand here babak? now i realized while navigating i think there should be one member test all the themes installed voluntarily this can be me. :)
Since I have a lot of websites, I use the ones that will work for me.
 
@lukas.flexyyy
First of all, I have to tell you this. I don't think you can update null version. but it wouldn't hurt to try.
Don't forget to backup before trying.
2)
-------------- How To Update to KING Media 7 ? ------------
1. Before upgrading, it is recommended to make a backup of your website.
2. Download latest version of KingMEDIA from Codecanyon and Unzip The files,
3. Turn on maintenance mode in your page admin > general.
4. Replace all the modified files on your web server with the new ones,
5. Then go to : http://YOURPAGEURL/install and click "Repair Database" Button.
6. Turn off mainenance mode . You’ve now successfully upgraded - congratulations!
----------------------------------------------------------------------
1)I do not know this. but I suggest you to check the database. or you can tamper with the theme files.
 
@lukas.flexyyy
First of all, I have to tell you this. I don't think you can update null version. but it wouldn't hurt to try.
Don't forget to backup before trying.
2)
-------------- How To Update to KING Media 7 ? ------------
1. Before upgrading, it is recommended to make a backup of your website.
2. Download latest version of KingMEDIA from Codecanyon and Unzip The files,
3. Turn on maintenance mode in your page admin > general.
4. Replace all the modified files on your web server with the new ones,
5. Then go to : http://YOURPAGEURL/install and click "Repair Database" Button.
6. Turn off mainenance mode . You’ve now successfully upgraded - congratulations!
----------------------------------------------------------------------
1)I do not know this. but I suggest you to check the database. or you can tamper with the theme files.
Thank you 😊
 
  • Like
Reactions: Raccoon
7.3 archive ask for password ?? where can i find it,no mention on post that it's password protected.
 
The package could not be installed. The theme is missing the style.css stylesheet.

Theme installation failed.
 
  • Haha
Reactions: lunga
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