Select Page

Recently I had some issues trying to add WordPress plugins through the dashboard. It seemed at first like a permissions issue but apparently with the latest version of WordPress you need to add a line of code to your wp-config.php file to enable this

define('FS_METHOD', 'direct');

This forces the file system method and enables you to add plugins again.