CodeIgniter Forums
problem with helper - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: problem with helper (/showthread.php?tid=34249)



problem with helper - El Forum - 09-23-2010

[eluser]_TTT_[/eluser]
On localhost I have no problems with my helper.

autoupload.php
Code:
$autoload['helper'] = array('url','form','MY_obj_helper');

application/helpers/MY_obj_helper.php

But on hosting:
An Error Was Encountered
Unable to load the requested file: helpers/my_obj_helper.php


Why ?


problem with helper - El Forum - 09-23-2010

[eluser]_TTT_[/eluser]
$autoload['helper'] = array('url','form','obj');

same error


problem with helper - El Forum - 09-23-2010

[eluser]InsiteFX[/eluser]
Take of the MY_

InsiteFX