Hello,
I've migrated Magento to another server. But now, there are no stylings shown, everything else works fine. When I'm looking into sourcecode, the / after the domain is missing, but in the DB in web/unsecure/base_url the URL ends with the slash.
Regards,
Markus
Solved! Go to Solution.
Hello @Werderaner
1. Please add "/" web/secure/base_url also.
2. Check permission folders: Var, Media
3. If JS and CSS merged try to unmerged and remove cache and again merge
Try these steps, if not worked let me know.
Hello @Werderaner
1. Please add "/" web/secure/base_url also.
2. Check permission folders: Var, Media
3. If JS and CSS merged try to unmerged and remove cache and again merge
Try these steps, if not worked let me know.
Hello @Werderaner,
Your source indicates that merging is enabled. You can run the following SQL to update your core_config_data table; backup first!
UPDATE `core_config_data` SET `value` = 0 WHERE `path` = "dev/js/merge_files" OR `path` = "dev/css/merge_css_files";
You should see at least two rows affected. Remove everything from var/cache/.
--
If my answer is useful, please Accept as Solution & give Kudos