Re: How to use tinymce plugin?

2013-04-12 Thread Chris
hi andrewperk,... 
I download ckeditor too, but having a problem with submission,... it's not 
submitting at all,... seems like "content" field reading empty even when I 
type something in there,... is there something else to it...? can you share 
with us,... 

thanks in advance 

Form->create('PhotoComment', array('id'=>'FormId')); ?> 
Form->hidden('user_id', array('value' => 
$user_object['id'])) ?>

  SmileIcon('PhotoCommentContent'); ?>

Html->script('ckeditor/ckeditor'); ?>



Form->textarea('content', array('rows' => '3', 'cols' => 
'5', 'class' => 'ckeditor')); ?>



submit('Add', array('url'=> 
array('controller'=>'photo_comments', 'action'=>'ajax_add/'. 
$photo['Photo']['id'] ), 'update' => 'updateDiv', 'complete' => 
'javascript:resetThisForm();')); ?> 
end(); ?>



On Thursday, November 10, 2011 9:36:39 AM UTC-8, andrewperk wrote:
>
> I also had trouble using tinymce. I then tried yui's rich text editor 
> and ran into a lot of styling issues and conflicts. 
>
> Finally I found ckeditor: http://ckeditor.com/. It works flawlessly 
> for me and is very easy to integrate, like 4 steps total. 
>
> 1. Just download and put the ckeditor folder into your webroot/js/ 
>
> 2. Include a js link to the webroot/js/ckeditor/ckeditor.js file: 
> $this->Html->script("ckeditor/ckeditor"); 
>
> 3. Add the 'ckeditor' class to your textarea: 
> $this->Form->textarea('fieldname', array('class'=>'ckeditor')); 
>
> That's it, you can customize the tool bars on the editor by changing 
> the ckeditor/config.js file, by doing something like so for just a 
> very simple editor, or add more for a complex one: 
>
> CKEDITOR.editorConfig = function( config ) 
> { 
> // Define changes to default configuration here. For example: 
> // config.language = 'fr'; 
> // config.uiColor = '#AADC6E'; 
>
> config.toolbar = 'MyToolbar'; 
>
> config.toolbar_MyToolbar = 
> [ 
> { name: 'basicstyles', items : 
> [ 'Bold','Italic','Strike','-','RemoveFormat' ] }, 
> { name: 'paragraph', items : 
> [ 'NumberedList','BulletedList','-','Outdent','Indent','-','Blockquote' ] 
> }, 
> ]; 
> }; 
>
>
>
> On Nov 9, 7:30 am, ahmed fakher  wrote: 
> > I have tried many times to use this plugin and I failed. I am 
> > following documentation, but it does not work for me. I am posting the 
> > simple code here, to know what wrong I am doing. 
> > 
> > 1-I put this plugin in this folder app/plugins 
> > 
> > 2- I add TinyMce helper to articles_controller 
> > 
> >  > 
> > class ArticlesController extends AppController { 
> > // good practice to include the name variable 
> > var $name = 'articles'; 
> > 
> > // load any helpers used in the views 
> > var $helpers = array('Html', 'Form','TinyMce.TinyMce'); 
> > 
> > /** 
> >  * index() 
> >  * main index page of the formats page 
> >  * url: /formats/index 
> >  */ 
> >   function index(){ 
> >   // get all formats from database where status = 1 
> >$articles = $this->Article->find("all") ; 
> > 
> > $this->set('articles', $articles); 
> > 
> > } 
> > 
> > function admin_add() { 
> > // if the form data is not empty 
> > if (!empty($this->data)) { 
> > // initialise the format model 
> >  $this->Article->save($this->data); 
> > 
> > // set a flash message 
> > $this->Session->setFlash('The Format has been saved'); 
> > // redirect 
> > $this->redirect(array('action'=>'index')); 
> > } else { 
> > // set a flash message 
> > $this->Session->setFlash('The Format could not be 
> > saved. Please, try again.','default', array('class' => 'flash_bad')); 
> > } 
> > } 
> > 
> > } 
> > ?> 
> > 
> > 3- in the view file articles/admin_add.ctp I added the editor 
> > 
> > // i think the problem in this code 
> > TinyMce->editor(array( 
> > 
> > 'theme' => 'advanced' 
> > ));   ?> 
> >  
> > 
> > create('Article');?> 
> >  
> > Add a article 
> >  > // create the form inputs 
> >echo $this->Form->input('title'); 
> >echo $this->Form->input('content');  ?> 
> >  
> > end('Add');?> 
> >  
> > 
> >  
> > link('List Articles', 
> > array('action'=>'index'));?> 
> > 

-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to cake-php+unsubscr...@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.
For more options, visit https://groups.goo

Re: login problem in deployed

2013-04-12 Thread Moawia Almardoud
This action ... Searching for index.HTML, search for it ...
On Apr 12, 2013 5:57 PM, "Antonio Flores Lara" 
wrote:

> i have a index() in Usercontroller
>
>
> public function index() {
> $this->User->recursive = 0;
> $this->set('users', $this->paginate());
> }
>
> El viernes, 12 de abril de 2013 06:48:41 UTC-5, Moawia escribió:
>>
>> Try to add function index(){} in UsersController
>> On Apr 11, 2013 7:42 PM, "Antonio Flores Lara" 
>> wrote:
>>
>>> hello ..i am new with cakephp ... i made a web aplication and deployed
>>> to hostgator  and  the send me this error
>>>
>>> Missing Method in UsersController
>>>
>>> *Error: *The action *index.html* is not defined in controller *
>>> UsersController*
>>>
>>> upload a older version  from  same proyect without login part and works
>>> fine..
>>>
>>> i dont  know where are my mistake .. i am supposed  in login part
>>> this sample login page  where i copied the code
>>> http://www.endyourif.com/**cakep**hp-2-x-login-system/
>>> http://bk-g-21.blogspot.mx/**201**1/05/tutorial-1-usar-el-**compon**
>>> ente-auth-en.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
>>> Groups "CakePHP" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to cake-php+u...@**googlegroups.com.
>>> To post to this group, send email to cake...@googlegroups.com.
>>> Visit this group at 
>>> http://groups.google.com/**group/cake-php?hl=en
>>> .
>>> For more options, visit 
>>> https://groups.google.com/**groups/opt_out
>>> .
>>>
>>>
>>>
>>  --
> 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 unsubscribe from this group and stop receiving emails from it, send an
> email to cake-php+unsubscr...@googlegroups.com.
> To post to this group, send email to cake-php@googlegroups.com.
> Visit this group at http://groups.google.com/group/cake-php?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to cake-php+unsubscr...@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Cache Rest

2013-04-12 Thread Leonardo Jorge Dias Carmo
Sup guys,

I'm developing a rest api for an app with cakephp to be consumed by 
smarthphones, and i need to make a cache of data.

I already make cache of queries with apc, but i still have traffic with 
this...

i'll probably use http cache expire, but when expire, the data can be the 
same and will generated unnecessary traffic because the size of packet...

Why i'm doing this??
3G in brazil sucks

My objective is reduce the traffic size

Example how will work:

 - SMARTHPHONE: Make a requisition

 - SERVER: receive the requisition, 

  - SERVER: generate a md5 of content

  - SERVER: save in a DB, the url and url parameters associated to the md5 
of content that will be returned

 - SERVER: return the content with generated md5
 
- SMARTHPHONE: storage the content, and create a hashmap with url with 
params, md5 of content, expire date, and the content

So when expires :

- SMARTHPHONE: make new requisition, sending the md5

- SERVER: receive the requisition and verify if the generated content is 
different verifying both md5

 - SERVER: if different, return the new content and new md5
 
 - SERVER: if equal, return the new expire date

 - SMARTHPHONE: if diffrent, storage the new data
 
 - SMARTHPHONE: if equal, update the new expire date

---
So, i don't know if already exist a plugin that handle this...

And what I wrote above make any sense


Thanks, and sorry for my english



-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to cake-php+unsubscr...@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: How to use tinymce plugin?

2013-04-12 Thread angel reyes
I tried your steps, it shows the editor but when i tried to submit the form 
it fails.
here is my code:

Form->create('try');
echo $this->Form->input('title');
echo $this->Html->script('ckeditor/ckeditor'); 
echo $this->Form->textarea('body', array('class'=>'ckeditor')); 
echo $this->Form->end('Save');
?>

On Thursday, November 10, 2011 9:36:39 AM UTC-8, andrewperk wrote:
>
> I also had trouble using tinymce. I then tried yui's rich text editor 
> and ran into a lot of styling issues and conflicts. 
>
> Finally I found ckeditor: http://ckeditor.com/. It works flawlessly 
> for me and is very easy to integrate, like 4 steps total. 
>
> 1. Just download and put the ckeditor folder into your webroot/js/ 
>
> 2. Include a js link to the webroot/js/ckeditor/ckeditor.js file: 
> $this->Html->script("ckeditor/ckeditor"); 
>
> 3. Add the 'ckeditor' class to your textarea: 
> $this->Form->textarea('fieldname', array('class'=>'ckeditor')); 
>
> That's it, you can customize the tool bars on the editor by changing 
> the ckeditor/config.js file, by doing something like so for just a 
> very simple editor, or add more for a complex one: 
>
> CKEDITOR.editorConfig = function( config ) 
> { 
> // Define changes to default configuration here. For example: 
> // config.language = 'fr'; 
> // config.uiColor = '#AADC6E'; 
>
> config.toolbar = 'MyToolbar'; 
>
> config.toolbar_MyToolbar = 
> [ 
> { name: 'basicstyles', items : 
> [ 'Bold','Italic','Strike','-','RemoveFormat' ] }, 
> { name: 'paragraph', items : 
> [ 'NumberedList','BulletedList','-','Outdent','Indent','-','Blockquote' ] 
> }, 
> ]; 
> }; 
>
>
>
> On Nov 9, 7:30 am, ahmed fakher  wrote: 
> > I have tried many times to use this plugin and I failed. I am 
> > following documentation, but it does not work for me. I am posting the 
> > simple code here, to know what wrong I am doing. 
> > 
> > 1-I put this plugin in this folder app/plugins 
> > 
> > 2- I add TinyMce helper to articles_controller 
> > 
> >  > 
> > class ArticlesController extends AppController { 
> > // good practice to include the name variable 
> > var $name = 'articles'; 
> > 
> > // load any helpers used in the views 
> > var $helpers = array('Html', 'Form','TinyMce.TinyMce'); 
> > 
> > /** 
> >  * index() 
> >  * main index page of the formats page 
> >  * url: /formats/index 
> >  */ 
> >   function index(){ 
> >   // get all formats from database where status = 1 
> >$articles = $this->Article->find("all") ; 
> > 
> > $this->set('articles', $articles); 
> > 
> > } 
> > 
> > function admin_add() { 
> > // if the form data is not empty 
> > if (!empty($this->data)) { 
> > // initialise the format model 
> >  $this->Article->save($this->data); 
> > 
> > // set a flash message 
> > $this->Session->setFlash('The Format has been saved'); 
> > // redirect 
> > $this->redirect(array('action'=>'index')); 
> > } else { 
> > // set a flash message 
> > $this->Session->setFlash('The Format could not be 
> > saved. Please, try again.','default', array('class' => 'flash_bad')); 
> > } 
> > } 
> > 
> > } 
> > ?> 
> > 
> > 3- in the view file articles/admin_add.ctp I added the editor 
> > 
> > // i think the problem in this code 
> > TinyMce->editor(array( 
> > 
> > 'theme' => 'advanced' 
> > ));   ?> 
> >  
> > 
> > create('Article');?> 
> >  
> > Add a article 
> >  > // create the form inputs 
> >echo $this->Form->input('title'); 
> >echo $this->Form->input('content');  ?> 
> >  
> > end('Add');?> 
> >  
> > 
> >  
> > link('List Articles', 
> > array('action'=>'index'));?> 
> > 

-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to cake-php+unsubscr...@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Download file

2013-04-12 Thread Rodrigo Mourão
What is your cakephp version?

Media was deprecated in cakephp 2.3
You must use http://book.cakephp.org/2.0/en/views/media-view.html

Regards

Em segunda-feira, 8 de abril de 2013 12h41min10s UTC-3, Muhammad Asyraf 
escreveu:
>
> Based from tutorial at 
> http://www.tuxradar.com/content/cakephp-tutorial-build-file-sharing-application
>  , 
> i manage to upload file and it capture the filename, filesize and filemime 
> without any error but when download the file, it will produce wrong file 
> mime for example, the file mime should be .jpg but in Google chrome it will 
> be .htm and in IE it only download file with the name but no extension for 
> that file. it seem something wrong with the controller codes.
>
> function download($id = null) {
> if (!$id) {
> $this->Session->setFlash(__('Invalid id for upload', true));
> $this->redirect(array('action' => 'index'));
> }
> $this->Upload->bindModel(array('hasOne' => array('UploadsUser')));
> $upload = $this->Upload->find('first', array(
> 'conditions' => array(
> 'Upload.id' => $id,
> 'OR' => array(
> 'UploadsUser.user_id' => $this->Auth->user('id'),
> 'Upload.user_id' => $this->Auth->user('id'),
> ),
> )
> ));
> if (!$upload) {
> $this->Session->setFlash(__('Invalid id for upload', true));
> $this->redirect(array('action' => 'index'));
> }
> $this->viewClass = 'Media'; 
> $filename = $upload['Upload']['filename'];
> $this->set(array(
> 'id' => $upload['Upload']['id'],
> 'name' => substr($filename, 0, strrpos($filename,'.')), 
> *'extension' => substr(strrchr($filename,'.'), 1),*
> 'path' => APP.'uploads'.DS,
> 'download' => true,
> ));
> }
>
>
> Based on the codes, maybe the extension have problem. Anyone can help? 
> thanks...
>

-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to cake-php+unsubscr...@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Cake ACL

2013-04-12 Thread wizkid


I have installed the AclExtras Plugin

and within the plugin have the following:  

public $dataSource = 'default';

my default datasource is:  

public $default = array(
'datasource' => 'Database/Sqlserver',
'persistent' => false,
'host' => 'IAINROSE\SQLEXPRESS',
'login' => 'administrator',
'password' => 'd3veloper',
'database' => 'clearview',
'prefix' => '',
);

The rest of the app can connect and functions as normal, but when I try and 
run the plugin commands e.g.  

cake -app "c:\wamp\www\app" AclExtras.AclExtras aco_sync

I get the following error:  

database connect Sqlserver is missing, or could not be created??

Any ideas why only the plugin can not connect??

-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to cake-php+unsubscr...@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: login problem in deployed

2013-04-12 Thread Antonio Flores Lara
i have a index() in Usercontroller 


public function index() {
$this->User->recursive = 0;
$this->set('users', $this->paginate());
}

El viernes, 12 de abril de 2013 06:48:41 UTC-5, Moawia escribió:
>
> Try to add function index(){} in UsersController
> On Apr 11, 2013 7:42 PM, "Antonio Flores Lara" 
> > 
> wrote:
>
>> hello ..i am new with cakephp ... i made a web aplication and deployed to 
>> hostgator  and  the send me this error
>>
>> Missing Method in UsersController
>>
>> *Error: *The action *index.html* is not defined in controller *
>> UsersController*
>>
>> upload a older version  from  same proyect without login part and works 
>> fine..
>>
>> i dont  know where are my mistake .. i am supposed  in login part
>> this sample login page  where i copied the code
>> http://www.endyourif.com/**cakephp-2-x-login-system/
>> http://bk-g-21.blogspot.mx/**2011/05/tutorial-1-usar-el-**
>> componente-auth-en.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 Groups 
>> "CakePHP" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to cake-php+u...@googlegroups.com .
>> To post to this group, send email to cake...@googlegroups.com
>> .
>> Visit this group at http://groups.google.com/group/cake-php?hl=en.
>> For more options, visit https://groups.google.com/groups/opt_out.
>>  
>>  
>>
>

-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to cake-php+unsubscr...@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: How to remove trailing spaces from data submitted on form

2013-04-12 Thread euromark
have you debugged $this->data?
Then you would have found out that you are trying to trim an array here, 
which will not work..

foreach ($this->data[$this->alias] as $key => $value) {if 
(is_string($value) {
$this->data[$this->alias][$key] = rtrim($value);
}
}



Am Freitag, 12. April 2013 09:42:51 UTC+2 schrieb Sam:
>
> Dear Cakephp experts,
>
> I would like to remove trailing spaces from data submitted on a form. I 
> use the code below in BeforeSave()
>
> foreach ($this->data as $key => $value) {if (is_string($value) 
> $this->data[$key] = rtrim($value);}
>
> However, the spaces are still there. What did I do wrong or is there any 
> better method? 
>
> I am using Cakephp 2.2.1. 
>
> Thank you very much if you can help.
>

-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to cake-php+unsubscr...@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Jquery and Internet Explorer compatibility in cake1.3

2013-04-12 Thread Chris
thanks rchavik,... 
that solve the problem with dialog box with IE7,... 

but still having problem with IE10 ,... I have other functions like jquery 
autocomplete, etc,... not works until I reload the page "F5" 
I even have this in header: 
   

but loosing jquery on browse,... have to reload the page to trigger jquery 

how can I solve this,...? 

thanks a lot,... 
chris 



On Thursday, April 11, 2013 5:44:24 PM UTC-7, rchavik wrote:
>
>
>
> On Friday, 12 April 2013 03:31:24 UTC+7, Chris wrote:
>>
>> hi guys,... can anyone help please,... I know its not cake related (maybe 
>> it does),... I apologize,... but may someone know the answer. 
>>
>> title: 'Report Photo',
>>
>>
> Remove the trailing comma there 
>

-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to cake-php+unsubscr...@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: login problem in deployed

2013-04-12 Thread Moawia Almardoud
Try to add function index(){} in UsersController
On Apr 11, 2013 7:42 PM, "Antonio Flores Lara" 
wrote:

> hello ..i am new with cakephp ... i made a web aplication and deployed to
> hostgator  and  the send me this error
>
> Missing Method in UsersController
>
> *Error: *The action *index.html* is not defined in controller *
> UsersController*
>
> upload a older version  from  same proyect without login part and works
> fine..
>
> i dont  know where are my mistake .. i am supposed  in login part
> this sample login page  where i copied the code
> http://www.endyourif.com/**cakephp-2-x-login-system/
> http://bk-g-21.blogspot.mx/**2011/05/tutorial-1-usar-el-**
> componente-auth-en.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 Groups
> "CakePHP" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to cake-php+unsubscr...@googlegroups.com.
> To post to this group, send email to cake-php@googlegroups.com.
> Visit this group at http://groups.google.com/group/cake-php?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to cake-php+unsubscr...@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




How to remove trailing spaces from data submitted on form

2013-04-12 Thread Sam
Dear Cakephp experts,

I would like to remove trailing spaces from data submitted on a form. I use 
the code below in BeforeSave()

foreach ($this->data as $key => $value) {if (is_string($value) 
$this->data[$key] = rtrim($value);}

However, the spaces are still there. What did I do wrong or is there any 
better method? 

I am using Cakephp 2.2.1. 

Thank you very much if you can help.

-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to cake-php+unsubscr...@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.