Hello, i've been spending several hours trying to get Valet working. No luck.
So i followed the instructions:
- brew update
- brew install php70
- brew install mariadb
- composer global require laravel/valet
- valet install
- cd ~/Sites
- valet park
- laravel new testing-valet
Open browser at testing-valet.dev and nothing. Chrome says "Can't access this website".
So i went to brew services list and i got:
dnsmasq started root /Library/LaunchDaemons/homebrew.mxcl.dnsmasq.plist mariadb started ricardo /Volumes/500GBHD/ricardo/Library/LaunchAgents/homebrew.mxcl.mariadb.plist php70 started root /Library/LaunchDaemons/homebrew.mxcl.php70.plist
The which phpoutputs:
/usr/local/bin/php
If i hit php -vi get:
PHP 7.0.6 (cli) (built: Apr 29 2016 04:21:39) ( NTS ) Copyright (c) 1997-2016 The PHP Group Zend Engine v3.0.0, Copyright (c) 1998-2016 Zend Technologies
If i try valet share inside a laravel project i get an address like http://7d3bXXXXX.ngrok.io which displays:
The connection to http://7d3bXXXXX.ngrok.io was successfully tunneled to your ngrok client, but the client failed to establish a connection to the local address testing-valet.dev:80.
Make sure that a web service is running on testing-valet.dev:80 and that it is a valid address.
The error encountered was: dial tcp: lookup testing-valet.dev: no such host
I don't have apache, nginx, homestead, vagrant or anything blocking/using port 80. I don't have anything weird on /etc/hosts so i don't know what else to do.
I've have the latest Valet 1.1.3 and my composer vendor directory is set up correctly.
Any thoughts or suggestions? Maybe i don't have a service configured correctly? A missing daemon?
Thanks in advance. I'm running OSX El Capitan.