Archive / CakePHP

RSS feed for this section

Cakephp installl plugin as submodule

In order to install Search plugin for instance: git submodule add https://github.com/CakeDC/search.git app/Plugin/Search git submodule update –init –recursive

Cakephp 1.3 and php 5.4

A quick notice how to disable the errors that appear after upgrading the php to 5.4 which is by the way a lot faster than ever before. cake/bootstrap.php replace: error_reporting(E_ALL & ~E_DEPRECATED); with error_reporting(E_ALL & ~E_DEPRECATED & ~E_STRICT); cake/libs/debugger.php after: … Continue reading

cakephp page title in view cake1.3

In order to change page title in cakephp inside a view just use the code bellow $this->set(‘title_for_layout’, ‘my cakephp page title’);