Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialjim vlagas
3,700 Pointswhen i type in browser laravel.dev:800 i see No input file specified. also i see that my files are more than your in dir
i see that your tut is out of date but also my 127.0.1.1:8000 i see in my browser no input file specified. whats happening ?
8 Answers
Brian Guanzon
3,155 PointsI had the same issue. I solved it by generating a new serve script for nginx.
http://laravel.io/forum/06-04-2014-no-input-file-specified-using-homestead?page=2
Matt Trask
10,027 PointsWell first quesiton, do you get the Laravel Home page? It should say something like "You have arrived", or if you are doing laravel 5, itll just be "Laravel 5"?
jim vlagas
3,700 Pointsits laravel 5
Matt Trask
10,027 Pointsdid you get an error when installing, like missing mcrypt extension?
What does your homestead.yaml file look like?
jim vlagas
3,700 Pointsi didnt had an error homestead file is like this
ip: "192.168.10.10" memory: 2048 cpus: 1 provider: virtualbox
authorize: ~/.ssh/id_rsa.pub
keys: - ~/.ssh/id_rsa
folders: - map: ~/homestead/projects to: /home/vagrant/sites
sites: - map: laravel.dev to: /home/vagrant/sites/Laravel-basiscs/public
databases: - homestead
variables: - key: APP_ENV value: local
blackfire:
- id: foo
token: bar
jim vlagas
3,700 Pointsi made vagrant ssh then i wrote serve laravel.dev /home/vagrant/sites/Laravel-basiscs/public nothing happend?
jim vlagas
3,700 Pointsone thing solved it all vagrant provision!
Paul Yorde
10,497 PointsPaul Yorde
10,497 PointsThanks Brian,
That fix worked for me too.