08-08-2010, 07:11 AM
[eluser]dorwin[/eluser]
Hello,
I have an autoload error : Unable to load the requested file: helpers/html_helper.php
Actually I changed some file disposition :
My system folder :
/libraries/codeigniter/system
And application folder :
/a_folder/whooper/application
I have in my index.php :
CI seems to working fine, I have welcome message, but when I put some autoload stuff like :
I have the error. I notice CI looking for theses files on application/helpers folder and not system folder...
Do you know what is wrong ?
Thanks
!
Hello,
I have an autoload error : Unable to load the requested file: helpers/html_helper.php
Actually I changed some file disposition :
My system folder :
/libraries/codeigniter/system
And application folder :
/a_folder/whooper/application
I have in my index.php :
Code:
if ($_SERVER['REMOTE_ADDR'] == '127.0.0.1')
define ('LOCAL', true);
else
define ('LOCAL', false);
$path = (LOCAL)?'C:\wamp\www\librairies\codeigniter':'/usr/home/v1076';
set_include_path(get_include_path() . PATH_SEPARATOR . $path);
$system_folder = "/system";
Code:
$autoload['libraries'] = array('database', 'parser');
$autoload['helper'] = array('html', 'url');
I have the error. I notice CI looking for theses files on application/helpers folder and not system folder...
Do you know what is wrong ?
Thanks
