Questions tagged [homestead]

Laravel Homestead is an official, pre-packaged Vagrant "box" that provides you a wonderful development environment without requiring you to install PHP, HHVM, a web server, and any other server software on your local machine. Homestead runs on any Windows, Mac, or Linux system, and includes the Nginx web server, PHP 5.6-7.3, MySQL, Postgres, Redis, Memcached, and all of the other goodies you need to develop amazing Laravel applications.

To install Laravel Homestead, please visit the official web site.

1571 questions
10
votes
2 answers

Laravel 5.3 Homestead php7 reload php.ini file

I made some changes to /etc/php/7.0/cli/php.ini on my laravel homestead machine. But I can't get it to load the new settings. Tried restarting nginx, restart php7, etc...
cmac
  • 3,123
  • 6
  • 36
  • 49
10
votes
3 answers

Laravel homestead not mapping my code folder

I am trying to get homestead to work after following the instructions here I have Virtualbox 5.0.6 and Vagrant 1.7.4 on windows 8. The machine boots up fine(ish) the only problem is that my mapped folder is not present on the vm, meaning when I…
Khalid Dabjan
  • 2,697
  • 2
  • 24
  • 35
10
votes
1 answer

Laravel 5: use homestead in production

It is good to use homestead in development. But is it also good to use homestead in production? If yes, should I run virtual box always? If I host my app to clouding service, ex: AWS, how can homestead work? Thanks
Georgi Kovachev
  • 633
  • 1
  • 10
  • 25
10
votes
1 answer

After installing Homestead I get "No input file specified" in the browser. How can I access my laravel project

I think I finally got homestead installed on my laptop! Now, I am trying to view my laravel project in the browser. When I open "dev.app" in the browser I get a message that say "No input file specified." which I think means that my homestead is…
Junior
  • 11,602
  • 27
  • 106
  • 212
10
votes
3 answers

Npm on Homestead

I just made laravel5 environment using homestead. And I did "npm install", and got the errors below. vagrant@homestead:~/Code/casts$ npm install > node-sass@3.1.2 install…
Toshi
  • 6,012
  • 8
  • 35
  • 58
10
votes
3 answers

Error with homestead up

I following the instructions to setup homestead and homstead up return: ☁ ~ homestead up Bringing machine 'default' up with 'virtualbox' provider... ==> default: Importing base box 'laravel/homestead'... There was an error while executing…
Cmarfil
  • 139
  • 6
10
votes
4 answers

Laravel Homestead: "VM not created.. moving on"

I did a global install of Laravel homestead, edited my ~/.homestead/Homestead.yaml-file and spun up the VM with homestead up. Everything worked fine, but then I needed to add another site. I edited Homestead.yaml to contain the new project, the…
rdiz
  • 6,136
  • 1
  • 29
  • 41
10
votes
7 answers

Laravel Homestead Installation: bash init.sh not working

I'm trying to install Laravel Homestead in order to be able to test my Laravel projects locally. I'm following this tutorial: http://laravel.com/docs/4.2/homestead In the "Installing Homestead" part I followed the second step "Manually Via Git (No…
Maxim Laco
  • 545
  • 2
  • 7
  • 17
9
votes
2 answers

Laravel/Symfony: unable to load the "app" configuration file

After upgrading my Homestead and installing my packages I came across a strange bug. On calling php artisan the following was given as output: In LoadConfiguration.php line 68: Unable to load the "app" configuration file. A few people suggest that…
Thomas Van der Veen
  • 3,136
  • 2
  • 21
  • 36
9
votes
8 answers

"vagrant up" it stops at SSH auth method: private key

I'm trying to install laravel on my computer with homestead environment. I followed all steps on the official documentation. And when I execute my "vagrant up" my console displays the following error. . Stops at SSH auth method. Previously I…
Arnau Guadall
  • 327
  • 1
  • 4
  • 17
9
votes
1 answer

How to clone my own Laravel project considering vendor ignored

I'm looking for help on dealing with the whole setup process of a Laravel project. Currently this is my walkthrough list: Install Virtual Box and Vagrant. Run vagrant box add laravel/homestead Run git clone https://github.com/laravel/homestead.git…
Marco Aurélio Deleu
  • 4,279
  • 4
  • 35
  • 63
9
votes
4 answers

Laravel Homestead Redis Port Forwarding

I'm having some trouble here trying to remotely connect to my local Homestead Redis server. I'm using both commandline (redis-cli) and RDM. I'm able to connect with Postgresql with PgAdmin in this box, but Redis returns with: Could not connect to…
Rafael Beckel
  • 2,199
  • 5
  • 25
  • 36
9
votes
1 answer

composer update gives a 404 about a private repository metadata

I installed laravel/homestead and tried 'composer update'. Composer gives me an TransportException about a private repo. Composer update Loading composer repositories with package information Your GitHub credentials are required to fetch private…
Bahjaat
  • 101
  • 1
  • 5
8
votes
2 answers

os Catalina and Laravel Homestead MySql error: ERROR 2007 (HY000): Protocol mismatch; server version = 11, client version = 10

I'm trying to connect to MySQL server within Vagrant's version of Laravel Homestead, which runs MySQL 5.7. I never seem to had any problems with it, but on my new laptop with Catalina I'm getting the following error when trying to connect using…
Sebastian Sulinski
  • 5,815
  • 7
  • 39
  • 61
8
votes
2 answers

How to use postgreSQL in Laravel Homestead

I can do migration to my homestead. this is my .env DB_CONNECTION=pgsql DB_HOST=localhost DB_PORT=54320 DB_DATABASE=intern DB_USERNAME=homestead DB_PASSWORD=secret And I make a new server in my postgreSQL with server name = Homestead, username…
Jems
  • 1,666
  • 4
  • 20
  • 50