Unable to load the requested class: Url |
I am not sure if codeigniter have a class called url. If you want to use the url helper in codeigniter 4 use helper('url') and in codeigniter 3 use in your controller $this->load->helper('url') and in your liberay use $this->ci->load->helper('url').
If you want to work with the codeigniter 4 url class as you said, just use PHP Code: $uri = \Config\Services::request()->uri; I think this will help you work with the usrl class or functions |
Messages In This Thread |
Unable to load the requested class: Url - by chanthy - 01-24-2021, 09:18 PM
RE: Unable to load the requested class: Url - by php_rocs - 01-25-2021, 10:01 AM
RE: Unable to load the requested class: Url - by chanthy - 01-26-2021, 12:16 AM
RE: Unable to load the requested class: Url - by Chivinsdev - 01-26-2021, 03:01 AM
RE: Unable to load the requested class: Url - by chanthy - 02-14-2021, 11:03 PM
|