Welcome Guest, Not a member yet? Register   Sign In
404 error
#1

[eluser]Evollution[/eluser]
http://www.fifago.com/demo2/index.php/main

/demo2/aplication/controllers/main.php

Code:
<?php
class Main extends CI_Controller {
  
function __construct()
    {
    parent::__construct();

    }

  
   function index()
   {
      // Write to $title
      $this->template->write('title', 'Welcome to the Template Library Docs!');
      
      // Write to $content
      $this->template->write_view('content', 'post');
      
      // Write to $sidebar
      $this->template->write_view('sidebar', 'common/sidebar');
      
      // Render the template
      $this->template->render();
   }
  
}
#2

[eluser]Cristian Gilè[/eluser]
Hi Evollution, check your routing rules.

Cristian Gilè




Theme © iAndrew 2016 - Forum software by © MyBB