Hi all,
I have tried to go through the steps in the installation guide the best that I can, but I'm having trouble when I start running the setup from the browser. I get from Firefox "The requested URL /setup was not found on the server". I can run a phpinfo script from magento folder (with Firefox, but not Chrome), but get the "not found" message when run from the setup folder. I'm not sure of my virtual host which is defined as follows:
<VirtualHost *:80>
DocumentRoot "/var/www/magento2"
ServerName magento2-playground.dev
<Directory /var/www/magento2>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
ServerAdmin webmaster@localhost
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
Also is there anything else I should be looking at!