Reputation: 2101
Just started with CakePHP this evening. This is running me out of time.
All I have is a WAMP Server on a Windows7 Machine.
Apache Version : 2.4.9
PHP Version : 5.5.12
Downloaded the latest version cakephp-3.0.0.zip
from github.
Extracted it to D: ... wamp/
As stated here:
In both XAMPP and WAMP, mcrypt and mbstring extensions are working by default.
In XAMPP, intl extension is included but you have to uncomment extension=php_intl.dll in php.ini and restart the server through the XAMPP Control Panel.
In WAMP, the intl extension is “activated” by default but not working. To make it work you have to go to php folder (by default) C:\wamp\bin\php\php{version}, copy all the files that looks like icu*.dll and paste them into the apache bin directory C:\wamp\bin\apache\apache{version}\bin. Then restart all services and it should be OK.
On the httpd.conf, I have:
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
Restarted the WAMP server and still leading it to directory browsing.
I was looking for a solution from an hour ago. Nothing help as I wanted it it CakePHP3.0.
Please help me get the rid outta this.
Upvotes: 1
Views: 13282
Reputation: 1
You can find complete detail in this video, here I have explained step by step and it will help you to install cakephp 3. Video : Install cakephp 3
Upvotes: 0
Reputation: 1360
TO install CakePHP follow instructions below.
Please ensure following things are enabled and installed on your machine.
Next Install Composer. For windows users it's very easy just download installer file from composer site.
Here is the .exe installer link to download Composer-Setup.exe
Once YOu installed composer successfully then run following command in terminal window.
composer create-project --prefer-dist cakephp/app cquiz
Finally it will ask you to set permission for temp folder, so press Y to continue. it will set writable permission for temp and it's sub folders, also generate security salt for you.
I have given step by step installation instructions for CakePHP 3 here
http://www.smarttutorials.net/install-cakephp-3-using-composer/
Upvotes: 2