Apache

site.com.conf

1. 개요 Apache site-conf 파일을 수정하여 VirtualHost를 구성한다.   2. Config File /etc/apache2/sites-available/site.com.conf <VirtualHost *:80> ServerName site.com ServerAdmin admin@site.com DocumentRoot /var/www/homepage ErrorLog ${APACHE_LOG_DIR}/site.com-error.log CustomLog ${APACHE_LOG_DIR}/site.com-access.log combined </VirtualHost> <Directory /var/www/homepage/> Options FollowSymLinks AllowOverride None Require all granted </Directory> #<Directory /var/www/homepage/index.html> # Order deny,allow # Deny from all # Allow from 192.168.0.1/24 # Allow from 1.2.3.4 #</Directory> […]

Continue Reading
CMS

WordPress 자식 테마 만들기

워드프레스 테마 수정 작업 전 자식 테마를 만드는 것을 추천한다. 왜냐하면 테마가 업데이트 될 경우 그동안 수정한 php, css 파일 등이 원래대로 돌아가기 때문이다. 따라서 자식 테마를 만들어야하는데 그 방법을 소개한다.   cd ./wp-content/themes sudo cp -arf [테마명] [테마명]-child ; “-child” 이름은 마음대로 설정해도 됨 cd [테마명]-child sudo vi functions.php ; 기존 내용 모두 지우고 […]

Continue Reading
CMS

도서산간 지역 우편번호

http://gmarket.co.kr/challenge/neo_include/delivery_sz_search.asp https://sir.kr/yc5_tip/773   22386-22388,23004-23010,23100-23116,23124-23136,31708-31708,32133-32133,33411-33411,40200-40240,46768-46771,52570-52571,53031-53033,53089-53104,54000-54000,56347-56349,57068-57069,58760-58762,58800-58810,58816-58818,58826-58826,58828-58866,58953-58958,59102-59103,59106-59106,59127-59127,59129-59129,59137-59166,59421-59421,59531-59531,59551-59551,59563-59563,59568-59568,59650-59650,59766-59766,59781-59790,63000-63644

Continue Reading
CMS

WordPress 웹마스터 도구에 맞게 head 추가

네이버 웹 마스터 도구로 최적화 스캔시 “X” 항목이 몇개 나온다.   하나씩 체크로 바꿔보자.   수정해야할 header 파일은 다음 디렉토리에 있다. header 파일이 1개 이상일 수 있다. (header.php, header-featured.php) wp-content/themes/[테마명]/header*.php   <head> 태그 안에 다음 내용을 추가한다. – 대표 URL – 네이버 <link rel=”canonical” href=”https://www.test.com” /> – 웹 페이지 설명 – 네이버 <meta name=”description” content=”웹 […]

Continue Reading
CMS

WordPress KBoard “Powered by -” 삭제

WordPress에 KBoard를 설치하면 게시판 하단 우측에 “Powered by KBoard”이 보인다. 이를 삭제하고자 할 경우 php 파일에서 해당 부분을 삭제하면 된다.   cd /wp-content/plugins/kboard/skin ./customer/list.php ./thumbnail/list.php ./contact-form/list.php ./default/list.php ./avatar/list.php ./customer/document.php ./thumbnail/document.php ./contact-form/document.php ./default/document.php ./avatar/document.php

Continue Reading
Back To Top