Error
Call to undefined function Encrypt()
I’m having some problems with my helpers! On localhost they loaded without problems but now that I deployed them on my home server they don’t load… I already loaded autoload/BaseController and nothing, the error is persistent.
This is my helpers:
- Email_Helper.php
- Encryption_Helper.php
- Functions_Helper.php
- Logger_Helpper.php
My Base Controller:
protected $helpers = ['form', 'encryption', 'functions', 'logger', 'email'];
Autoload:
public $helpers = [
'Encryption_Helper',
'Email_Helper',
'Functions_Helper',
'Logger_Helper'
];
And also, I tried to:
helper(['form', 'encryption', 'functions']);
I can’t get out of my problem, can anyone help?
I’m having some problems with my helpers! On localhost they loaded without problems but now that I deployed them on my home server they don’t load… I already loaded autoload/BaseController and nothing, the error is persistent.
GM BF is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.