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

Resource icon

WooCommerce Integration : A ChatPion Add-On v2.0

No permission to download
Updated to v1.1

But actually i checked the code. there is nothing different changes from v1.0 to v1.1. they only up version to 1.1 but code remaining the same
You can go to "\application\modules\ai_reply"
Compress the script, then share it here?
Addons are not working.
 
You can go to "\application\modules\ai_reply"
Compress the script, then share it here?
Addons are not working.

Hi,

this is the script that is compress and nulled. its working on my side. for license key just leave it blank and press activate will do.
 
  • Like
Reactions: HoaBinh
Hi,

this is the script that is compress and nulled. its working on my side. for license key just leave it blank and press activate will do.
you edit the database to 1.0
then go to "application\controllers\Update_system.php"
Find "$this->delete_directory($delete_folder_path);"
Edit to "//$this->delete_directory($delete_folder_path);"
Then go to the software to update addons
Go to the download folder to get the file
 
you edit the database to 1.0
then go to "application\controllers\Update_system.php"
Find "$this->delete_directory($delete_folder_path);"
Edit to "//$this->delete_directory($delete_folder_path);"
Then go to the software to update addons
Go to the download folder to get the file
This is the code in the file.

PHP:
<?php
/*
Addon Name: AI Integration
Unique Name: ai_reply
Modules:
{
   "340":{
      "bulk_limit_enabled":"0",
      "limit_enabled":"0",
      "extra_text":"",
      "module_name":"AI Reply"
   }
}
Project ID: 67
Addon URI: https://xerochat.com
Author: Xerone IT
Author URI: https://xeroneit.net
Version: 1.1
Description:
*/

require_once("application/controllers/Home.php"); // loading home controller

class Ai_reply extends Home
{
    public $addon_data=array();
    public function __construct()
    {
        parent::__construct();
        // getting addon information in array and storing to public variable
        // addon_name,unique_name,module_id,addon_uri,author,author_uri,version,description,controller_name,installed
        //------------------------------------------------------------------------------------------
        $addon_path=APPPATH."modules/".strtolower($this->router->fetch_class())."/controllers/".ucfirst($this->router->fetch_class()).".php"; // path of addon controller
        $this->addon_data=$this->get_addon_data($addon_path);

        $this->member_validity();

        $this->user_id=$this->session->userdata('user_id'); // user_id of logged in user, we may need it


    }


    public function index()
      {
          $this->activate();
      }


    public function activate()
    {
        $this->ajax_check();
  
        $addon_controller_name=ucfirst($this->router->fetch_class()); // here addon_controller_name name is Comment [origianl file is Comment.php, put except .php]
        $purchase_code=$this->input->post('purchase_code');
      
        $this->addon_credential_check($purchase_code,strtolower($addon_controller_name)); // retuns json status,message if error
                
        //this addon system support 2-level sidebar entry, to make sidebar entry you must provide 2D array like below
        $sidebar=array(); 

        // mysql raw query needed to run, it's an array, put each query in a seperate index, create table query must should IF NOT EXISTS
        $sql=array();

        //send blank array if you does not need sidebar entry,send a blank array if your addon does not need any sql to run
        $this->register_addon($addon_controller_name,$sidebar,$sql,$purchase_code);
    }


    public function deactivate()
    {       
        $this->ajax_check();
  
        $addon_controller_name=ucfirst($this->router->fetch_class()); // here addon_controller_name name is Comment [origianl file is Comment.php, put except .php]
        // only deletes add_ons,modules and menu, menu_child1 table entires and put install.txt back, it does not delete any files or custom sql
        $this->unregister_addon($addon_controller_name);         
    }

    public function delete()
    {       
        $this->ajax_check();
 
        $addon_controller_name=ucfirst($this->router->fetch_class()); // here addon_controller_name name is Comment [origianl file is Comment.php, put except .php]

        // mysql raw query needed to run, it's an array, put each query in a seperate index, drop table/column query should have IF EXISTS
        $sql = array();
        
        // deletes add_ons,modules and menu, menu_child1 table ,custom sql as well as module folder, no need to send sql or send blank array if you does not need any sql to run on delete
        $this->delete_addon($addon_controller_name,$sql);         
    }


}
 
  • Love
Reactions: HoaBinh
I installed everything right, even putting the gpt3.5 key doesn't work
 
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