WordPress - Changing the cache folder
You can define different cache path using these codes (the values in the below example are the default ones):
define('NEXTEND_RELATIVE_CACHE_WEB', '/cache/nextend/web'); define('NEXTEND_RELATIVE_CACHE_NOTWEB', '/cache/nextend/notweb');
Open your wp-config.php file and copy the codes above, then modify the path. For example, if you would like to put our cache files into your wp-content/uploads folder, use these codes:
define('NEXTEND_RELATIVE_CACHE_WEB', '/uploads/cache/nextend/web'); define('NEXTEND_RELATIVE_CACHE_NOTWEB', '/uploads/cache/nextend/notweb');