Re: CakePHP 1.2 Layout error

2013-01-02 Thread Marcus James
Found the error there was a file BOM encoded -- Like Us on FaceBook https://www.facebook.com/CakePHP Find us on Twitter http://twitter.com/CakePHP --- You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to cake-php@google

Database Connection MS SQL 2012 With CakePHP 2.X

2013-01-02 Thread Mohamad Zulhelmi Redzwan
I try to make connection with my local ms sql db with this settings public $default = array( 'datasource' => 'Database/Sqlserver', 'persistent' => false, 'host' => 'localhost\SQLEXPRESS', 'login' => 'sa', 'password' => '123456', 'database' => 'ktmb', 'prefix' => '', //'encoding' => 'utf8', ); but

Re: queries on HABTM relationships

2013-01-02 Thread Stefano Campanella
Yes I am sure. In my case id is not numeric, the permission name is already an identifier for the permission On Wednesday, January 2, 2013 3:56:41 PM UTC+1, Maicon Pinto wrote: > > array('*id*'=>'can_access_admin') > > Do you have sure is ID? Usually ID is numeric. > > Em terça-feira, 1 de

Re: how to create a sample theme in cakephp 2.x

2013-01-02 Thread Passivhaus Experte
Am 02.01.2013 13:09, schrieb Siva Kumar: i am beginner of cakephp. now only i learning it. plz if any one know it means help me to create a theme. -- CakePHP Cookbook 2.x Themes http://book.cakephp.org/2.0/en/views/themes.html -- Grüße Sie freundlich. Tim Bischoff (Indianer3c) Blogautor Passiv

how to create a sample theme in cakephp 2.x

2013-01-02 Thread Siva Kumar
i am beginner of cakephp. now only i learning it. plz if any one know it means help me to create a theme. -- Like Us on FaceBook https://www.facebook.com/CakePHP Find us on Twitter http://twitter.com/CakePHP --- You received this message because you are subscribed to the Google Groups "CakePH

Re: queries on HABTM relationships

2013-01-02 Thread Maicon Pinto
array('*id*'=>'can_access_admin') Do you have sure is ID? Usually ID is numeric. Em terça-feira, 1 de janeiro de 2013 19h23min58s UTC-3, Stefano Campanella escreveu: > > Hello all, > this is my first time posting here. I recently started to study how to use > CakePHP and I'm trying to dev

Best practices for general checks and redirects?

2013-01-02 Thread Jamie Krasnoo
Hey all, I'm new to CakePHP and have a lot of experience with other frameworks. I'd like to know what the best practice is for doing checking for things before any controller is run? Does it belong in the AppController's beforeFilter callback, the afterFilter in UsersController, or is there a p

Re: CakePHP 1.2 Layout error

2013-01-02 Thread Maicon Pinto
Hello Marco, Do you can to put of source code of your Layout? ;) Em quarta-feira, 2 de janeiro de 2013 03h39min30s UTC-3, marco metal escreveu: > > Hi, > > I made a custom layout for admin panel. The problem is when i validated my > HTML i am getting an error > > *"* *Non-space characters fou

Re: queries on HABTM relationships

2013-01-02 Thread Stefano Campanella
Works like a charm! Thank you so much cricket! Now to reply to your questions: I am using a count because I don't need any content returned. With this query I just check if the record exists, if it does then I know the Group has the specified permission. The count will always return 0 if group 1

Re: queries on HABTM relationships

2013-01-02 Thread lowpass
I just realised that this also makes no sense. Why are you running a COUNT(*) on Group when your condition is to select only the Group with id = 1? Perhaps you need to start from the beginning and explain what it is you're looking for. And I'll second the suggestion to use ACL. On Wed, Jan 2, 20

Re: queries on HABTM relationships

2013-01-02 Thread lowpass
I think that should be something like: $data = $this->controller()->Group->find( 'count', array( 'conditions' => array( 'Group.id' => 1 // hard-coded for testing? ), 'joins' => array( ar

Re: queries on HABTM relationships

2013-01-02 Thread Leonardo
Excuse me Ivan, but there is no reference to userScope attribute anywhere in the source code of cakePHP, I assume you mean $this->Auth->scope. But it still doesn't help me, is was under the impression that that attribute is used to impose conditions for logging users in, this is not my case,

Re: CAKEPHP 2.1.x on Pagodabox | foreach multiple items for each slide (bootstrap carousel)

2013-01-02 Thread SpazzyV
Sven - It's not super elegant but you could use a straight for loop and just do some simple calculations to determine when you have done the third loop. Since I am not doing anything like yours, and don't have the full code there is no way for me to test. However, I believe I have walked t

Re: queries on HABTM relationships

2013-01-02 Thread Ivan Rimac
This simply is solvable with: $this->Auth->userScope = array('User.can_access_admin' => 1); Put that in you beforeFilter function inside AppController, and your problems are solved. If you want to redirect them, than you shoukd do something like this: if ($this->Auth->user()) { if(isset(

Re: queries on HABTM relationships

2013-01-02 Thread Stefano Campanella
mmh, ok. But the problem is that even if I change the find("count") into a find("all") it still loads data only from Group table. Yes I am using the AuthComponent for logged in users. But since I want to use my Authorize class also for managing what anonymous users can access I am calling $this

Re: queries on HABTM relationships

2013-01-02 Thread lowpass
When running a find('count') the contain param is useless. This is because the main query is fetching a sum, not a set of records from which to fetch the associated 'contain' records. Are you using AuthComponent? You can use that to fetch the User and associated records. However, I can't remember

Re: CakePHP 1.2 Layout error

2013-01-02 Thread lowpass
My guess is that one of your files contains a byte-order mark (BOM) which you should remove. What editor are you using? Be sure to check not only your layout template, but any view or element templates as well. On Wed, Jan 2, 2013 at 1:39 AM, Marcus James wrote: > Hi, > > I made a custom layout

Re: I want to change password using cake php

2013-01-02 Thread Paulo Braga
Ok, you want to change a password in cake. you have to have somthing like this: old password: _ new password: confirm new password: right?? so first you have to make a method in UsersController called changePassword(){} and a view in fol

Re: Cake 2.2 Auth login failure

2013-01-02 Thread Paulo Braga
Post your AppController and UsersController(login method), and a screenshot of your users table. On Monday, December 31, 2012 11:40:48 PM UTC+2, Martin Halla wrote: > > Hi, > > I have this app that uses the Auth component for login Everything works on > the local machine, but fails big time live

Re: queries on HABTM relationships

2013-01-02 Thread Stefano Campanella
Yes I did, but it does not suit my needs or my organization structure. For me it's at the same time too complicated and too limited. I don't need a tree, I need a graph, where a user can have more than one group; because users can be categorized in more than one way. Anyway, do you have any ide

Re: Different columns for different languages?

2013-01-02 Thread Salines
Hi, all you need is to use TranslateBehavior http://book.cakephp.org/2.0/en/core-libraries/behaviors/translate.html -- Like Us on FaceBook https://www.facebook.com/CakePHP Find us on Twitter http://twitter.com/CakePHP --- You received this message because you are subscribed to the Google Group

Different columns for different languages?

2013-01-02 Thread marcus33cz
Hi all, I'm currently learning cakePHP and here's one thing I have no idea how to solve. I have a table named "countries" (id, iso, name, iso3, numcode) which is also a Model (with a controller and some views). This table contains 239 entries - all of them have their name (such as "Germany" e