How can I stop WordPress from prompting me to enter FTP information when doing updates?
Answer Posted / Arjun Mahato
To prevent WordPress from asking for FTP credentials during updates, you need to set up automatic updates. You can do this by adding the following lines to your wp-config.php file:nn```phpndefine('AUTOMATIC_UPDATER_DISABLED', true);ndefine('WP_AUTO_UPDATE_CORE', minor); // Replace 'minor' with 'major' if you want to update major versions as well.n```
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers