CodeIgniter Forums
Unable to load helpers - 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: Unable to load helpers (/showthread.php?tid=17885)



Unable to load helpers - El Forum - 04-18-2009

[eluser]koryrok[/eluser]
Hi All,

I'm moving my CI application from a windows machine over to LAMP and everything seems to be working fine except for a few custom helpers I created. I get the following error:

Quote:Unable to load the requested file: helpers/myfunctions_helper.php

I've verified all custom helpers are FTPd over to the new LAMP environment and I've also tried copying the helpers from system/application/helpers into the core helpers directory and no luck... anyone know why I could be getting this error?

Thanks,
Kory


Unable to load helpers - El Forum - 04-18-2009

[eluser]pistolPete[/eluser]
Are file permissions set correctly?
Does the file name contain uppercase chars?
Linux file systems usually are case sensitive whereas Windows is not.


Unable to load helpers - El Forum - 04-18-2009

[eluser]koryrok[/eluser]
Hi pistolPete,

I just renamed my helper to all lower case it worked. (although I was previously calling it from autoload the same way as it was named myFunctions_helper.php >Sad )

Thanks!


Unable to load helpers - El Forum - 04-18-2009

[eluser]Colin Williams[/eluser]
CI's naming conventions are well defined to prevent this very issue.