11
Sep
2021

wenn WordPress nach der Installation unbedingt FTP haben will

einfügen in die wp-config.php


/* Anpassung G2G - Problem mit FTP Login zur Plugin Installation beheben */
define('FS_METHOD', 'direct');

oder alternativ im Terminal

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:

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/

Share

You may also like...

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert