This is the admin panel of my newly installed, unaltered install of Magento 2.2.5 in XAMPP 7.0.30 / PHP 7.0.30:
I am brand new to this, but I have done my best to find an answer or even just a solution on my own. I need help.
I do not see any folder with the path localhost/pub/static/version1532138534/adminhtml/Magento/backend/en_US/extjs/resources/css/
I’ve been struggling with this all week. I’ve fresh installed both XAMPP and Magento, trying multiple versions.
I’ve tried different browsers, and changing my browsers settings, and clearing my browsers.
I’ve tried installing XAMPP and Magento on MacOS instead, and found a new issue, that prevented me from even getting to this step, which I then banged my head against for 6 hours or so before giving up and going back to Windows.
I’ve pored over the web trying to find a solutions, but I can’t even find anyone with the same issue.
Obviously, I am doing something wrong… and I want to know what, but I just can’t seem to find any answers.
2
Answers
Solution: If anyone is having the same issue, here is what worked for me.
I added "C:xamppphp" to my system variables/path.
This appears to have allowed me to use php commands in my command prompt.
Then, I ran the setup for the Magento file in "C:xampphtdocsMagentobin". (This may be redundant.) [You can see a full list of available commands with "C:xampphtdocsMagentobin php Magento"]
Finally, I deployed all static view files.
After this, in a browser, I navigated to localhost/Magento, and ran through the Magento setup again, and the issue is resolved.
https://i.stack.imgur.com/gAEIQ.png
do the static content deployment.
take backup of core_config_data table
go to phpmyadmin and run
insert core_config_data (config_id, scope, scope_id, path, value) values (null, 'default', 0, 'dev/static/sign', 0);
go to your magento root folder using command line.
run
php binmagento cache:flush
run
php binmagento setup:static-content:deploy -f
your problem will be resolved.