
Yesterday We discussed the How To Resolved WordPress Asking FTP Credentials, Now we discuss How To Fix Error Install Themes and Plugins In WordPress. Why can errors when installing Themes and Plugins?? because we have not created Administrator permissions and root access in WordPress, especially in Vps because all the installation Process, Access right, Web Server are all that we manage.
Now we give access right/permissions at the root of WordPress Installation, our first step must be remote server via SSH or for Windows it can be with putty.
Go to directory root ;
cd /var/www/html/wordpress
chown -R www-data:www-data wp-content/plugins/
chmod 755 wp-content
chown -R www-data:www-data wp-content/
Then restart apache systemctl restart apache2
Try Now to Install Plugins/Themes on WordPress

How easy isn’t it?? make sure you are using chmod 755 never use 777 because it is expensive, chmod 777 means everyone can access/log in as root.
1 thought on “How To Fix Error Install Themes and Plugins In WordPress”