워드프레스 관리자 이메일 및 비밀번호 수정
사용자 조회 $blogusers = get_users(); // Array of WP_User objects. foreach ( $blogusers as $user ) { echo "[{$user->ID}] {$user->user_login}: {$user->user_email}"; } 비밀번호 수정 wp_set_password( 'password', 'username' ); 관리자 이메일 …
사용자 조회 $blogusers = get_users(); // Array of WP_User objects. foreach ( $blogusers as $user ) { echo "[{$user->ID}] {$user->user_login}: {$user->user_email}"; } 비밀번호 수정 wp_set_password( 'password', 'username' ); 관리자 이메일 …
워드프레스에서 업로드 사이즈 제한하기 function limit_upload_size() { add_filter('wp_handle_upload_prefilter', function ($file) { $file_size_limit = 1024; // 1MB in KB if (!current_user_can('manage_options')) { $current_size = $file['size']; $current_size = $current_size / 1024; //get …
워드프레스에서 글 자동저장 시간 및 갯수 변경하기 Edit wp-config.php define( 'WP_POST_REVISIONS', 3 ); define( 'AUTOSAVE_INTERVAL', 300 ); Reference https://wordpress.org/documentation/article/revisions/ Post Tags: #autosave, #revisions, #WordPress, #wp, #리비전, #워드프레스, #자동저장
우분투에서 가상호스팅으로 워드프레스 설치하기 Directory Structure . `– var/ `– www/ `– example.com/ |– public_html/ | `– index.html `– logs Virtualhost cp -r /var/www/wordpress /var/www/example.com Permission for owner (single user) …
우분투에서 워드프레스 보안 인증서(SSL) 설치하기 Installing Certbot apt -y install certbot python3-certbot-apache Obtaining an SSL Certificate certbot –apache Auto Renew Show crontab list crontab -l every 1 month crontab -e …
우분투에서 워드프레스 설치하기 When you request a directory without specifying a filename, index.html will be given the priority and hence will be displayed. You can change the priority order in …
워드프레스에서 메모리 제한 늘리기 Edit .htaccess # PHP Configuration php_value memory_limit 256M php_value post_max_size 100M php_value upload_max_filesize 100M php_value max_execution_time 600 php_value max_input_vars 3000 php_value max_input_time 300 # END PHP …
워드프레스에서 WP MAIL SMTP 설정 Amazon SES를 사용하여 전송하는 이메일이 스팸으로 표시되는 이유는 무엇입니까? Authenticating Email with SPF in Amazon SES The name of the record can be blank or …
아마존 라이트세일에 보안 인증서(SSL) 적용하기 SSL 인증서 발급 sudo /opt/bitnami/bncert-tool https://dobiho.com/wordpress/setup-wordpress/setup-wordpres/install-aws-lightsail-wordpress-instance/setup-amazon-lightsail-ssl/ SSL 자동 갱신 인증서 확인 sudo crontab -u bitnami -l https://paperblock.tistory.com/6 SSL 인증서 삭제 ./certbot-auto delete https://nine8007.tistory.com/entry/아마존-라이트세일에서-Letsencrypt-인증서-삭제하기
아마존 라이트세일 워드프레스에서 ftp 정보 입력 창이 나오는 경우 워드프레스 설치 디렉토리의 소유자 변경 chown -R www-data:www-data /home/ubuntu/wordpress www-data 보조 그룹에 ubuntu 사용자를 추가 usermod -a -G www-data ubuntu 실행 …