• Resolved monarchhf

    (@monarchhf)


    Just need to know what the constant is to use in the wp-config file to move the cache to the /uploads directory. My host for security reasons does not allow read/write access from the /wp-content/ directory.

Viewing 3 replies - 1 through 3 (of 3 total)
  • I also need to move the cache directory and would like to know how to do this.

    Plugin Author Shakeeb Sadikeen

    (@shakee93)

    Hey guys,

    Here is how you can update the default caching directory. Add this filter in your functions.php.

    
    add_filter('uucss/cache-base-dir', function (){
        return '/uploads/rapidload/';
    }, 90);
    
    Plugin Author Shakeeb Sadikeen

    (@shakee93)

    Closing this as there is no activity. Please feel free to open if you have any questions.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Configurable Cache Directory’ is closed to new replies.