1. 개요
WordPress에서 테마나 플러그인 추가시 FTP 정보 입력을 요구하는데
FTP 없이 바로 추가할 수 있는 방법을 소개한다.
2. 수정
# wp-config.php 에 내용 추가
sudo vi ./wp-config.php
// Don't use FTP Just upload define('FS_METHOD', 'direct');
# 디렉토리 권한 부여
sudo find ./wp-content/ -type d -exec chmod 2775 {} \;
sudo find ./wp-content/plugins/ -type d -exec chmod 2775 {} \;
sudo find ./wp-content/themes/ -type d -exec chmod 2775 {} \;
3. 참고
https://mytory.net/archives/3261