WooCommerce .Zipファイルをアップロードして、ローカルホストにプラグインをインストールできません。インストールボタンをクリックするたびにWordpressこの写真のようなFTP資格情報の接続情報を要求します:
ホスト名にlocalhostを入力し、ユーザー名としてadminを入力するのは難しいですが、機能しません。
試してみてください:
chmod 777 /Applications/XAMPP/xamppfiles/htdocs/wordpress/wp-content/plugins/
chmod 777 /Applications/XAMPP/xamppfiles/htdocs/wordpress/wp-content/themes/
次に、これらをwp-config.php
に追加します。
/** Add here*/
define('FS_METHOD','direct');
define("FTP_Host", "localhost");
define("FTP_USER", “my_wordpress_user”);
define("FTP_PASS", “password”);
/** To here*/
上記の行で、my_wordpress_user
とpassword
はワードプレスで使用されているものです。
define('FS_METHOD','direct');
をwp-config.phpに追加するだけです。
推奨:
CentOSを使用している場合:
//Set www to 777
# chmod -R 777 /var/www/html
// Change the owner to Apache
# chown -R Apache:apache /var/www/html
// Restart httpd
# systemctl restart httpd
推奨されませんが機能します:
この行をwp-config.phpに追加します
define( 'FS_METHOD', 'direct' );