ftp 권한 무시
wordpress에서 플러그인을 업그레이드하거나 wordpress를 업그레이드하려고 할 때마다 ftp 로그인이 표시되지만 ftp 로그인을 어떻게 건너뛸 수 있나요?
해결책워드 프레스 구성 파일 wp-config.php[18:35:08 root@zhang ~]#vim /apps/nginx/html/wordpress/wp-config.php를 연 다음 파일의 마지막 줄에 이 두 개의 777 권한을 추가하세요.
define("FS_CHMOD_DIR", 0777); define("FS_CHMOD_FILE", 0777);워드 프레스 디렉토리에 사용자 권한을 추가하세요. nginx 사용자를 사용하는 경우 워드프레스 서비스를 실행해 보세요.
[18:37:31 root@zhang ~]#chmod -R 777 /apps/nginx/html/wordpress/ [18:37:50 root@zhang ~]#chown -R nginx:nginx /apps/nginx/html/wordpress/위는 워드프레스 업그레이드 시 ftp 설정을 위한 해결 방법입니다.