The installation of Magento was successful but the Admin page displays:
Not Found
The requested URL /admin_8qx1j4/ was not found on this server.
Apache/2.4.9 (Win64) PHP/5.5.12 Server at 127.0.0.1 Port 81
If I go to the home page I get an un-styled page
I configured Apache to use port 81 because I have visual studio installed which I read might be causing the problem with Port 80.
Inspecting the HTML on the home page I see the CSS location is :
pub/static/frontend/Magento/luma/en_GB/mage/
In the pub/static folder I have a .htaccess file and a folder _requirejs folder and the frontend folder is missing.
System.
Windows 10
WAMP Server 2.5
Magento 2.0.0
All help is appreciated!
Thanks
I just ran the full install and had the same issue.
To fix the Javascript and CSS issues on the frontend. Run in SSH.
php -f bin/magento setup:static-content:deploy php -f bin/magento cache:flush find . -type d -exec chmod 755 {} \; && find . -type f -exec chmod 644 {} \;
This fixed the frontend for me. For the backend, it is something with the htaccess file. I renamed my htaccess file and I was able to log in. I will have to go through it all to figure out what part of my htaccess file is causing the 500 error.
Hi,
Thanks for your response!
How do I run SSH commands on Windows with WAMP?
Thanks!
I gave up with WAMP and used XAMPP instead. It installed and worked first time.