Magento – Turn template path hints off from command line

templatetemplate-hintstheme

For whatever reason, I just did a mysqldump of our magento database, imported it into a new database, and suddenly template path hints are on, how can I turn these off from the command line? Or what table/column do I need to change in the database to turn these off?

Thank you!

Best Answer

You can turn them off by running the following query:

UPDATE core_config_data SET value = '0' WHERE path LIKE '%template_hints%';

After running the query make sure you clean the var/cache directory too when you are in the Magento root. (rm -rf var/cache/*)

Enjoy ;)

Related Topic