CodeIgniter Forums
Unable to load the requested class: Url - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=11)
+--- Thread: Unable to load the requested class: Url (/showthread.php?tid=68232)



Unable to load the requested class: Url - pippuccio76 - 06-13-2017

hi , my codeigniter version is 3.1.4 , in autoload i have :

Code:
$autoload['libraries'] = array('url','form');


but i have this errors . HOw can i solve ?


RE: Unable to load the requested class: Url - dave friend - 06-13-2017

'url' and 'form' are helpers not libraries.

PHP Code:
$autoload['helpers'] = array('url','form');