04-18-2017, 07:17 AM
04-19-2017, 08:56 AM
(04-13-2017 08:53 AM)satwhow Wrote: [ -> ]NULLING THE 2.0 VERSION
I have not tested all the features, but the "AUTO POST" feature is working perfectly, which for me was what mattered.
Test the other features and give the feedback in this post
Change the content of /app/third_party/MX/Controller.php
by this:
PHP Code:
<?php (defined('BASEPATH')) OR exit('No direct script access allowed');
require dirname(__FILE__).'/Base.php';
class MX_Controller
{
public $autoload = array();
public function __construct()
{
$class = str_replace(CI::$APP->config->item('controller_suffix'), '', get_class($this));
log_message('debug', $class." MX_Controller Initialized");
Modules::$registry[strtolower($class)] = $this;
/* copy a loader instance and initialize */
$this->load = clone load_class('Loader');
$this->load->initialize($this);
$CI = &get_instance();
$MAXIMUM_ACCOUNT = 0;
$settings = $CI->db->select("*")->get(SETTINGS_TB)->row();
if(!empty($settings)){
if(!defined('LOGO'))
define("LOGO", BASE.$settings->logo);
if(!defined('TITLE'))
define("TITLE", $settings->title);
if(!defined('DESCRIPTION'))
define("DESCRIPTION", $settings->description);
if(!defined('KEYWORDS'))
define("KEYWORDS", $settings->keywords);
if(!defined('THEME'))
define("THEME", $settings->theme);
if(!defined('AUTO_ACTIVE_USER'))
define("AUTO_ACTIVE_USER", $settings->auto_active_user);
if(!defined('REGISTER_ALLOWED'))
define("REGISTER_ALLOWED", $settings->register);
if(!defined('TIMEZONE'))
define("TIMEZONE", $settings->default_timezone);
if(!defined('LANGUAGE'))
define("LANGUAGE", session('lang')?session('lang'):$settings->default_language);
if(!defined('DEFAULT_DEPLAY'))
define("DEFAULT_DEPLAY", $settings->default_deplay);
if(!defined('MINIMUM_DEPLAY'))
define("MINIMUM_DEPLAY", $settings->minimum_deplay);
if(!defined('GOOGLE_API_KEY'))
define("GOOGLE_API_KEY", $settings->google_api_key);
if(!defined('FACEBOOK_ID'))
define("FACEBOOK_ID", $settings->facebook_id);
if(!defined('FACEBOOK_SECRET'))
define("FACEBOOK_SECRET", $settings->facebook_secret);
if(!defined('GOOGLE_ID'))
define("GOOGLE_ID", $settings->google_id);
if(!defined('GOOGLE_SECRET'))
define("GOOGLE_SECRET", $settings->google_secret);
if(!defined('TWITTER_ID'))
define("TWITTER_ID", $settings->twitter_id);
if(!defined('TWITTER_SECRET'))
define("TWITTER_SECRET", $settings->twitter_secret);
$CI->input->set_cookie('uploadMaxSize', $settings->upload_max_size, 86400);
date_default_timezone_set(TIMEZONE);
$MAXIMUM_ACCOUNT = $settings->maximum_account;
}
if(!defined('NOW'))
define("NOW",date("Y-m-d H:i:s"));
if(!session('uid')
and& segment(1) != ""
and& segment(1) != 'openid'
and& segment(1) != 'cronjob'
and& segment(1) != 'cronjob2'
and& segment(1) != 'cronjob3'
and& segment(1) != 'cronjob4'
and& segment(1) != 'cronjob5'
and& segment(1) != 'cronjob6'
and& segment(1) != 'cronjob7'
and& segment(1) != 'verify'
and& segment(2) != 'ajax_verify'
and& segment(2) != 'ajax_login'
and& segment(2) != 'ajax_register'
and& segment(1) != 'lang'){
redirect(PATH);
}
$users = $CI->db->select("*")->where('id', session('uid'))->get(USERS_TB)->row();
if(!empty($users)){
$accounts = $CI->db->select("*")->where('uid', session('uid'))->get(INSTAGRAM_ACCOUNT_TB)->result();
if(!defined('COUNT_ACCOUNT'))
define("COUNT_ACCOUNT", count($accounts));
$MAXIMUM_ACCOUNT = $users->maximum_account;
}
if(!defined('MAXIMUM_ACCOUNT'))
define("MAXIMUM_ACCOUNT", $MAXIMUM_ACCOUNT);
/* autoload module items */
$this->load->_autoloader($this->autoload);
}
public function __get($class)
{
return CI::$APP->$class;
}
}
Don't Forget to add Rep++
Thank you for this. i can login, but i cant add instagram account. can you help me, please?
04-26-2017, 03:51 PM
(04-14-2017 01:37 AM)satwhow Wrote: [ -> ]Step-by-step
http://www59.zippyshare.com/v/U0Kk81Jd/file.html
https://www.virustotal.com/file/529b3d6a...492096583/
First do not use auto install. Perform manual installation.
1. Run the database.sql inside the install folder, and generate a md5 password for the first user in the table 'tbl_users'
2. In index.php change
"define('ENVIRONMENT', 'installation');"
for
"define('ENVIRONMENT', 'production');"
In the file sent i made this change.
3. In /app/config.php update with the db credentials
4. You can now log in with the username and password you generated in 'tbl_users'
Note: I did not need to place the "Purchase code", because I changed the "MX_Controller" class that does the validation.
Okay, now enjoy.
I think can create a thread, only for nulled
Can you please more clear about this sir...thanks
04-28-2017, 03:47 AM
please anyone help to make this script working to install...thanks
05-02-2017, 03:31 AM
how to remove footer
05-02-2017, 05:14 AM
Do some searching and reading - already posted:
Didn't go thru first time...
Do some searching and reading - already posted:
http://bestblackhatforum.com/Thread-Get-...pid1902826
(05-02-2017 03:31 AM)punyakhubi Wrote: [ -> ]how to remove footer
Didn't go thru first time...
Do some searching and reading - already posted:
http://bestblackhatforum.com/Thread-Get-...pid1902826
(05-02-2017 03:31 AM)punyakhubi Wrote: [ -> ]how to remove footer
05-02-2017, 06:12 AM
Thanks
05-02-2017, 07:26 PM
Unable to connect to your database server using the provided settings.
Filename: third_party/MX/Base.php
Line Number: 55
====
how to resolve?
Filename: third_party/MX/Base.php
Line Number: 55
====
how to resolve?
05-07-2017, 01:45 PM
nice. made it to work. still testing the function. thank op
05-14-2017, 11:44 PM
i can't add new instagram account. anyone can add successfully?