What's new
  • The default language of any content posted is English.
    Do not create multi-accounts, you will be blocked! For more information about rules, limits, and more, visit the Help page.
    Found a dead link? Use the report button!
Perfex - Powerful Open Source CRM + Premium Add-ons

NULLED Perfex - Powerful Open Source CRM + Premium Add-ons 3.3.1

Reacted by:
  • Like
Reactions: NiceATC
It works, thanks, but the files are out of date, my tasks are loading infinitely
The module is broken and contains many issues. I fixed some of them today but there are many issues open.
I can share it here when I'm ready but that can take a while, as I only do this on the side when I have some time.
 
Reacted by:
  • Like
Reactions: NiceATC
I need some medical/healthcare modules for perfex CRM, who can suggest me ?

thanks
 
saintharbor 's signature
Reacted by:
1751220087797.png

does anyone know what is causing the error on booking page of appointly
 
Reacted by:

Module Perfex - Connect Pix Offline v1.0.3​

LeadPilot v1.3.3 – Smart AI Call Assistant & Lead Automation Module for Perfex CRM untouched​

 

Attachments

  • Modulo - Connect PIX Offline V.1.0.3.zip
    1.3 MB · Views: 41
  • leadpilot_ai.zip
    526.7 KB · Views: 38
Reacted by:

Dynamic Customized Theme Module for Perfex CRM v1.1.7​

- Design issue fixed to be compatible with Latest Perfex CRM Version 3.3.*
 

Attachments

  • si_custom_theme.zip
    50.3 KB · Views: 43
Reacted by:
with php 8.2 or higher my Perfex shows 403 error . but with 8.1 and older working well just showing this message. How can fix it ?
 

Attachments

  • Screenshot at Jul 10 22-38-15.png
    Screenshot at Jul 10 22-38-15.png
    91.5 KB · Views: 16
saintharbor 's signature
Reacted by:
Reacted by:
  • Like
Reactions: yerv28
Hi, 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
Hi
Can you help me where to put these codes please?
 
Reacted by:
  • Like
Reactions: yerv28 and Ufuk.88
Top