Re: Cakephp 2 - dynamic meta tags from beforeFilter

2014-07-01 Thread vbpupil
Andras Awesome Thanks for this, easy when you know how. On Tuesday, July 1, 2014 6:50:40 PM UTC+1, Andras Kende wrote: > > app/View/Layouts/default.ctp: > property="og:image" content="http://www.myurl.co.uk/img/icon.png"/> > > > im guessing that the best way to do this is by setting the

Re: Cakephp 2 - dynamic meta tags from beforeFilter

2014-07-01 Thread Andras Kende
app/View/Layouts/default.ctp: and add this to your controllers actions or views: $meta_description = $house['House']['meta_description']; $this->set(compact('meta_description')); Andras Kende On Jul 1, 2014, at 2:33 AM, vbpupil wrote: > Hi Guys > > Im trying to generate dynamic facebook meta

Re: cross tables in cake 1.3

2014-07-01 Thread Борислав Събев Borislav Sabev
I. There should not be a case where you have to load so many models in a single controller. As all objects in OOP, it is good that controllers be delegated *only one specific task*, not 2, not 3 and not 25... Are you sure that there is no way that you can extract so functionality and move it t

Re: Use 2 tables for update

2014-07-01 Thread essteffan
it looks like i didn't explain right: Please have a new more complete explanation *I have 2 tables: users and users_details. UsersDetail Model:* public $belongsTo = array( 'User' => array( 'className' => 'User', 'foreignK

Re: Database Error: SQLSTATE[42000] error cakephp 2

2014-07-01 Thread vbpupil
Thanks AD7six, this fixed my issue and is something that I trip over a lot. I will certainly try to remember this in future. On Friday, June 20, 2014 3:54:27 PM UTC+1, vbpupil wrote: > > hey Guys > > im getting this error > > Database Error > > *Error: * SQLSTATE[42000]: Syntax error or access

Re: CakePHP NEWBIE needs help w/ international phone number add on contact form...

2014-07-01 Thread vbpupil
Hi Jessica Are you failing the validation? this is set in the model. See here for setting up model validation http://book.cakephp.org/2.0/en/models/data-validation.html I hoe this helps. On Monday, June 30, 2014 10:30:23 PM UTC+1, Jessica wrote: > > Hi, > >Please bear with me! Total newb

Cakephp 2 - dynamic meta tags from beforeFilter

2014-07-01 Thread vbpupil
Hi Guys Im trying to generate dynamic facebook meta tags for a share button eg: http://www.myurl.co.uk/img/icon.png"/> im guessing that the best way to do this is by setting the values in the beforeFilter of my controller. ie controller: public function beforeFilter(){

CakePHP NEWBIE needs help w/ international phone number add on contact form...

2014-07-01 Thread Jessica
Hi, Please bear with me! Total newbie in the CakePHP world. I need to be able to provide the option to add an international phone number on my customers registration form page. Currently, only a US 10 digit phone number is being allowed to be entered. I really need to be able to provide t

cake 2.5.2 installation ok, but not working

2014-07-01 Thread loucode