Reacted by:
I'm sharing the activation details:Does anyone have
↓ Not Nulled ↓
I'm sharing the activation details:
Your Name: Zega Team
Your Email: [email protected]
Username: [email protected]
Your License Key: 3y4ke4vr8bj530k7ghmg3j626
The module is broken and contains many issues. I fixed some of them today but there are many issues open.It works, thanks, but the files are out of date, my tasks are loading infinitely
Hello, do you have version 2.0.5?
Does anyone have
↓ Not Nulled ↓
HiHi, you can make admin login default with this custom hook
PHP:hooks()->add_action('app_init','my_change_default_url_to_admin'); function my_change_default_url_to_admin(){ $CI = &get_instance(); if(!is_client_logged_in() && !$CI->uri->segment(1)){ redirect(site_url('admin/authentication')); } }
Then you can add this hook to disable customers area
PHP:hooks()->add_action('after_clients_area_init', 'my_disable_customers_area'); hooks()->add_action('clients_authentication_constructor', 'my_disable_customers_area'); function my_disable_customers_area(){ header('HTTP/1.0 401 Unauthorized'); die('Access not allowed'); }
Kind regards
SureHi
Can you help me where to put these codes please?
Thank you so much, but these are two different codes, what we do with the second one?Sure
If not already done, create a file "my_functions_helper.php" in "application/helpers" directory.
This file is for custom code (helper functions at first).
Best regards
The second code is to disable client area completely. It prevents initializing and throws a die() with 401 unauthorized.Thank you so much, but these are two different codes, what we do with the second one?