Forum Replies Created

Viewing 1 replies (of 1 total)
  • Hey @chuckm97,

    From localhost we can’t update the wordpress, because wordpress required FTP detail. There are 2 way to update wordpress at local.

    1) Add below code in wp-config.php file, then you will not require to install FTP service.

    define('FS_METHOD','direct');

    OR

    2) You will require to install FTP service on you local and put below code in wp-config.php file

    define("FTP_HOST", "localhost");
    define("FTP_USER", "yourftpusername");
    define("FTP_PASS", "yourftppassword");
    • This reply was modified 7 years, 11 months ago by guvishal.
Viewing 1 replies (of 1 total)