Yes DB structure,code and model files are identical.

>From Development: (Fetched from mysql yog)

CREATE TABLE `users` (
   `id` int(10) NOT NULL AUTO_INCREMENT,
   `username` varchar(40) NOT NULL,
   `password` varchar(40) NOT NULL,
   `email` varchar(255) NOT NULL,
   `first_name` varchar(40) NOT NULL,
   `last_name` varchar(40) NOT NULL,
   `created` datetime DEFAULT NULL,
   `modified` datetime DEFAULT NULL,
   PRIMARY KEY (`id`),
   UNIQUE KEY `username` (`username`,`email`)
 ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1

>From QA: (fetched from cli)

mysql> show create table users;
+-------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table | Create
Table
|
+-------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| users | CREATE TABLE `users` (
  `id` int(10) NOT NULL auto_increment,
  `username` varchar(40) NOT NULL,
  `password` varchar(40) NOT NULL,
  `email` varchar(255) NOT NULL,
  `first_name` varchar(40) NOT NULL,
  `last_name` varchar(40) NOT NULL,
  `created` datetime default NULL,
  `modified` datetime default NULL,
  PRIMARY KEY  (`id`),
  UNIQUE KEY `username` (`username`,`email`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 |
+-------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

mysql>

Please suggest.

Regards
Tapan Thapa

On Mon, Feb 21, 2011 at 1:11 PM, Jeremy Burns | Class Outfit <
[email protected]> wrote:

> Then your value is not being set in the session and you won't be able to
> retrieve it. Are you database structures the same? Have you changed anything
> to do with your User model? Are the code sets identical?
>
>
> Jeremy Burns
> *Class Outfit*
> *
> *
> [email protected] <[email protected]>
> http://www.classoutfit.com
>
> On 21 Feb 2011, at 07:39, Tapan Kumar Thapa wrote:
>
> Please find the debug info from development machine and QA machine.
>
> Development:
>
> Array
> (
>     [id] => 1
>     [username] => khbk
>     [email] => [email protected]
>
>     [first_name] => Mahuaa
>     [last_name] => Television
>     [created] =>
>     [modified] =>
> )
>
> QA:
>
> Array
> (
>     [username] => admin
>     [password] => suresh
>
> )
>
> Please suggest
>
> Regards
> Tapan Thapa
>
>
>
> On Mon, Feb 21, 2011 at 1:07 PM, Jeremy Burns | Class Outfit <
> [email protected]> wrote:
>
>> What happens when you debug out the value of the auth session variables?
>> Is the value there?
>>
>> Jeremy Burns
>> *Class Outfit*
>> *
>> *
>> [email protected] <[email protected]>
>> http://www.classoutfit.com
>>
>> On 21 Feb 2011, at 07:34, Tapan Kumar Thapa wrote:
>>
>> Unfortunately i am not getting any error but my view shows blank in case
>> no value retrieved from session for first_name. But if i change the code to
>> read username from session it start displaying in my view.
>>
>> Please suggest.
>>
>> Regards
>> Tapan Thapa
>>
>> On Mon, Feb 21, 2011 at 12:52 PM, andy_the ultimate baker <
>> [email protected]> wrote:
>>
>>> will u please tell what error is coming out?
>>>
>>> On Feb 21, 12:12 pm, Tapan Kumar Thapa
>>> <[email protected]> wrote:
>>> > Hello Community,
>>> >
>>> > I am using auth component in my code and while retrieving first_name
>>> from
>>> > session ($this->Session->read('Auth.User.first_name')) on my
>>> development
>>> > machine(windows with wamp), it is working fine.
>>> >
>>> > However if deploying the same code on QA machine (linux with apache and
>>> php
>>> > separately), i am not able to get the first_name from session although
>>> i
>>> > have noticed if i am trying to retrieve username or password from
>>> session,
>>> > it is working.
>>> >
>>> > Working on QA - $this->Session->read('Auth.User.username')
>>> > Working on QA - $this->Session->read('Auth.User.password')
>>> > *Not working on QA - $this->Session->read('Auth.User.first_name) or
>>> > $this->Session->read('Auth.User.email')*
>>> >
>>> > Please suggest.
>>> >
>>> > Regards
>>> > Tapan Thapa
>>> > India
>>>
>>> --
>>> Our newest site for the community: CakePHP Video Tutorials
>>> http://tv.cakephp.org
>>> Check out the new CakePHP Questions site http://ask.cakephp.org and help
>>> others with their CakePHP related questions.
>>>
>>>
>>> To unsubscribe from this group, send email to
>>> [email protected] For more options, visit this group
>>> at http://groups.google.com/group/cake-php
>>>
>>
>>
>> --
>> Our newest site for the community: CakePHP Video Tutorials
>> http://tv.cakephp.org
>> Check out the new CakePHP Questions site http://ask.cakephp.org and help
>> others with their CakePHP related questions.
>>
>>
>> To unsubscribe from this group, send email to
>> [email protected] For more options, visit this group
>> at http://groups.google.com/group/cake-php
>>
>>
>>
>> --
>> Our newest site for the community: CakePHP Video Tutorials
>> http://tv.cakephp.org
>> Check out the new CakePHP Questions site http://ask.cakephp.org and help
>> others with their CakePHP related questions.
>>
>>
>> To unsubscribe from this group, send email to
>> [email protected] For more options, visit this group
>> at http://groups.google.com/group/cake-php
>>
>
>
> --
> Our newest site for the community: CakePHP Video Tutorials
> http://tv.cakephp.org
> Check out the new CakePHP Questions site http://ask.cakephp.org and help
> others with their CakePHP related questions.
>
>
> To unsubscribe from this group, send email to
> [email protected] For more options, visit this group
> at http://groups.google.com/group/cake-php
>
>
>  --
> Our newest site for the community: CakePHP Video Tutorials
> http://tv.cakephp.org
> Check out the new CakePHP Questions site http://ask.cakephp.org and help
> others with their CakePHP related questions.
>
>
> To unsubscribe from this group, send email to
> [email protected] For more options, visit this group
> at http://groups.google.com/group/cake-php
>

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
[email protected] For more options, visit this group at 
http://groups.google.com/group/cake-php

Reply via email to