I suggest that remove the '/' in your route:
from // the URI path to the user guide
$config['user_guide_root_url'] = FUEL_ROUTE.'/tools/'.USER_GUIDE_FOLDER.'/';
to // the URI path to the user guide
$config['user_guide_root_url'] = FUEL_ROUTE.'tool…
One question, must I rewrite some or all the files of my modules if I migrate from version 0.93 to 1.0? The only changelog from 0.93 to 1.0 that I found is here, but I don't know if there are big changes respect to modules development and modules co…
The problem was for the following line in Upload.php (fuel/codeigniter/libraries):
if (in_array($this->file_type, $mime, TRUE))
{
return TRUE;
}
When I run, the value of $this->file_type was 'application/octet-stream', and for example th…