CodeIgniter Forums
gallery error - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24)
+--- Thread: gallery error (/showthread.php?tid=65756)



gallery error - davy_yg - 07-20-2016

An uncaught Exception was encountered
Type: RuntimeException
Message: Unable to locate the model you have specified: Gallery
Filename: C:\Program Files (x86)\EasyPHP-Devserver-16.1\eds-www\CompanyGiondaCI\system\core\Loader.php
Line Number: 344
Backtrace:
File: C:\Program Files (x86)\EasyPHP-Devserver-16.1\eds-www\CompanyGiondaCI\application\controllers\Cpages.php
Line: 201
Function: model
File: C:\Program Files (x86)\EasyPHP-Devserver-16.1\eds-www\CompanyGiondaCI\index.php
Line: 315
Function: require_once

--------------------------------------



Code:
public function addslideshows() {

        $this->load->model('gallery');
        
        $this->load->view('addslideshows');
    
    }



models/Mpages.php

PHP Code:
public function gallery()
    {
        
$data = array(
            
'slideshow_image' => $this->input->post('slideshow_image'),
            
'image_id' => $this->input->post('image_id'),
            
'title' => $this->input->post('title'),
            
'images' => $this->input->post('images')        
        );
        
        return 
$this->db->insert('slideshow'$data);
            
    } 


controllers/cpages.php

PHP Code:
    public function addslideshows() {

        
$this->load->model('gallery');
        
        
$this->load->view('addslideshows'); 
    
    } 



RE: gallery error - mwhitney - 07-20-2016

PHP Code:
$this->load->model('gallery'); 

This is looking for a file in the models directory named Gallery.php, but you've pasted a gallery() method from models/Mpages.php.

Read the user guide, especially the Tutorial: https://codeigniter.com/user_guide/tutorial/index.html
and a few of the items in the General Topics section: https://codeigniter.com/user_guide/general/index.html


RE: gallery error - albertleao - 07-20-2016

a function isn't a model