Install Cakephp In Windows

Cakephp
  1. 3 simple steps to install CakePHP in your xampp (Windows) By Azhagu Pandian December 25, 2013 CakePHP 4 Comments Most of the people struct to install cakephp in windows.
  2. In this video, Justin walks you through the process of installing a modern version of PHP on your Windows device, as well as installing Composer to install CakePHP 3. CakePHP is installed through.
Active6 years, 10 months ago

I'm trying to install CakePHP on my Windows XP machine running Apache 2.2. I have installed the Cake folder in my doc root.

Installing CakePHP 3 Framework: CakePHP 3 uses the composer to install, its dependency elements, and will some automatic configuration work for you. So to install CakePHP 3 you want to have composer installed on your computer. Installation of CakePHP 3 somewhat tricky/difficult for newbies. I will give you step by step instructions to install CakePHP 3 on your machine successfully, All you need to do is just follow this tutorial. Installing CakePHP plugins. Justin Yost provides an overview of the underlying MVC pattern in CakePHP, and the installation and configuration process for Mac and Windows. Installation of. Installing CakePHP plugins. Justin Yost provides an overview of the underlying MVC pattern in CakePHP, and the installation and configuration process for Mac and Windows. Installation of. CakePHP is fast and easy to install. The minimum requirements are a webserver and a copy of CakePHP, that’s it! While this manual focuses primarily on setting up on Apache (because it’s the most commonly used), you can configure CakePHP to run on a variety of web servers such as lighttpd or Microsoft IIS.

I've read the installation instructions that say to include this line in the httpd.conf file;

<Directory /path/to/cake>

Does anyone know how to translate that into Windows? I currently have the following in my conf file:

Whenever I uncomment this line it crashes Apache. I've tried switching the slashes to ' and I tried taking the slash off the end.

Cara instal windows xp pada hp mini 110 notebook pc. Penjelasan Ini cukup sulit dijawab, karena data dan disk di setiap komputer/laptop berbeda, tetapi saya akan menjelaskan garis besarnya.

Any advice?

Thanks

GeoSQLGeoSQL

3 Answers

May be useful for you to develop CakePHP under Windows, you can also use IIS7 with URL ReWrite Module. Download via Windows Web Platform Installer and read this Installing CakePHP on IIS7.

Or install WAMP/XAMPP. They sets up all configuration stuff and you good to go after set up CakePHP a little. I mean database connection etc..

After all put your CakePHP project to '.yourapachewebroot' related to your installation directory (mine is 'C:wampwww', and my wamp is under 'C:wamp'). Let's say your project name 'asd123', then you should simply put asd123 directory to '.yourapachewebrootasd123' (on my computer it should be 'C:wampwwwasd123').

In httpd.conf write that line:

(mine is <Directory 'c:/wamp/www/asd123/>)

j0k
20.7k14 gold badges69 silver badges79 bronze badges
ozanmuyesozanmuyes

it's really simple and dont need to follow their instructions.

  1. extract cakephp to something like c:/htdocs/web/mysiteso it looks like

    mysite/app

    mysite/cake

  2. done. provided you set apache document root to c:/htdocs/web/you can visit your site at http://localhost/mysite

to be fancier:

  1. in httpd-vhosts.conf, add

    < VirtualHost *:80>

    ServerName mysite.local

    DocumentRoot C:/htdocs/web/mysite

    < /VirtualHost>

  2. in c:windowssystem32driversetchosts, add

    127.0.0.1 mysite.local

  3. restart apache

  4. done. visit site at http://mysite.local

this is all based on the assumption that your apache/php/mysql is configged correctly.

Funky DudeFunky Dude

Install Cakephp In Windows 7

3,1192 gold badges19 silver badges31 bronze badges

How To Install Cakephp In Wamp On Windows 10

Turns out i had both

and

How To Install Cakephp 3.0 In Windows

in my conf file and it was causing the error. I commented out the first one, moved a css file and I was in business.

GeoSQLGeoSQL

How To Install Cake Php In Xampp

Not the answer you're looking for? Browse other questions tagged apachecakephp or ask your own question.