💼 Business Week Deal — Enjoy 25% OFF with code GUTENA25 GET IT NOW

How to set file system method ‘direct’ in WordPress

Step 1. Find and open wp-config.php file

We can find wp-config.php file in wordpress root folder

Step 2. Search text ‘FS_METHOD’ in wp-config.php file

Search ‘FS_METHOD’ in wp-config.php file. In case, if it’s already defined then change its value to ‘direct’. After changing the value it will look like

define('FS_METHOD','direct');

In case, if it’s not defined then add below code just above the comment /* That’s all, stop editing! Happy publishing. */

define('FS_METHOD','direct');
fs_method_direct
Step 3. Save File

Scroll to Top