Sunday, May 13, 2018

Cake PHP Installation and Tutorial



1. Download XAMP and install as per your system configuration Link https://www.apachefriends.org/download.html 2. Editor for cake php https://code.visualstudio.com/Download 3. Version control svn - install version control make sure to select make sure command line tools checked for more please refer to guide https://epdf.tips/beginning-cakephp-from-novice-to-professional.html https://vimeo.com/47400017 http://web-algarve.com/books/MySQL%20&%20PHP/Learning%20PHP,%20MySQL,%20JavaScript,%20CSS%20&%20HTML5,%203rd%20Edition.pdf

local setup settings.

Step 1) C:\WINDOWS\system32\drivers\etc\ Open the "hosts" file :
127.0.0.1       localhost
127.0.0.1       test.com
127.0.0.1       example.com
Step 2) xampp\apache\conf\extra\httpd-vhosts.conf
<VirtualHost *:80>
    DocumentRoot C:/xampp/htdocs/test/
    ServerName www.test.com
</VirtualHost>
<VirtualHost *:80>
    DocumentRoot C:/xampp/htdocs/example/
    ServerName www.example.com
</VirtualHost>
Step 3) C:\xampp\apache\conf\httpd.conf. Scroll down to the Supplemental configuration section at the end, and locate the following section (around line 500), Remove the # from the beginning of the second line so the section now looks like this:
#Virtual hosts
Include conf/extra/httpd-vhosts.conf
Step 4) Restart XAMPP and now run in your browser :
www.example.com or www.test.com

DEBUGGING please refer below link

https://www.codeproject.com/Articles/553018/Ultra-Rapid-PHP-Application-Development
https://www.youtube.com/watch?v=vH-EFil3Svg&list=PLy6f6YeaisJLnQpKpeeJX_ooJg_IH1Oib&index=3



Note : Please feel free to add useful content/links to this page




Type Casting in C++

static_cast