CodeIgniter Forums
My Helper function not found - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: My Helper function not found (/showthread.php?tid=33936)



My Helper function not found - El Forum - 09-13-2010

[eluser]IvanBlue[/eluser]
Hello, I created a helper function and I put it inside application/helpers with the name my_helper.php. In development it works perfectly, I can use the function defined in there anywhere but in production the function are not found. What am I doing wrong?

Thanks.


My Helper function not found - El Forum - 09-13-2010

[eluser]Italo Domingues[/eluser]
Hello. Before using the helper you must load it using:
Code:
$this->load->helper('my_helper');