![]() |
Add 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: Add error (/showthread.php?tid=65620) |
Add error - davy_yg - 07-02-2016 http://127.0.0.1/CompanyGiondaCI/index.php/cpages/addparentctgcreate Warning: include(C:\Program Files (x86)\EasyPHP-Devserver-16.1\eds-www\CompanyGiondaCI\application\views\errors\html\error_php.php): failed to open stream: No such file or directory in C:\Program Files (x86)\EasyPHP-Devserver-16.1\eds-www\CompanyGiondaCI\system\core\Exceptions.php on line 269 Warning: include(): Failed opening 'C:\Program Files (x86)\EasyPHP-Devserver-16.1\eds-www\CompanyGiondaCI\application\views\errors\html\error_php.php' for inclusion (include_path='.;C:\php\pear') in C:\Program Files (x86)\EasyPHP-Devserver-16.1\eds-www\CompanyGiondaCI\system\core\Exceptions.php on line 269 Warning: include(C:\Program Files (x86)\EasyPHP-Devserver-16.1\eds-www\CompanyGiondaCI\application\views\errors\html\error_php.php): failed to open stream: No such file or directory in C:\Program Files (x86)\EasyPHP-Devserver-16.1\eds-www\CompanyGiondaCI\system\core\Exceptions.php on line 269 Warning: include(): Failed opening 'C:\Program Files (x86)\EasyPHP-Devserver-16.1\eds-www\CompanyGiondaCI\application\views\errors\html\error_php.php' for inclusion (include_path='.;C:\php\pear') in C:\Program Files (x86)\EasyPHP-Devserver-16.1\eds-www\CompanyGiondaCI\system\core\Exceptions.php on line 269 Hello, I am trying to add this data to views/addparentctg.php PHP Code: <div class="row-fluid"> controllers/cpages.php PHP Code: class Cpages extends CI_Controller { models/mpages.php PHP Code: class Mpages extends CI_Controller { How to fix the error so that I can add new menu for parent category smoothly? Thanks in advance. RE: Add error - InsiteFX - 07-02-2016 Why are you loading a library in a view? RE: Add error - davy_yg - 07-02-2016 I have no choice otherwise this: PHP Code: <?php echo validation_errors(); ?> Will turns into new error message. Any other clue or suggestion? RE: Add error - arma7x - 07-02-2016 (07-02-2016, 08:22 AM)davy_yg Wrote: I have no choice otherwise this:But you already load in controller constructor $this->load->library('form_validation') RE: Add error - arma7x - 07-02-2016 PHP Code: Warning: include(C:\Program Files (x86)\EasyPHP-Devserver-16.1\eds-www\CompanyGiondaCI\application\views\errors\html\error_php.php): failed to open stream: No such file or directory in C:\Program Files (x86)\EasyPHP-Devserver-16.1\eds-www\CompanyGiondaCI\system\core\Exceptions.php on line 269 The problem is file C:\Program Files (x86)\EasyPHP-Devserver-16.1\eds-www\CompanyGiondaCI\application\views\errors\html\error_php.php does not found. RE: Add error - davy_yg - 07-02-2016 I add the error folder: This is my new error: http://127.0.0.1/CompanyGiondaCI/index.php/cpages/addparentctgcreate An Error Was Encountered Unable to load the requested file: cpages/addparentctgcreate.php |