CodeIgniter Forums
werid loading problem - 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: werid loading problem (/showthread.php?tid=18876)



werid loading problem - El Forum - 05-21-2009

[eluser]Unknown[/eluser]
I have been developing an application on my local PC with xampp. The URL is http://localhost/thehub02/. I've uploaded the entire site to our testing server that runs on our local network and made the necessary alterations in the config files. The URL on this server is http://thehub/.

With everything changed, I get the CI error message stating

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

The file is in system/application/helpers/My_custom_functions_helper.php and the config file is set as;

Code:
$autoload['helper'] = array('url','My_custom_functions');

I am not using mod_rewrite on the new server yet so I can't see this interferring. It's driving me nuts, does anyone have any ideas what is happening?


werid loading problem - El Forum - 05-21-2009

[eluser]Dam1an[/eluser]
Is the testing server server UNIX by any chance?
UNIX is case sensitive, but Windows isn't

All your helper files should be in lower case


werid loading problem - El Forum - 05-21-2009

[eluser]Unknown[/eluser]
Yes it is, CentOS and you were correct!

Thanks for that.