Snippet

자주 사용하는 이메일 별칭 목록

자주 사용하는 이메일 별칭 목록 조직도(수신전용) 개발팀: development@example.com, opensource@example.com 기획팀: planning@example.com 재무팀: finance@example.com 마케팅팀: marketing@example.com 고객관리팀: cs@example.com 디자인팀: design@example.com 그룹(수신및회신) 인포센터: info@example.com 문의하기: contact@example.com 헬프센터: help@example.com 뉴스레터: hello@example.com Post Tags: …

자주 사용하는 이메일 별칭 목록 Read More »

워드프레스에서 글 자동저장 시간 및 갯수 변경하기

워드프레스에서 글 자동저장 시간 및 갯수 변경하기 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, #리비전, #워드프레스, #자동저장

부가가치세 계산하기

부가가치세 계산하기 Javascript var totalAmount = 10000; var totalVat = Math.round(totalAmount-(totalAmount/1.1)); var totalPrice = Number(totalAmount – totalVat); var totalPriceWon = totalAmount.toString().format(); var totalPriceVat = totalVat.toString().format(); PHP $totalAmount = 10000; $totalVat …

부가가치세 계산하기 Read More »

우분투에서 PHP-FPM 설치하기

우분투에서 PHP-FPM 설치하기 apt -y install php7.4-fpm Apache Configuration vim /etc/apache2/sites-available/000-default.conf <VirtualHost *:80> … <FilesMatch \.php$> SetHandler "proxy:unix:/var/run/php/php7.4-fpm.sock|fcgi://localhost/" </FilesMatch> … </VirtualHost> Enable required modules, proxy_fcgi and setenvif: a2enmod proxy_fcgi setenvif …

우분투에서 PHP-FPM 설치하기 Read More »

Scroll to Top