Re: What is the meaning of this error in cakephp 3?

2016-03-13 Thread Clement Crownrise
Thanks all, these lines of codes are already added to the
UsersController.php

but the error still persists



namespace App\Controller;

use Cake\Event\Event;
use App\Controller\AppController;
use Cake\Network\Exception\NotFoundException;


class UsersController extends AppController{

public function beforefilter(Event $event){
//parent::beforefilter($event);
//$this->Auth->allow(['add','logout']);
return null;
}


On Sun, Mar 13, 2016 at 9:14 AM, Willem Schwarte 
wrote:

> Yes. That should solve it.
>
> - willem
>
> Op 13 mrt. 2016 om 08:42 heeft heavyKevy  het
> volgende geschreven:
>
> You also need to make sure that you add the following line near the top of
> the file after the namespace with the other use statements:
>
> use Cake\Event\Event;
>
> Best regards,
> --Kevin
>
>
> On Sunday, March 13, 2016 at 1:47:10 AM UTC+7, Clement Crownrise wrote:
>>
>> Hi, Thanks Willem,
>>
>> I have tried it, but the error still persists , look at the code below
>>
>>
>> public function beforefilter(Event $event){
>> //parent::beforefilter($event);
>> //$this->Auth->allow(['add','logout']);
>> return null;
>> }
>>
>> On Sat, Mar 12, 2016 at 11:52 AM, Willem Schwarte 
>> wrote:
>>
>>> Just as it says. You need to have the same method signature as the one
>>> you are overriding. Thus:
>>>
>>> public function beforeFilter(Event $event)
>>> {
>>> return null;
>>> }
>>>
>>>
>>> you forgot the parameter.
>>>
>>>
>>> Willem
>>>
>>>
>>>
>>> On 12 Mar 2016, at 10:30, Clement Crownrise 
>>> wrote:
>>>
>>> Hello, I am doing the blog tutorial in cakephp 3, but I got this notice
>>> at the top of my page, please does anyone know the meaning and how to solve
>>> it?
>>>
>>> *Strict* (2048): Declaration of 
>>> App\Controller\AppController::beforefilter() should be compatible with 
>>> Cake\Controller\Controller::beforeFilter(Cake\Event\Event $event) 
>>> [*APP/Controller\AppController.php*, line *29*]
>>>
>>>
>>>
>>> *Strict* (2048): Declaration of 
>>> App\Controller\UsersController::beforefilter() should be compatible with 
>>> App\Controller\AppController::beforefilter() 
>>> [*APP/Controller\UsersController.php*, line *10*]
>>>
>>>
>>> Your help will be appreciated
>>>
>>> --
>>> Sign up for our Newsletter for updates.
>>> http://cakephp.org/newsletter/signup
>>>
>>> We will soon be closing this Google Group. But don't worry, we have
>>> something better coming. Stay tuned for an updated from the CakePHP Team
>>> soon.
>>>
>>> Like Us on FaceBook https://www.facebook.com/CakePHP
>>> Follow 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.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>>
>>> --
>>> Sign up for our Newsletter for updates.
>>> http://cakephp.org/newsletter/signup
>>>
>>> We will soon be closing this Google Group. But don't worry, we have
>>> something better coming. Stay tuned for an updated from the CakePHP Team
>>> soon.
>>>
>>> Like Us on FaceBook https://www.facebook.com/CakePHP
>>> Follow us on Twitter http://twitter.com/CakePHP
>>> ---
>>> You received this message because you are subscribed to a topic in the
>>> Google Groups "CakePHP" group.
>>> To unsubscribe from this topic, visit
>>> https://groups.google.com/d/topic/cake-php/qEur8oKsm48/unsubscribe.
>>> To unsubscribe from this group and all its topics, send an email to
>>> cake-php+u...@googlegroups.com.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
>>
>> --
>> http://www.clementcrownrise.name/images/nameing.gif
>>
> --
> Sign up for our Newsletter for updates.
> http://cakephp.org/newsletter/signup
>
> We will soon be closing this Google Group. But don't worry, we have
> something better coming. Stay tuned for an updated from the CakePHP Team
> soon.
>
> Like Us on FaceBook https://www.facebook.com/CakePHP
> Follow 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.
> For more options, visit https://groups.google.com/d/optout.
>
> --
> Sign up for our Newsletter for updates.
> http://cakephp.org/newsletter/signup
>
> We will soon be closing this Google Group. But don't worry, we have
> something better coming. Stay tuned for an updated from the CakePHP Team
> soon.
>
> Like Us on FaceBook https://www.facebook.com/CakePHP
> Follow us on Twitter http://twitter.com/CakePHP
> ---
> You received this message because you are subscribed to a topic in the
> Google Groups "CakePHP" group.
> To unsubscribe from this topic, 

how enable identifier quoting???

2016-03-13 Thread Leonidas Savvides


*If you are using SQL keywords as table column names, you can enable 
identifier quoting for your database connection in config/app.php.*


How do this   


long (for long, lat) is prohibited as db name of field...? if change to 
long1 how apply the change in cakePHP? Also how * enable identifier 
quoting???*

-- 
Sign up for our Newsletter for updates.
http://cakephp.org/newsletter/signup

We will soon be closing this Google Group. But don't worry, we have something 
better coming. Stay tuned for an updated from the CakePHP Team soon.

Like Us on FaceBook https://www.facebook.com/CakePHP
Follow 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.
For more options, visit https://groups.google.com/d/optout.


Re: 3.0 Database Error : SQLSTATE[HY000] [14] unable to open database file

2016-03-13 Thread Leonidas Savvides
*If you are using SQL keywords as table column names, you can enable 
identifier quoting for your database connection in config/app.php.*

how * enable identifier quoting???*


On Monday, September 29, 2014 at 6:43:14 PM UTC+3, Bayezid Alam wrote:
>
> Dear All,
> i am getting the subjected Error for beta-2 of cake3, while first browsing 
> from localhost.
>
> sub-hints:
> If you are using SQL keywords as table column names, you can enable 
> identifier quoting for your database connection in config/app.php. 
>
> *Notice: * If you want to customize this error message, create 
> src/Template/Error/pdo_error.ctp
>
> Stack Trace 
>
>- CORE/src/Database/Driver/PDODriverTrait.php line 44 
> → PDO->__construct(string, null, null, 
>array)  
>- CORE/src/Database/Driver/Sqlite.php line 62 
> → 
>Cake\Database\Driver\Sqlite->_connect(array) 
> 
>- CORE/src/Database/Schema/BaseSchema.php line 44 
> → Cake\Database\Driver\Sqlite->connect() 
> 
>- CORE/src/Database/Dialect/SqliteDialectTrait.php line 163 
> → 
>Cake\Database\Schema\BaseSchema->__construct(Cake\Database\Driver\Sqlite) 
> 
>- CORE/src/Database/Schema/Collection.php line 59 
> → 
>Cake\Database\Driver\Sqlite->schemaDialect() 
> 
>- CORE/src/Database/Connection.php line 288 
> → 
>Cake\Database\Schema\Collection->__construct(Cake\Database\Connection) 
> 
>- ROOT/plugins/DebugKit/src/Model/Table/LazyTableTrait.php line 38 
> → 
>Cake\Database\Connection->schemaCollection() 
> 
>- ROOT/plugins/DebugKit/src/Model/Table/RequestsTable.php line 41 
> → 
>DebugKit\Model\Table\RequestsTable->ensureTables(array) 
> 
>- CORE/src/ORM/Table.php line 231  → 
>DebugKit\Model\Table\RequestsTable->initialize(array) 
> 
>- CORE/src/ORM/TableRegistry.php line 186  
>→ Cake\ORM\Table->__construct(array)  
>- ROOT/plugins/DebugKit/src/Routing/Filter/DebugBarFilter.php line 178 
> → Cake\ORM\TableRegistry::get(string) 
> 
>- CORE/src/Event/EventManager.php line 268  
>→ DebugKit\Routing\Filter\DebugBarFilter->afterDispatch(Cake\Event\Event, 
>Cake\Network\Request, Cake\Network\Response) 
> 
>- CORE/src/Event/EventManager.php line 235  
>→ Cake\Event\EventManager->_callListener(array, Cake\Event\Event) 
> 
>- CORE/src/Event/EventManagerTrait.php line 76 
> → 
>Cake\Event\EventManager->dispatch(Cake\Event\Event) 
> 
>- CORE/src/Routing/Dispatcher.php line 90  
>→ Cake\Routing\Dispatcher->dispatchEvent(string, array) 
> 
>- ROOT/webroot/index.php line 37  → 
> Cake\Routing\Dispatcher->dispatch(Cake\Network\Request, 
>Cake\Network\Response) 
>
>
> Note: i have manually downloaded from 
> https://github.com/cakephp/cakephp/releases/3.0.0-beta2 
>
> Hope it's proper suggestion
>
> Thanks
> Bayezid
>

-- 
Sign up for our Newsletter for updates.
http://cakephp.org/newsletter/signup

We will soon be closing this Google Group. But don't worry, we have something 
better coming. Stay tuned for an updated from the CakePHP Team soon.

Like Us on FaceBook https://www.facebook.com/CakePHP
Follow 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.
For more options, visit https://groups.google.com/d/optout.


How do I install the latest version(3.2.3) of Cakephp on shared hosting?

2016-03-13 Thread Prabhdeep Kaur
How do I install the latest version(3.2.3) of Cakephp on shared hosting? 


Can anyone help me to install latest version of Cakephp on shared hosting. 
The latest Cakephp folder structure is different from previous one. It give 
me a blank page when I run my site.

-- 
Sign up for our Newsletter for updates.
http://cakephp.org/newsletter/signup

We will soon be closing this Google Group. But don't worry, we have something 
better coming. Stay tuned for an updated from the CakePHP Team soon.

Like Us on FaceBook https://www.facebook.com/CakePHP
Follow 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.
For more options, visit https://groups.google.com/d/optout.


What are CakePHP 3.2 conventions for Town Directory Web-Site eg how name the tables and fields.... if have

2016-03-13 Thread Leonidas Savvides


Note:this is second post after approved by google group... first post - not 
see it - was prior approved... 


*What are CakePHP 3.2 conventions for Town Directory Web-Site eg how name 
the tables and fields if have *

 

businesses

id, user_id, cat_id, name, description, address, phone, email, url, 
Map_lat, Map_long, img1url, img2url, img3url 

 

categories

id, cat

 

Users  // this will be the same as Blog example in Guide

CREATE TABLE users (

id INT UNSIGNED AUTO_INCREMENT PRIMARY KEY,

username VARCHAR(50),

password VARCHAR(255),

role VARCHAR(20),

created DATETIME DEFAULT NULL,

modified DATETIME DEFAULT NULL

);

 

*bake (pre-made code baking) should work, for first two tables...?well?*

-- 
Sign up for our Newsletter for updates.
http://cakephp.org/newsletter/signup

We will soon be closing this Google Group. But don't worry, we have something 
better coming. Stay tuned for an updated from the CakePHP Team soon.

Like Us on FaceBook https://www.facebook.com/CakePHP
Follow 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.
For more options, visit https://groups.google.com/d/optout.


How to upgrade TLS version in cakePHP

2016-03-13 Thread Arun NV


down votefavorite 


I am using *cakePHP2.2.1* and *PHP5.3.10*.And i have updated *curl* and 
*libcurl* now curl is supporting *TLS 1.2* in *terminal*. But when i am 
trying to send *curl* request in *cakePHP* it's shows the*TLS* version as 
*1.1*. Is there anyway to configure *TLS* in *cakePHP*?

-- 
Sign up for our Newsletter for updates.
http://cakephp.org/newsletter/signup

We will soon be closing this Google Group. But don't worry, we have something 
better coming. Stay tuned for an updated from the CakePHP Team soon.

Like Us on FaceBook https://www.facebook.com/CakePHP
Follow 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.
For more options, visit https://groups.google.com/d/optout.


Re: What is the meaning of this error in cakephp 3?

2016-03-13 Thread Matías Croce

Maybe you forgot the namespace. You should use:

use  Cake\Event\Event;

or

beforeFilter(Cake\Event\Event $event)



On 12/03/16 15:46, Clement Crownrise wrote:

Hi, Thanks Willem,

I have tried it, but the error still persists , look at the code below


public function beforefilter(Event $event){
//parent::beforefilter($event);
//$this->Auth->allow(['add','logout']);
return null;
}

On Sat, Mar 12, 2016 at 11:52 AM, Willem Schwarte > wrote:


Just as it says. You need to have the same method signature as the
one you are overriding. Thus:

public function beforeFilter(Event $event) { return null; }


you forgot the parameter.


Willem




On 12 Mar 2016, at 10:30, Clement Crownrise
>
wrote:

Hello, I am doing the blog tutorial in cakephp 3, but I got this
notice at the top of my page, please does anyone know the meaning
and how to solve it?

*Strict* (2048): Declaration of 
App\Controller\AppController::beforefilter() should be compatible with 
Cake\Controller\Controller::beforeFilter(Cake\Event\Event $event) 
[*APP/Controller\AppController.php*, line*29*]



*Strict* (2048): Declaration of 
App\Controller\UsersController::beforefilter() should be compatible with 
App\Controller\AppController::beforefilter() 
[*APP/Controller\UsersController.php*, line*10*]

Your help will be appreciated

-- 
Sign up for our Newsletter for updates.

http://cakephp.org/newsletter/signup

We will soon be closing this Google Group. But don't worry, we
have something better coming. Stay tuned for an updated from the
CakePHP Team soon.

Like Us on FaceBook https://www.facebook.com/CakePHP
Follow 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
.
For more options, visit https://groups.google.com/d/optout.


-- 
Sign up for our Newsletter for updates.

http://cakephp.org/newsletter/signup

We will soon be closing this Google Group. But don't worry, we
have something better coming. Stay tuned for an updated from the
CakePHP Team soon.

Like Us on FaceBook https://www.facebook.com/CakePHP
Follow us on Twitter http://twitter.com/CakePHP
---
You received this message because you are subscribed to a topic in
the Google Groups "CakePHP" group.
To unsubscribe from this topic, visit
https://groups.google.com/d/topic/cake-php/qEur8oKsm48/unsubscribe.
To unsubscribe from this group and all its topics, send an email
to cake-php+unsubscr...@googlegroups.com
.
For more options, visit https://groups.google.com/d/optout.




--
http://www.clementcrownrise.name/images/nameing.gif
--
Sign up for our Newsletter for updates.
http://cakephp.org/newsletter/signup

We will soon be closing this Google Group. But don't worry, we have 
something better coming. Stay tuned for an updated from the CakePHP 
Team soon.


Like Us on FaceBook https://www.facebook.com/CakePHP
Follow 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 
.

For more options, visit https://groups.google.com/d/optout.


--
Sign up for our Newsletter for updates.
http://cakephp.org/newsletter/signup

We will soon be closing this Google Group. But don't worry, we have something 
better coming. Stay tuned for an updated from the CakePHP Team soon.

Like Us on FaceBook https://www.facebook.com/CakePHP
Follow 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.
For more options, visit https://groups.google.com/d/optout.


[Cakephp 2.8.1] Multiple assosication to one model with habtm throws a notice

2016-03-13 Thread 'Steffen Reinig' via CakePHP
Hello Cakephp Fans,

today i receive these error: 

Notice (8): Undefined index: User [CORE\Cake\Model\Datasource\DboSource.php, 
line 1388]

Its easy to reproduce:

Model: User belongsTo Group
Model: Permission habtm Rights (className User)
   Permission habtm Owners (className User)

When i use now 
$this->Permission->find('all', array('recursive' => -2)); 

the notice will be thrown. But only for the 2nd habtm.

The output is like:

array(
'Permission' => array(
'id' => '6',
),
'Owner' => array(
(int) 0 => array(
'id' => '499',
'PermissionOwner' => array(
'id' => '6',
'user_id' => '499',
'permission_id' => '6'
)
)
),
'Rights' => array(
(int) 0 => array(
'id' => '485',
'PermissionRight' => array(
'id' => '18',
'permission_id' => '6',
'user_id' => '485',
),
'Group' => array()
),
(int) 1 => array(
'id' => '124',
'PermissionRight''id' => '19',
'permission_id' => '6',
'user_id' => '124',
),
'Group' => array()
)
)
)




Kind Regards

-- 
Sign up for our Newsletter for updates.
http://cakephp.org/newsletter/signup

We will soon be closing this Google Group. But don't worry, we have something 
better coming. Stay tuned for an updated from the CakePHP Team soon.

Like Us on FaceBook https://www.facebook.com/CakePHP
Follow 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.
For more options, visit https://groups.google.com/d/optout.


CakePHP 2.6.13, 2.7.11, 2.8.2, 3.0.17, 3.1.12, and 3.2.5 Released

2016-03-13 Thread mark_story
The CakePHP core team is happy to announce the immediate availability of 
CakePHP
2.6.13, 2.7.11, 2.8.2, 3.0.17, 3.1.12, and 3.2.5. These releases contain 
security
fixes. 3.2.5 and 2.8.2 also contain bugfixes.

Security Fixes
--

These releases contain fixes for arbitrary address spoofing when using the
``clientIp()`` method of the request object. Previously, this method would 
use
the ``HTTP_CLIENT_IP`` header which can be spoofed easily. If you are using 
this
method as a source of trusted data we recommend you upgrade. We'd like to 
thank
the independent security researcher Dawid Golunski for discovering this
vulnerability in CakePHP which was reported to us by Beyond Security's
SecuriTeam Secure Disclosure program.

Bugfixes in 2.8.2
-

* Notice errors in ``request->referer()`` in PHP7 with no referrer were 
fixed.
  (@phlyper)
* Email logs now include the subject and to headers when using the
  ``MailTransport`` (@garas)
* Updated API documentation (@xhs345)
* A regression in DbAcl introduced in 2.8.1 was fixed around how inherited
  permissions and explicit deny permissions interacted (@markstory)

Bugfixes in 3.2.5
-

* Postgres schema reflection performs better on large databases. (@donkeyx,
  @markstory)
* Xcache cache engine can now store objects (@SmiSoft)
* Malformed HTTP Range headers no longer emit warnings. (@markstory)
* Improved API documentation (@markstory, @curtisgibby, @dereuromark)
* The ``__xn`` and ``__dxn`` functions now correctly use plural forms.
  (@chinpei215)


New Features in 3.2.5
-

* ``assertCookieNotSet`` was added to ``IntegrationTestCase``. (@lorenzo)
* The 'obj' fetch type was added to ``PDOStatement``. (@davalb)

As always, a huge thanks to all the community members that helped make this
release happen by reporting issues and sending pull requests.

Download a `packaged release on github
`_.

.. author:: markstory
.. categories:: release, news, security
.. tags:: release, security

-- 
Sign up for our Newsletter for updates.
http://cakephp.org/newsletter/signup

We will soon be closing this Google Group. But don't worry, we have something 
better coming. Stay tuned for an updated from the CakePHP Team soon.

Like Us on FaceBook https://www.facebook.com/CakePHP
Follow 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.
For more options, visit https://groups.google.com/d/optout.


Re: Cakephp 2.x Receive emails into the application...

2016-03-13 Thread euromark
This might help you
https://github.com/barbushin/php-imap


Am Samstag, 12. März 2016 01:31:18 UTC+1 schrieb April DeRossett:
>
> Ahoy!  I am looking for a way to receive reply emails into my cakephp 
> application and after a ton of research I haven't yet figured out how to 
> make that happen.  Pretend I am an awesome PHP and MySQL programmer but, 
> that I know Nothing about managing an email server.  Does anyone know of a 
> great tutorial or read that would help me get started?  Thanks in advance. 
> April
>

-- 
Sign up for our Newsletter for updates.
http://cakephp.org/newsletter/signup

We will soon be closing this Google Group. But don't worry, we have something 
better coming. Stay tuned for an updated from the CakePHP Team soon.

Like Us on FaceBook https://www.facebook.com/CakePHP
Follow 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.
For more options, visit https://groups.google.com/d/optout.


Re: What is the meaning of this error in cakephp 3?

2016-03-13 Thread Willem Schwarte
Yes. That should solve it. 

- willem

> Op 13 mrt. 2016 om 08:42 heeft heavyKevy  het 
> volgende geschreven:
> 
> You also need to make sure that you add the following line near the top of 
> the file after the namespace with the other use statements:
> 
> use Cake\Event\Event;
> 
> Best regards,
> --Kevin
> 
> 
>> On Sunday, March 13, 2016 at 1:47:10 AM UTC+7, Clement Crownrise wrote:
>> Hi, Thanks Willem, 
>> 
>> I have tried it, but the error still persists , look at the code below
>> 
>> 
>> public function beforefilter(Event $event){
>> //parent::beforefilter($event);
>> //$this->Auth->allow(['add','logout']);
>> return null;
>> }
>> 
>>> On Sat, Mar 12, 2016 at 11:52 AM, Willem Schwarte  wrote:
>>> Just as it says. You need to have the same method signature as the one you 
>>> are overriding. Thus:
>>> 
>>> public function beforeFilter(Event $event)
>>> {
>>> return null;
>>> }
>>> 
>>> you forgot the parameter.
>>> 
>>> 
>>> Willem
>>> 
>>> 
>>> 
 On 12 Mar 2016, at 10:30, Clement Crownrise  wrote:
 
 Hello, I am doing the blog tutorial in cakephp 3, but I got this notice at 
 the top of my page, please does anyone know the meaning and how to solve 
 it?
 
 Strict (2048): Declaration of App\Controller\AppController::beforefilter() 
 should be compatible with 
 Cake\Controller\Controller::beforeFilter(Cake\Event\Event $event) 
 [APP/Controller\AppController.php, line 29]
 
 
 
 Strict (2048): Declaration of 
 App\Controller\UsersController::beforefilter() should be compatible with 
 App\Controller\AppController::beforefilter() 
 [APP/Controller\UsersController.php, line 10]
 
 Your help will be appreciated
 
 -- 
 Sign up for our Newsletter for updates.
 http://cakephp.org/newsletter/signup
  
 We will soon be closing this Google Group. But don't worry, we have 
 something better coming. Stay tuned for an updated from the CakePHP Team 
 soon.
  
 Like Us on FaceBook https://www.facebook.com/CakePHP
 Follow 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.
 For more options, visit https://groups.google.com/d/optout.
>>> 
>>> -- 
>>> Sign up for our Newsletter for updates.
>>> http://cakephp.org/newsletter/signup
>>>  
>>> We will soon be closing this Google Group. But don't worry, we have 
>>> something better coming. Stay tuned for an updated from the CakePHP Team 
>>> soon.
>>>  
>>> Like Us on FaceBook https://www.facebook.com/CakePHP
>>> Follow us on Twitter http://twitter.com/CakePHP
>>> --- 
>>> You received this message because you are subscribed to a topic in the 
>>> Google Groups "CakePHP" group.
>>> To unsubscribe from this topic, visit 
>>> https://groups.google.com/d/topic/cake-php/qEur8oKsm48/unsubscribe.
>>> To unsubscribe from this group and all its topics, send an email to 
>>> cake-php+u...@googlegroups.com.
>>> For more options, visit https://groups.google.com/d/optout.
>> 
>> 
>> 
>> -- 
>> http://www.clementcrownrise.name/images/nameing.gif
> 
> -- 
> Sign up for our Newsletter for updates.
> http://cakephp.org/newsletter/signup
>  
> We will soon be closing this Google Group. But don't worry, we have something 
> better coming. Stay tuned for an updated from the CakePHP Team soon.
>  
> Like Us on FaceBook https://www.facebook.com/CakePHP
> Follow 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.
> For more options, visit https://groups.google.com/d/optout.

-- 
Sign up for our Newsletter for updates.
http://cakephp.org/newsletter/signup

We will soon be closing this Google Group. But don't worry, we have something 
better coming. Stay tuned for an updated from the CakePHP Team soon.

Like Us on FaceBook https://www.facebook.com/CakePHP
Follow 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.
For more options, visit https://groups.google.com/d/optout.