Cakephp Installation Windows 7

Active6 years, 10 months ago
  1. Driver Software Installation Windows 7
  2. Windows 7 Installation Cd
  3. Install Cakephp Windows 7
  4. Windows 7 Installation Files
  5. Pilote D'installation Windows 7

How do I configure CakePHP on Windows 7 using WampServer? Update Cancel. How do I install windows 7 using pen drive? Does Windows 8.1 use more RAM than Windows 7? CakePHP is a web development framework that uses the MVC model. This post explains how you can set up CakePHP using XAMPP on a Windows 7 system. CakePHP is a web development framework that uses the MVC model. It is a free open source framework for PHP that uses the Mode-View-Controller software design pattern. Here, I will explain how you can set up CakePHP using XAMPP on a Windows 7 system. Install CakePhp in xampp server on windows 7 or 8: CakePHP is a free, open-source and PHP web development framework [].

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.

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.

Drivers hp 3570c scanner

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
3,1192 gold badges19 silver badges31 bronze badges

Turns out i had both

and

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

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

Active4 years, 7 months ago

I've installed the latest version of CakePHP, then installed PHPUnit using PEAR and tried to get access using such link as

http://localhost/[project_name]/test.php

But as a result I've got a message that PHPUnit is not installed. I can't understand what the problem is. Are there any other ways to solve this problem ?

And is it possible not to install PHPUnit, but just copy all its files to, for example, Vendor directory of CakePHP and to use it locally just for one separate project ?

John Willemse
5,2947 gold badges26 silver badges43 bronze badges
jekahmjekahm

Driver Software Installation Windows 7

2 Answers

The easiest way in Win is https://github.com/dereuromark/cakephp-phpunitThat is standalone and will all work out of the box with

Windows 7 Installation Cd

It has no dependencies outside of CakePHP itself. No composer, no pear no other 3rdparty issues.

If you do have one of those dependencies available, use that one, though.

Note:As of now the pear channel has been shut down and as such there is only the composer solution to it now. (See other answer)

markmark
20.7k3 gold badges42 silver badges65 bronze badges

I disagree with Mark. :)

The most easy way to install phpunit systemwide is using composer as described on their installation page:

Install Cakephp Windows 7

For a system-wide installation via Composer, you can run:

burzumburzum

Windows 7 Installation Files

23.1k8 gold badges35 silver badges61 bronze badges

Pilote D'installation Windows 7

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