문제

Every time I attempt to upload a plugin or theme, I am asked for the FTP password. Is there a way to save this within Wordpress, or do I have to enter it every time? Thanks.

도움이 되었습니까?

해결책

You can save this information on your wp-config.php file:

define('FTP_HOST', 'ftp_host');
define('FTP_USER', 'ftp_username');
define('FTP_PASS', 'ftp_password');

More info (WordPress Codex)

다른 팁

There's a better way to do this. chown -R apache:apache /var/www/wordpress*

Saving this data as shown above into wp-config creates a bigger vulnerability because anyone with CLI access can then see the password for your ftp server as that user, and do anything they can do on the file system (unless chrooted, say).

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 wordpress.stackexchange
scroll top