Search code examples
codeigniterci-merchant

Unable to load the requested file: helpers/langauge_helper.php


I am using CI Merchant and have copied all the files needed into the correct folders and added the code to do a test purchase. When I load the controller I get this message:

Unable to load the requested file: helpers/langauge_helper.php

How can I get codeigniter to give me more information on why its giving this message? What would cause this?


Solution

  • Loading helper file in constructor works too like this

    $this->load->helper('custom'); //custom_helper.php
    

    Reference

    You might be loading helper in a wrong way