1 | [curl] 7: Failed to connect to 192.241.224.13 port 80: Operation timed out [url] http://192.241.224.13/laravel-craft.zip |
The simple answer is you are using an old version of Laravel's installer. As of writing this blog it is at version 1.3.1. Even if you have followed the install procedures given on the Laravel site you may still be suffering this issue.
Execute this command:
1 | where laravel |
If the result is something like this /usr/local/bin/laravel
instead of your local home directory being the first entry then I can guarantee you are running an older version which is overriding the versuin you have installed. Most likely version 1. BNext type this to confirm: laravel --version
.
1 | % laravel --version |
As you can see it seems on this machine version 1.0.0 is still the one being executed.
To solve the problem simply run % rm /usr/local/bin/laravel
Then redo the installation and make sure the new installation is pointed to in your .bashrc
or .zshrc
$PATH
variable.
When you finally get the right version you should see something like this:
1 | % laravel --version |