Fatal error: Call to undefined function site_url() Fatal error: Call to undefined function site_url() codeigniter codeigniter

Fatal error: Call to undefined function site_url()


You have to load the helper. The function site_url() is provided by the url helper, as described here.

$this->load->helper('url');


You can try this:

  1. First Load the URL Helper with:

    • $this->load->helper('url'); or set the following value in application/config/autoload.php
    • $autoload['helper'] = array('url');
  2. Then you can show the site url with:

Note: Results depends on values stored in application/config/config.php