einfügen in die wp-config.php
/* Anpassung G2G - Problem mit FTP Login zur Plugin Installation beheben */
define('FS_METHOD', 'direct');
cd /path/to/wordpress/installation
find . -exec chown www-data:www-data {} \;
oder Hilfe von Turnkey
Give the webserver ownership of the /var/www/html/wordpress/wp-content/ folder tree.
chown -R www-data:www-data /var/www/html/wordpress/wp-content
2. Add an entry to the wp-config.php file. Open it for editing:
nano /var/www/html/wordpress/wp-config.php
And add this:
define('FS_METHOD', 'direct');
Make sure it goes ABOVE this line:
/* That’s all, stop editing! Happy blogging. */
3. Restart Apache:
service apache2 restart
gefunden auf Turnkey: https://www.turnkeylinux.org/forum/support/20130418/wordpress-and-ftp
gefunden auf: https://ansas-meyer.de/programmierung/wordpress/wordpress-berechtigungen-korrekt-setzen/