Welcome Guest, Not a member yet? Register   Sign In
Pagination Error (using htaccess) [SOLVED]
#1

[eluser]Deathcode[/eluser]
Hello Guys...

i used CI and trying to make pagination at my back-end but i have a problem when i removed index.php using htaccess, when i click "next" then the error page 404 is showed. How to make pagination work again???

Here is my .htaccess:
Code:
<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteCond $1 !^(index\.php|images|css|js|robots\.txt|favicon\.ico|license.txt)
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ ./index.php/$1 [L,QSA]
</IfModule>

controller :
Code:
$this->load->library('pagination');
        
$config['base_url'] = base_url().'admin/joblisting';
$config['total_rows'] = $this->db->count_all('jobvacancy');
$config['per_page'] = 5;
$config['num_links'] = 10;
$offset    = (int)$this->uri->segment(3);
$offset = ( ! is_numeric($offset) || $offset < 1) ? 0 : $offset;
        
$this->pagination->initialize($config);
$this->load->model('data_model');
$data['jobRec'] = $this->data_model->getAllJoblist($config['per_page'], $offset);

$data['main_content'] = 'admin_views/joblisting';
$this->load->view('admin_views/site_template/template',$data);
Please help me resolved this coz i already spend 6 hours for this problem and i'm still stuck....

thanks before.


Messages In This Thread
Pagination Error (using htaccess) [SOLVED] - by El Forum - 08-18-2010, 03:21 AM
Pagination Error (using htaccess) [SOLVED] - by El Forum - 08-18-2010, 07:13 AM
Pagination Error (using htaccess) [SOLVED] - by El Forum - 08-18-2010, 07:27 AM
Pagination Error (using htaccess) [SOLVED] - by El Forum - 08-20-2010, 10:54 AM
Pagination Error (using htaccess) [SOLVED] - by El Forum - 08-25-2010, 04:37 AM
Pagination Error (using htaccess) [SOLVED] - by El Forum - 08-25-2010, 10:24 AM
Pagination Error (using htaccess) [SOLVED] - by El Forum - 08-25-2010, 07:13 PM
Pagination Error (using htaccess) [SOLVED] - by El Forum - 08-25-2010, 07:15 PM
Pagination Error (using htaccess) [SOLVED] - by El Forum - 08-25-2010, 11:19 PM
Pagination Error (using htaccess) [SOLVED] - by El Forum - 08-26-2010, 12:23 AM
Pagination Error (using htaccess) [SOLVED] - by El Forum - 08-26-2010, 12:33 AM
Pagination Error (using htaccess) [SOLVED] - by El Forum - 08-26-2010, 12:57 AM
Pagination Error (using htaccess) [SOLVED] - by El Forum - 08-26-2010, 01:08 AM



Theme © iAndrew 2016 - Forum software by © MyBB