Reputation: 1
I'm following the bookmark tutorial
for ver3.0.
I tried these commands:
bin/cake bake all users
bin/cake bake all bookmarks
bin/cake bake all tags
results were all "Minimum PHP version: 5.4.16. You are using: 5.4.3"
and no controllers, views, models were created.
Can someone lead me to the right direction? I'm new to CakePHP
.
I have PHP 5.5.12 installed on WAMP2.5. php -v
gives "php5.4.3 on git".
Upvotes: 0
Views: 3484
Reputation: 61
if want run cake bake the first step Windows 7
Select Computer from the Start menu
Choose System Properties from the context menu
Click Advanced system settings > Advanced tab
Click on Environment Variables, under System Variables, find PATH, and click on it.
In the Edit windows, modify PATH by adding
C:\xampp\htdocs\App-file\bin;C:\xampp\php;C:\xampp\mysql\bin;
cake bake model all cake bake controller all cake bake Template all
Upvotes: 1
Reputation: 11
In case of Windows, the bake command: bin\cake bake all is used instead of bin/cake bake all
Upvotes: 1
Reputation: 11
I had same problem in XAMPP with PHP 5.4.7. After updating XAMPP to the newer PHP version 5.6.8, I am able to bake
.
Upvotes: 0