wpconnection

WordPress plugin update Connection Information

A common error that you can come across while updating your WordPress plugins is the one in the screenshot where WordPress is requesting to provide the Connection Credentials in order to be able to update.

wpconnection

For me personally this happened when I moved my websites to a new server and the permissions of the files changed. WordPress is checking the ownership of the files while updating and they must match some specific criteria described in various posts in the web.

There is no need to go into much detail on what is causing the problem since there is a very simple solution which worked on all my websites. Just add below line at the bottom of wp-config.php and you are done!


define('FS_METHOD','direct');

Similar Posts

  • Proxy Server

    Build a proxy server in C using threads and sockets. Every server can have up to two connections on the proxy. Client requests must be satisfied. New servers must be added to a list/array upon a request and must be removed if no request comes within 10 seconds. [Source]

  • PuTTY SSH Tunneling

    This post explains how PuTTy SSH Tunneling can be easily used to bypass firewall rules blocking ports. Let’s say that we have the following setup where only communication via port 22 is allowed between two hosts: Step 1: Open profile and load server’s profile Step 2: Navigate to Connection->SSH->Tunnels and add new port as the…

  • Auction System

    This is an online auction system (like eBay) that lets users add items for sale and purchase items. Users are only allowed to enter bids if they have sufficient funds and when an auction has ended the money are being transfered from the buyer to the seller automatically. An extra feature supported by this auction…

18 Comments

  1. Thanks for this quick solution! I’m gonna post this solution on my blog too. I just moved my websites to a new faster VPS and having a hard time with this issue.

    Thank you so much!!


    Clint

  2. Most excellent. Worked for me too. And I learned a ton. Had to go look that up and learned so much more about the wp-config.php file.

    I’m just in the process of moving 10 sites between servers and in the middle, I started locking down security a bit better.

    This little gem helped me keep the security in place but update the software too.

    Thanks

  3. Cool beans! It worked!
    I was trying different methods since Bitnami has a tricky way of setting up your Amazon Web Server and the FTP is by means of a private key, so it is very tough trying to setup an ftp credentials. I read other blogs and tried chown method for the user running the php process and didnt work.
    This one totally nailed it! Thanks for this!

  4. Thank you!
    Tried everything before such as giving any kind of permissions and this simply directive worked for me.

  5. BOOM !!! You are the MAN!!!

    This solved my Import WordPress issue

    Import WordPress Sorry, there has been an error. The uploaded file could not be moved to wp-content/uploads

    I’ve tried allsorts and this worked immediately, goof work…

  6. Wow! it really worked.
    I was trying to fix this issue from 2 days, tried running SSH commands and added FTP credential to wp-config file but nothing worked.
    But your 1 line solution worked perfectly.

    Is there any security concern adding this file? Please let me know.

    Thank you

    1. There are no installation instructions in the post, just to edit a file. What exactly were you guys doing and it could not create a directory?

  7. I manually installed WordPress on my Synology NAS. And i can’t get this to work. I’ve updated folder ownerships and included this in my wp-config.php. I didn’t have the popup but i got this error ‘Could not fully remove plugin xxx.php’ [i’m trying to remove a plugin to test for this issue]

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.