ryanstreet / magento2-vagrant

Vagrant Setup for Magento 2 install. All prerequisites setup and running.
GNU General Public License v2.0
84 stars 32 forks source link

problems on osx #7

Open leejordan opened 9 years ago

leejordan commented 9 years ago

Hi, I am having issues with this on osx.

Vagrant up completes and tells me

==> default: Magento2 Vagrant Box ready!
==> default: Go to http://192.168.33.10/magento2/setup/ to finish installation.

But when I visit that url I get a blank page and nothing loads. There are some errors during vagrant up that might be worth noting:

==> default: AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 10.0.2.15. Set the 'ServerName' directive globally to suppress this message

==> default: chmod: cannot access ‘/var/www/html/magento’
==> default: : No such file or directory
leejordan commented 9 years ago

Also, I had to run git submodule init before git submodule update would work. Just something I forgot to mention that you might want to add to your readme.

leejordan commented 9 years ago

I solved this error:

==> default: chmod: cannot access ‘/var/www/html/magento’

bootstrap.sh was trying to chmod this folder chmod 777 -R /var/www/html/magento which didn't exist so I changed it to chmod 777 -R /var/www/html/magento2 and I now have a working magento2 vm.

Perhaps the folder name has changed in magneto2 since you first wrote this?

But the bad news is I still don't end up with a working magento2 server. when I hit http://192.168.33.10/magento2/setup/ I just get a blank page.

leejordan commented 9 years ago

http header reports a 500 server error but I am not sure how to glean more information about the error.

ryanstreet commented 9 years ago

thank you for this information. I will take a look at it and see where I can get these fixed.