I have added a language file named as license_lang.php.Then i called this in controller by $this->lang->load('license'); .But showing error like "Unable to load the requested language file: language/english/license_lang.php". Any idea?
Codeigniter Language error
736 Views Asked by Kripa At
1
There are 1 best solutions below
Related Questions in CODEIGNITER
- Overlay text on image not renedered correctly when using custom hindi font with GD library functions
- PHP CodeIGniter 3
- domPdf is showing blank page
- Is there a way to create connection pooling in codeigniter 3 using custom mysqli driver?
- Codeigniter 4 - MySQL Duplicate Entry exception not working
- How can I reconfigure CodeIgniter (v4) to serve with a new sub-directory path (via nginx)?
- How to logout with public function
- How to autoload a user-defined class in CI4?
- passing object to a view within a foreach loop in CodeIgniter
- Function in controller does not receive data from ajax on button [SOLVED]
- Create REST API Endpoints from an Existing PHP CodeIgniter Project
- Message: Invalid argument supplied for foreach() while using foreach
- CodeIgniter 4 migration fails but the equivalent MySQL query does not
- CodeIgniter 4 with hmvc
- Zend Barcode label distance ajustment
Related Questions in CODEIGNITER-URL
- Is $this->uri->segment(3) secure in Codeigniter
- How to make a pretty simple Codeigniter url route?
- Conflict when uploading images with multiple file field in codeigniter
- Route Codeigniter URL to another port
- redirect uri segment after delete
- Develop a sub-websites (micro websites) in Codeignitter
- Codeigniter Controller class login form : 404 page not found
- Codeigniter url/links with mode rewrite htacess: object not found
- CodeIgniter - pre select a value from dropdown based on link clicked
- Code igniter url segment
- Alert primary key insert
- call the ' id ' of the mysql database with varchar format but Unknown column 'GE' in 'where clause'
- CodeIgniter remove index.php from href
- Codeigniter admin route
- Codeigniter Uri segments are not printing special characters correctly
Related Questions in CODEIGNITER-DATAMAPPER
- Want to store multiple id's (dynamically) in session array of Codeignitor 2.x
- zip folder and download in codeigniter
- Codeigniter 3 - Query Builder 'join' Method '!=' operator is not giving expected output
- Data truncated for column 'diameter' at row 1 on Mysql
- How to get count of the sql search query?
- code igniter delete data from different model using single query
- Check availability between two dates in a day field
- CodeIgniter DataMapper crash
- Datamapper ORM for Codeigniter
- How to transform the results of a stored procedure in to a list of object then convert to json in CI?
- How to get data from two table and order by second table Datamapper
- Datamapper Codeigniter use condition in where_related clause
- Join in datamapper in codeigniter
- Call to undefined method MY_Loader::_ci_load_library()
- Inner join in datamapper codeigniter
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Taken from http://ellislab.com/codeigniter%20/user-guide/libraries/language.html
$this->lang->load('filename', 'language');
Have you tried the following?
Hope that helps...