After installing CE 2.0, this is what my front-end and admin panel looks like. Sometimes when I refresh the page, the styles disappear altogether and only displays plain text. Has anyone ever had this problem before?
I've reinstalled Magento three times, that didn't work. I set my file permissions in accordance with Magento's recommendations and it broke the site (403 error). So I set my permissions back to 755 for directories and 644 for files. And that's where I'm at now. Any help would be greatly appreciated.
Hello,
When not in production mode Magento 2 will try to create symlinks for some static resources:
Open app/etc/di.xml and find the virtualType name="developerMaterialization" section. You change Magento\Framework\App\View\Asset\MaterializationStrategy\Symlink to Magento\Framework\App\View\Asset\MaterializationStrategy\Copy
Delete the files under pub/static. Please don't delete the .htaccess file.
You can read more here: http://magento.stackexchange.com/questions/64802/magento-2-404-error-for-scipts-and-css
When I look at di.xml, mine looks a bit different. This is what I see:
<virtualType name="developerMaterialization" type="Magento\Framework\App\View\Asset\MaterializationStrategy\Factory">
I tried changing it to ...\MaterializationStrategy\Copy">, but it didn't really change anything.
Also, everything under pub/static looks important and I'm hesitant to delete anything there. I have three directories named "_requirejs, adminhtml, and frontend". Then, of course there is the htaccess file.
I have no problems when installing version 1.9.
I'm running a Linux server with Apache 2.4, PHP 5.5, and MariaDB 10
I hate Magento so much. I gave it a fair chance, but I'm done with it.
Oof. Sorry to hear that @sgrd267, I haven't seen this happen before so it's likely environment related. CE1.9 is quite different from 2.0 so requirements are also different. Let me know if you'd still like some help sorting it out.
You can start with trying the following two things:
I have faced the same problem, resolve by the following command:
Execcute the commans as in given sequence
1: rm -rf var/di/* var/generation/* var/cache/* var/page_cache/* var/view_preprocessed/* var/composer_home/cache/*
2: sudo chmod 777 var -R
3: sudo chmod 777 pub -R
4: sudo php bin/magento setup:static-content:deploy
5: Repeat step 2 & 3.
Hope this will also help you.