homestead

homestead.rb:109:in `read': No such file or directory @ rb_sysopen

落爺英雄遲暮 提交于 2020-01-15 05:35:09
问题 I try to use homestead via the document 5.3 from the offical website https://laravel.com/docs/5.3/homestead but it doesn't work, the details were as follows : C:\Users\liang\Homestead>vagrant up C:/Users/liang/Homestead/scripts/homestead.rb:109:in read': No such file or directory @ rb_sysopen - C:/Users/liang/.ssh/id_rsa (Errno::ENOENT) from C:/Users/liang/Homestead/scripts/homestead.rb:109:in block (2 levels) in configure' from D:/Program Files/vagrant/embedded/gems/gems/vagrant-1.8.4

Cannot install global homestead: Your requirements could not be resolved

瘦欲@ 提交于 2020-01-11 08:44:35
问题 I am trying to install homestead on OSX 10.11. I want to be up and running building laravel applications. I cannot run homestead from the command line. When I try to install it globally I get an error: $ composer global require "laravel/homestead=~2.0" Changed current directory to /Users/connorleech/.composer ./composer.json has been updated Loading composer repositories with package information Updating dependencies (including require-dev) Your requirements could not be resolved to an

Cannot run artisan command in Laravel Homestead

廉价感情. 提交于 2020-01-06 07:28:47
问题 After setting up Homestead for 1 specific project only, I want to run the Artisan CLI for database migrations. I tried to follow this tutorial and I keep getting this error: Could not open input file: artisan I set up the project by running these commands (Windows): composer require laravel/homestead --dev vendor\\bin\\homestead make vagrant up And then I made sure to be in the root project directory and then run php artisan list , which gives the error above. I also tried to ssh into the

Modify php.ini on Laravel Homestead

放肆的年华 提交于 2020-01-06 06:40:48
问题 Is there anyway to change the php.ini file on Laravel homestead? For instance, I want to have the short_open_tags set to On - however I can't see an easy way to do this - Apart from going into the php.ini file and changing it every single time I boot homestead?? I can't be doing that each time. There has to be an easier way to simply override some settings in Laravel homestead. What if I want larger file uploading, different time local etc? How can I achieve this? I've tried using the ini_set

Modify php.ini on Laravel Homestead

ε祈祈猫儿з 提交于 2020-01-06 06:40:22
问题 Is there anyway to change the php.ini file on Laravel homestead? For instance, I want to have the short_open_tags set to On - however I can't see an easy way to do this - Apart from going into the php.ini file and changing it every single time I boot homestead?? I can't be doing that each time. There has to be an easier way to simply override some settings in Laravel homestead. What if I want larger file uploading, different time local etc? How can I achieve this? I've tried using the ini_set

Laravel Homestead and Nginx subdomain wildcard

那年仲夏 提交于 2020-01-05 11:10:14
问题 i have problem with nginx and homestead. I can't make dynamic subdomain working. I tried everything here is my configuration. OS: Ubuntu 14.04 LTS 64bit Guest OS: Ubuntu 14.04 LTS 32bit ( Vagrant with Homestead ) Homestead.yaml ip: "192.168.10.10" memory: 512 cpus: 1 provider: virtualbox authorize: /home/user/.ssh/id_rsa.pub keys: - /home/user/.ssh/id_rsa folders: - map: /home/user/Projects to: /home/vagrant/Projects sites: - map: businesspage.local to: /home/vagrant/Projects/BusinessPage

“vagrant up” it stops at SSH auth method: private key

微笑、不失礼 提交于 2020-01-04 01:49:30
问题 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 configured the ssh-keygen with " ssh-keygen -t rsa -b 4096 -C "me@email.com " I added the host piece at .rb file: Even .yaml file. I think I edited properly At hosts file I added: "192.168.10.10 administracio.dev" at the bottom of the file. And then when

“vagrant up” it stops at SSH auth method: private key

陌路散爱 提交于 2020-01-04 01:49:14
问题 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 configured the ssh-keygen with " ssh-keygen -t rsa -b 4096 -C "me@email.com " I added the host piece at .rb file: Even .yaml file. I think I edited properly At hosts file I added: "192.168.10.10 administracio.dev" at the bottom of the file. And then when

Can I use `vagrant box update` while already having the machine running by `vagrant up`?

青春壹個敷衍的年華 提交于 2020-01-03 18:52:16
问题 I have some projects in Laravel, and when I have to give some maintenance to them, sometimes when I run vagrant up , it warns me up that I have a newer version of the laravel box, homestead, like the message below: A newer version of the box 'laravel/homestead' is available! You currently have version '1.1.0'. The latest is version '2.0.0'. Run `vagrant box update` to update. My question is, always when I run vagrant box update , it tooks like a decade to download the newer version of the box

Laravel 5.4 View [name] not found

拈花ヽ惹草 提交于 2020-01-02 06:21:11
问题 Even if the views is available at the resources/views directory laravel is showing me this error View [name] not found. Everything was working fine until a token mismatch error occured currently i am not being able to access any view in the views directory. Route::get('/', function () { return view('welcome'); });//in web.php is throwing View [welcome] not found. exception NOTE I am running my application vagrant in homestead 回答1: First of all check welcome view exist in the resources/views