Welcome Guest, Not a member yet? Register   Sign In
Create news items Tutorial Not Working
#7

(This post was last modified: 02-01-2018, 01:05 PM by InsiteFX.)

The  404 is being generated because the News Tutorial is missing
the view/news/success.php HTML view...

In the News/create method

view/news/success.php
PHP Code:
<?php
echo '<h2>Create News Item - Success</h2>'

I just built the whole tutorial and it runs fine!

There is an error in the News controllers constructor:

PHP Code:
   /**
     * __construct ()
     * -----------------------------------------------------------------------
     *
     * Class    Constructor
     *
     * NOTE: Not needed if not setting values or extending a Class.
     */
 
   public function __construct()
 
   {
 
       parent::__construct();

 
       $this->load->model('news_model');

 
       // This  should be ( $this->load->helper('url'); )
 
       $this->load->helper('url_helper');

 
       log_message('debug'"News Controller Class Initialized");
 
   
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply


Messages In This Thread
RE: Create news items Tutorial Not Working - by InsiteFX - 02-01-2018, 01:01 PM



Theme © iAndrew 2016 - Forum software by © MyBB