Laravel 4 install crash

I am trying to install laravel without success. I follow what seems like a regular recipe

git clone -b develop git://github.com/laravel/laravel.git myapp cd myapp curl -sS https://getcomposer.org/installer | php php composer.phar install 

When I run it, I always get the following. I tried to kill dir cache update etc.

Running PHP version 5.4.6 open-ssl, mcrypt is included in cli.

I just don’t know what I am missing. He gave him a chance for more than a week. I saw a few conversations about network problems. When I manually load json in the browser, I notice that it redirects to a secure https-url. Any pointers would be great. I never had such a problem when I could not find the answer.

  # php composer.phar install
 Loading composer repositories with package information
 Installing dependencies

   [Composer \ Downloader \ TransportException]
   The "http://packagist.org/p/laravel/framework$de13d7a9bde179aa3dbe63308a250
   911fa2330b3e0ba7510dea52827ec3c2f14.json "file could not be downloaded: fai
   led to open stream: HTTP request failed!
+4
source share
3 answers

I noticed with wget or browser, I would get https redirect. It seems that despite the fact that the composer is different from the other 2, it creates a problem with the firewall. The link above solved it by adding a section to my composer.json file. Now it does not need to be redirected since it starts with https. I am running for sonicwall. I'm not sure why it will work with browser and wget, but not with composer. However, he decided that.

+3
source

You are cloning a developer branch from github. This version may be broken at this time. That way, you can wait and try later (maybe this will be fixed) or you download this develop.zip , which is the official way described in the L4 documentation.

0
source

please take a look at this link. niallo brien wrote a good article about this http://niallobrien.me/2013/03/installing-and-updating-laravel-4/

0
source

All Articles