CodeIgniter Forums
problem with helpers - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: problem with helpers (/showthread.php?tid=14008)



problem with helpers - El Forum - 12-15-2008

[eluser]protanqcreator[/eluser]
hi,

I am new on CI, I have this error message:
Quote:Unable to load the requested file: helpers/link_tag_helper.php

Is there somebody that can help me?

thanks


problem with helpers - El Forum - 12-15-2008

[eluser]Ty Bex[/eluser]
How are you calling this helper some source would be helpfull.


problem with helpers - El Forum - 12-15-2008

[eluser]protanqcreator[/eluser]
hi

thanks to answer me. Sorry I'm new, I haven't the reflex to join sources.
This is my controller:
Code:
<?php
class Sitesperso extends Controller {
    
    
    function Sitesperso(){
        parent::Controller();
        
        $this->load->helper('url');
        $this->load->helper('form');
        $this->load->helper('link_tag');
        
                
    }


thanks


problem with helpers - El Forum - 12-15-2008

[eluser]Phil Sturgeon[/eluser]
I'm assuming you have made a new helper in your applications/helpers folder right? If you have, is it called link_tag_helper.php or something else, as that would cause this message.

Read the manual about Helpers if you are still stuck.