Reputation: 105
I installed Laravel 4 and Composer yesterday to get started with laravel. I was following this guide http://fideloper.com/laravel-4-uber-quick-start-with-auth-guide and everything went well.
Today however when I tried to make my own laravel project by running
composer create-project laravel/laravel myproject"
in the terminal, I receive this message
?????????%
I have also tried cd to the project I made yesterday and ran
composer install
but again I get the same ???????%.
Has anybody experienced this problem before?
I am on Mac 10.8.4 and running PHP 5.3.6
Upvotes: 0
Views: 2328
Reputation: 11691
Can you skip Step 2
from that url and
try
php composer.phar create-project laravel/laravel myproject
see if this error re-occurs?
Upvotes: 1