Cache Clear: Difference between revisions
Jump to navigation
Jump to search
(Created page with "==Wordpress== <pre> wp cache clear rm -rf wp-content/cache/ </pre> ==Magento== <pre> bin/magento cache:clean php bin/magento c:c bin/magento cache:flush php bin/magento c:f </pre> ==Prestashop== ===Prestashop 1.6== <pre> delete all of the content in the following directories except for the index.php file: img/tmp cache/smarty/cache cache/smarty/compile </pre> ===Prestashop 1.7=== <pre> Erase all the files and folders inside the following directories: var/cache/dev...") |
No edit summary |
||
| (One intermediate revision by the same user not shown) | |||
| Line 1: | Line 1: | ||
==Wordpress== | ==Wordpress== | ||
<pre> | <pre> | ||
wp cache | wp cache flush | ||
rm -rf wp-content/cache/ | rm -rf wp-content/cache/ | ||
</pre> | </pre> | ||
| Line 15: | Line 15: | ||
==Prestashop== | ==Prestashop== | ||
===Prestashop 1.6== | ===Prestashop 1.6=== | ||
<pre> | <pre> | ||
delete all of the content in the following directories except for the index.php file: | delete all of the content in the following directories except for the index.php file: | ||
Latest revision as of 11:52, 21 June 2024
Wordpress
wp cache flush rm -rf wp-content/cache/
Magento
bin/magento cache:clean php bin/magento c:c bin/magento cache:flush php bin/magento c:f
Prestashop
Prestashop 1.6
delete all of the content in the following directories except for the index.php file: img/tmp cache/smarty/cache cache/smarty/compile
Prestashop 1.7
Erase all the files and folders inside the following directories: var/cache/dev (for development mode) or var/cache/prod (for production mode) img/tmp
Laravel
To clear Laravel Cache, refer to Clear Laravel Cache