Magento – How to disable merged CSS and JS

cachecore-config-datacssjavascriptmerge-css

I merged CSS and/or JavaScript and my website is all messed up.

How do I disable the CSS/JS merge functions?

It's so messed up I can't access the Admin panel, how do I do it in the database?

Best Answer

go to database and execute this query

SELECT * FROM core_config_data WHERE path LIKE 'dev%'

change these value from 1 to 0

dev/js/merge_files
dev/css/merge_css_files
Related Topic