<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>32_CakePHP by Murad Isa</title>
      <link>https://padlet.com/murado/cakephp</link>
      <description>CakePHP is designed to make common web-development tasks simple, and easy. By providing an all-in-one toolbox to get you started the various parts of CakePHP work well together or separately.</description>
      <language>en-us</language>
      <pubDate>2015-08-18 15:08:26 UTC</pubDate>
      <lastBuildDate>2025-09-26 03:46:59 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>CakePHP</title>
         <author>murado</author>
         <link>https://padlet.com/murado/cakephp/wish/66193973</link>
         <description><![CDATA[<p><a href="https://en.wikipedia.org/wiki/Open_source">open source</a> <a href="https://en.wikipedia.org/wiki/Web_application_framework">web application framework</a></p><p><a href="https://en.wikipedia.org/wiki/Model-View-Controller">Model-View-Controller</a> (MVC)</p><p><a href="https://en.wikipedia.org/wiki/PHP">PHP</a></p><p><a href="https://en.wikipedia.org/wiki/MIT_License">MIT License</a></p><a href="https://en.wikipedia.org/wiki/Convention_over_configuration">Convention over configuration</a><p><a href="https://en.wikipedia.org/wiki/ActiveRecord">Active Record</a></p><p><a href="https://en.wikipedia.org/wiki/Junction_table">Association Data Mapping</a></p><p><a href="https://en.wikipedia.org/wiki/Junction_table"></a><a href="https://en.wikipedia.org/wiki/Front_Controller_pattern">Front Controller</a>.</p>]]></description>
         <enclosure url="" />
         <pubDate>2015-08-18 15:09:47 UTC</pubDate>
         <guid>https://padlet.com/murado/cakephp/wish/66193973</guid>
      </item>
      <item>
         <title></title>
         <author>murado</author>
         <link>https://padlet.com/murado/cakephp/wish/66195926</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/68152101/c3ce0ea6bf5b550a79cba7f4da98f30e5c2cb6c1/bfaeca3caa749e5756bebaaea0d6dfd2.png" />
         <pubDate>2015-08-18 15:22:14 UTC</pubDate>
         <guid>https://padlet.com/murado/cakephp/wish/66195926</guid>
      </item>
      <item>
         <title>Setup CakePHP 3.0 on Linux				</title>
         <author>murado</author>
         <link>https://padlet.com/murado/cakephp/wish/77338297</link>
         <description><![CDATA[<p><a href="http://tecadmin.net/setup-cakephp-3-on-linux/#"><br></a></p><p><a href="http://tecadmin.net/setup-cakephp-3-on-linux/#">1. http://tecadmin.net/setup-cakephp-3-on-linux/#</a></p><p><a href="http://www.phpcmsframework.com/2014/11/steps-to-install-cakephp-on-ubuntu-1404.html"><br></a></p><p><a href="http://www.phpcmsframework.com/2014/11/steps-to-install-cakephp-on-ubuntu-1404.html">2. http://www.phpcmsframework.com/2014/11/steps-to-install-cakephp-on-ubuntu-1404.html</a></p><br>3. <a href="https://rupinderjeetkaur.wordpress.com/2014/08/25/install-cakephp-in-ubuntu-14-04/">https://rupinderjeetkaur.wordpress.com/2014/08/25/install-cakephp-in-ubuntu-14-04/</a><br><br><a href="http://askubuntu.com/questions/628938/how-to-install-cakephp-in-ubuntu-14-04">4. http://askubuntu.com/questions/628938/how-to-install-cakephp-in-ubuntu-14-04</a><br><br>]]></description>
         <enclosure url="" />
         <pubDate>2015-10-25 10:43:51 UTC</pubDate>
         <guid>https://padlet.com/murado/cakephp/wish/77338297</guid>
      </item>
      <item>
         <title>INSTALL CakePHP</title>
         <author>murado</author>
         <link>https://padlet.com/murado/cakephp/wish/78209115</link>
         <description><![CDATA[<h2><br></h2><h2># 1. Install LAMP Server (Linux, Apache, MySQL and PHP) </h2>
&gt; apt-get install apache2 mysql-server php5 php5-mysql php5-mbstring php5-intl

<h2># 2. Install Composer </h2># cakephp is using composer for managing dependencies. <br>&gt; curl -sS <a href="https://getcomposer.org/installer">https://getcomposer.org/installer</a> | php

<pre>&gt; mv composer.phar /usr/local/bin/composer
&gt; chmod +x /usr/local/bin/composer
</pre>
<h2># 3. Create CakePHP 3 Application </h2># Let’s create your Cakephp project named “<strong>MyApp</strong>” using composer  <br><br>&gt; composer create-project --prefer-dist   cakephp/app  MyApp
<br># set the proper permission for your project files. <br><br>
<pre>&gt; chown -R  www-data:www-data  MyApp
&gt; chmod -R  755  MyApp
</pre>
<h2># 4. Setup Database for CakePHP </h2>
<pre>&gt; mysql -u root -p
Enter password:

mysql&gt; CREATE DATABASE mydb;
mysql&gt; GRANT ALL ON mydb.* to 'myuser'@'localhost' IDENTIFIED BY '_password_';
mysql&gt; FLUSH PRIVILEGES;
mysql&gt; quit
</pre>
<p># edit <strong>config/app.php</strong> configuration file and search for your database setting</p>
<pre>    'Datasources' =&gt; [
        'default' =&gt; [
            'className' =&gt; 'Cake\Database\Connection',
            'driver' =&gt; 'Cake\Database\Driver\Mysql',
            'persistent' =&gt; false,
            'host' =&gt; 'localhost',
            //'port' =&gt; 'nonstandard_port_number',
            'username' =&gt; 'myuser',
            'password' =&gt; '_password_',
            'database' =&gt; 'mydb',
            'encoding' =&gt; 'utf8',
            'timezone' =&gt; 'UTC',
            'cacheMetadata' =&gt; true,
</pre>
<h2># 5. Setup Web Server Virtual Host </h2>
<p># creating virtual host in Apache. Edit your Apache configuration file </p><br><pre>&lt;VirtualHost *:80&gt;
    ServerAdmin webmaster@tecadmin.net
    ServerName cakephp.tecadmin.net

    DocumentRoot /var/www/html/MyApp
    &lt;Directory /var/www/html/MyApp&gt;
          Allowoverride All
    &lt;/Directory&gt;
&lt;/VirtualHost&gt;
</pre>
<h2># 6. Verify Setup </h2>
&gt; service apache2 restart

<p># access website with configure ServerName in web browser</p>]]></description>
         <enclosure url="" />
         <pubDate>2015-10-29 14:30:51 UTC</pubDate>
         <guid>https://padlet.com/murado/cakephp/wish/78209115</guid>
      </item>
      <item>
         <title>cake bake</title>
         <author>murado</author>
         <link>https://padlet.com/murado/cakephp/wish/79789026</link>
         <description><![CDATA[<pre>$ bin/cake bake

Welcome to CakePHP v3.0.0 Console
---------------------------------------------------------------
App : src
Path: /var/www/cakephp.dev/src/
---------------------------------------------------------------
The following commands can be used to generate skeleton code for your application.

Available bake commands:

- all
- behavior
- cell
- component
- controller
- fixture
- form
- helper
- model
- plugin
- shell
- template
- test</pre><pre><code>$ bin/cake bake all events</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2015-11-06 15:13:34 UTC</pubDate>
         <guid>https://padlet.com/murado/cakephp/wish/79789026</guid>
      </item>
      <item>
         <title>ELEMENT, HELPER, CELL</title>
         <author>murado</author>
         <link>https://padlet.com/murado/cakephp/wish/80317508</link>
         <description><![CDATA[<p><a href="http://florian-kraemer.net/2015/02/cakephp3-when-to-use-elements-helpers-or-view-cells/">http://florian-kraemer.net/2015/02/cakephp3-when-to-use-elements-helpers-or-view-cells/</a></p><p><a href="http://josediazgonzalez.com/2014/03/20/view-cells/">http://josediazgonzalez.com/2014/03/20/view-cells/</a></p><p><a href="http://josediazgonzalez.com/2014/03/20/view-cells/">http://www.sanisoft.com/blog/2014/09/15/view-cell-cakephp-3-quick-start/<br></a></p><br>]]></description>
         <enclosure url="" />
         <pubDate>2015-11-10 03:53:46 UTC</pubDate>
         <guid>https://padlet.com/murado/cakephp/wish/80317508</guid>
      </item>
      <item>
         <title>MVC (Model - View - Controller)</title>
         <author>murado</author>
         <link>https://padlet.com/murado/cakephp/wish/92864285</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/68152101/e3f3493f0e583b289ec16a8aeb021550fa5d233b/d897e45efcf17a9ef01379d6636cdab2.png" />
         <pubDate>2016-02-03 12:38:12 UTC</pubDate>
         <guid>https://padlet.com/murado/cakephp/wish/92864285</guid>
      </item>
      <item>
         <title>CakePHP</title>
         <author>murado</author>
         <link>https://padlet.com/murado/cakephp/wish/92864976</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/68152101/e681f5d356e2b7884b60f09c19259c272e51dbfb/16002589e842b6f912d894d997d99cd2.png" />
         <pubDate>2016-02-03 12:42:01 UTC</pubDate>
         <guid>https://padlet.com/murado/cakephp/wish/92864976</guid>
      </item>
      <item>
         <title>CakePHP - http://cakephp.org/</title>
         <author>murado</author>
         <link>https://padlet.com/murado/cakephp/wish/92865805</link>
         <description><![CDATA[<div>https://cakephp.org/<br><br>https://github.com/cakephp/cakephp/releases</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/68152101/a92f31706242e4ec23c1a1d62e249311/258_2582352_cake_php_img_cakephp_logo_png_png.jpeg" />
         <pubDate>2016-02-03 12:45:54 UTC</pubDate>
         <guid>https://padlet.com/murado/cakephp/wish/92865805</guid>
      </item>
   </channel>
</rss>
