cancel
Showing results for 
Search instead for 
Did you mean: 

Styling is missing after migration to another server

SOLVED

Styling is missing after migration to another server

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

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Styling is missing after migration to another server

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.

Manish Mittal
https://www.manishmittal.com/

View solution in original post

2 REPLIES 2

Re: Styling is missing after migration to another server

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.

Manish Mittal
https://www.manishmittal.com/

Re: Styling is missing after migration to another server

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