0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Laravel 起動時の "No input file specified." を解決する

Posted at

開発環境

・windows10 ・virtual box 6.1.22 ・Vagrant 2.2.9 (最新版だとうまくいかなかったのでどちらもバージョンを下げています。)

環境構築はLaravel公式ページを参考にしました。

1 Homestead.yamlファイルの確認

yamlファイルの to: が以下のようになっていることを確認します。
sites:
    - map: homestead.test
      to: /home/vagrant/code/{自分のアプリ名}/public

※公式サイトの手順通りに環境構築した場合以下のようになっているので注意が必要です。

sites:
    - map: homestead.test
      to: /home/vagrant/code/public  <---ここがダメ

2 vagrant up --provision の実行

``` vagrant up ``` または
vagrant reload

を実行してもうまくいかない。

再起動するだけではだめで
プロビジョニングすることで編集したファイルの修正を行ってくれるみたいです。

vagrant up --provision

を実行することでLaravelが表示されました!

Laravelの環境構築に2日かかってしまいました。
社会人1年目貪欲に頑張ります。

参考文献

[HomesteadでLaravel起動時の「No input file specified.」の対処法](https://androidroid.info/homestead-err/)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?