Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have following warnings

Warning (2): Illegal offset type [CORE/Cake/Model/Model.php, line 2667]

Warning (2): Illegal offset type [CORE/Cake/Model/Model.php, line 2643]

The model code is as follows:

`<?
class Register extends AppModel
{
    var $name = 'Register';
    var $useTable = 'registers';
function validateLogin($data)
    {
        $user = $this->find(array('username' => $data['username'], 'password' => $data['password']), array('id', 'username'));
        if(empty($user) == false)
            return $user['Register'];
        return false;
    } 
public $validate = array(
        'first_name' => array(
        'rule' => 'notEmpty',
    'required' => true ,
    'message' => 'this field can not be set empty'
    ),
        'username' => array(
        'rule' => 'notEmpty'
        ),
    'password'=>array(
    'rule'=>'notempty'
    ),
    'cnfrmpassword'=>array(
    'rule'=>'notempty'
    )
    );
}
?>`

The view code is reg.ctp

`<h2>Registration Form</h2>
<?php echo $this->Html->link('Register',array( 'action' => 'login')); 

echo $this->form->create('Register', array('action' => 'register'));
echo $this->form->input('first_name');
echo $this->form->input('username');
echo $this->form->input('password');
echo $this->form->input('cnfrmpassword', array('type' => 'password'));
echo $this->form->submit();
echo $this->form->end();
?>`

login.ctp

`<h1>Sign in form</h1>
    <?php
    echo $this->form->create('Register',array('action'=>'login'));
    echo $this->form->input('username');
    echo $this->form->input('password');
    echo $this->form->end('Sign in');
    ?>

<?php echo $this->Html->link('Logout', array('controller' => 'Registers', 'action' => 'logout')); ?>
<br/><br/>`

and the controller code is

`<?
class RegistersController extends AppController
{
var $name = 'Register';
 var $helpers = array('Html', 'Form');
public function reg() {
      if (!empty($this->data))
         {

              $this->Register->create();
             // $this->Register->save($this->data);
              $this->redirect(array('action' => 'reg'));

      }
  }

public function register() {
        if ($this->request->is('post')) {
            if ($this->Register->save($this->request->data)) {
                $this->Session->setFlash('Your are registered');
                $this->redirect(array('action' => 'reg'));
            } else {
                $this->Session->setFlash('Unable to register');
        $this->redirect(array('action' => 'reg'));
            }
        }
    }
 function beforeFilter()
    {
        $this->__validateLoginStatus();
    } 
function login()
    {
        if(empty($this->data) == false)
        {
            if(($user = $this->Register->validateLogin($this->data['Register'])) == true)
            {
                $this->Session->write('Register', $user);
                $this->Session->setFlash('You\'ve successfully logged in.');
                $this->redirect('reg');
                exit();
            }
            else
            {
                $this->Session->setFlash('Sorry, the information you\'ve entered is incorrect.');
                exit();
            }
        }
    }

    function logout()
    {
        $this->Session->destroy('Register');
        $this->Session->setFlash('You\'ve successfully logged out.');
        $this->redirect('reg');
    } 


function __validateLoginStatus()
    {
        if($this->action != 'login' && $this->action != 'logout')
        {
            if($this->Session->check('User') == false)
            {
                $this->redirect('login');
                $this->Session->setFlash('The URL you\'ve followed requires you login.');
            }
        }
    }

}
?>`

You've accessed the secret secure location! `

share|improve this question
   
@ Lijo solution??? – user786 Aug 22 '12 at 4:13
1  
Please provide more information instead of just pasting your code. At least the exact version of CakePHP would be helpful. – boundaryfunctions Aug 26 '12 at 14:24

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.