nginx、MySQL、HHVM、Composer はすでにインストールされており、すべて動作しているので、laravel new blog
ターミナルから実行するために Laravel CLI をインストールしましたが、実行すると次のエラーが発生します。
eduardo@eduardo-desktop:~/www$ laravel new blog
Crafting application...
[GuzzleHttp\Exception\ConnectException]
cURL error 28: Operation timed out after 29996 milliseconds with 2800182 ou
t of 7820187 bytes received
[GuzzleHttp\Ring\Exception\ConnectException]
cURL error 28: Operation timed out after 29996 milliseconds with 2800182 ou
t of 7820187 bytes received
new <name>
誰か助けてくれませんか?
よろしくお願いします!:D
答え1
default_socket_timeout
PHP設定ファイル(~/php.ini
)を増やす必要があります。例:
default_socket_timeout = 300
または設定するカールPHP コードでは次のようになります:
curl_setopt($res, CURLOPT_TIMEOUT, 300);