Welcome Guest, Not a member yet? Register   Sign In
[SOLVED] Cannot Login it shows Object not found
#1

(This post was last modified: 02-21-2017, 04:21 AM by davy_yg.)

admin/views/login.php

Code:
<?php $this->load->library('form_validation'); ?><?php echo validation_errors(); ?>
<?php echo form_open('cpages/ceklogin'); ?> <div class="login-card">

<center><?php //echo $warning; ?> <?php echo $this->session->flashdata('warning'); ?></center>
<h2>Gionda CMS Login</h2><br> <form> <div class="login"><input type="text" name="username" placeholder="Username"></div>
<div class="login"><input type="password" name="password" placeholder="Password"></div><br>
<input type="submit" name="login" class="login login-submit" value="login"> </form> <div class="login-help">
<a href="#">Register</a> • <a href="#">Forgot Password</a></div></div>

controllers/Cpages.php


Code:
public function ceklogin() {
       $username = $this->input->post('username', TRUE);
       $password = $this->input->post('password', TRUE);
       $this->db->where('username', $username);
       $this->db->where('password', $password);
       $query=$this->db->get('login');
       if ($query->num_rows() >= 1)
            {
               // echo 'LOGIN BERHASIL !';
               $this->load->model('Mpages');
               $data['login']=$this->db->get('login');  
               $data['login']=$this->Mpages->login();
               $this->load->view('index', $data);
            }
       else
           {
               // echo 'LOGIN GAGAL !';
               $this->session->set_flashdata('warning', 'Your username and password are wrong !');
               //$data['warning']='Your username and password are wrong !';
               $this->load->view('login');
           }          
   }

models/Mpages.php

Code:
public function login()
   {
       $query = $this->db->get('login');
       return $query->result();
   }

username email password role

user [email protected] 12345 administrator user2 [email protected] $2y$10$PrDTzzETQ.NzI9eIN0WYDubhBZhkg9XEo10MxRYpv4M manager
I have tried to login with username: user password: 12345 and have not been successful to login yet. I wonder why?
http://localhost/masterlinkci2/cpages/ceklogin

Object not found!

The requested URL was not found on this server. The link on the referring page seems to be wrong or outdated. Please inform the author of that page about the error.
If you think this is a server error, please contact the webmaster.

I wonder how to route it:

routes.php
Code:
$route['default_controller'] = 'cpages/login';
   $route['cpages/login'] = 'cpages/login';
" If I looks more intelligence please increase my reputation."
Reply
#2

It directly goes to : http://localhost/masterlinkci2/cpages/ceklogin

Why not localhost/masterlinkci2/admin/index.php/cpages/ceklogin ? for example.
" If I looks more intelligence please increase my reputation."
Reply




Theme © iAndrew 2016 - Forum software by © MyBB