Fatal error: Call to undefined method CookieComponent::del()

后端 未结 1 1225

Hi to all I have this strange error in my code. I want to make a cookie system with cakephp, and in app_controller.php I include

var $components = array(\'Auth\', \'Coo

相关标签:
1条回答
  • 2021-01-27 07:37

    The method name is delete, not del, hence the error. See also http://api.cakephp.org/class/cookie-component#method-CookieComponentdelete

    0 讨论(0)
提交回复
热议问题