본문 바로가기

개발

(326)
개발/CMS
워드 프레스 업데이트 알림 서비스 Update Services are tools you can use to let other people know you've updated your blog. WordPress automatically notifies popular Update Services that you've updated your blog by sending a XML-RPC ping each time you create or update a post. In turn, Update Services process the ping and updates their proprietary indices with your update. Now people browsing sites like Technorati or Sphere can fin.. 2016.06.06
개발/CMS
sfCMS 메뉴얼 - 시간형식 Contents1 시간 및 날짜 사용자 정의1.1 예제1.2 현지화(Localization)1.3 사용자 정의 문자 사용시간 및 날짜 사용자 정의날짜와 시간 정보를 표시하거나 반환하는데 사용하는 특정 워드프레스 태그 기능이 있다;the_date()와 the_time()이 이 예이다. 이 기능 중 일부는 날짜 표시 방(법을 결정하는 형식 문자열이라는 매개변수를 사용한다. 형식 문자열은 템플릿이다. 이 템플릿에서 날짜 표시 형식을 지정하기 위해 날짜의 여러 부분이 조합("형식 문자(format characters) 사용")된다.예를 들어, 형식 문자(format string):l, F j, Y 은 날짜를 다음과 같이 만든다:Friday, September 24, 2004 다음은 위에 표시된 각각의 형식 문자.. 2016.06.06
개발/해킹
Cloudflare doesn’t help your DDOS Ever since CloudFlare helped out Spamhaus with their big deal big DNS reflection DDOS attack, conventional wisdom has said that if you are faced with a DDOS attack, you should give CloudFlare a shot. By all means, give it a try: they have a compelling free offer that seems to be just the thing you need. Here is what will happen: You switch your DNS to cloudflareYou get your site up againYou rece.. 2016.05.31
개발/linux
시스템 체크 # 시스템 부하[root@master ~]# uptime 10:59:44 up 243 days, 21:23, 1 user, load average: 1.03, 3.11, 4.14 평균 부하(load average)의 다음에 나오는 세 개의 숫자(1.03, 3.11, 4.14)는 시스템에서의 1분, 5분, 15분 동안의 평균 부하를 각각 나타낸다.시스템의 평균 부하는 실행 가능한 상태 혹은 중단 불가능한 상태의 프로세스들의 평균 개수와 같다.실행 가능한 프로세스는 현재 CPU를 사용하고 있거나 CPU 사용을 위해 대기 중인 상태이고, 중단 불가능한 프로세스는 I/O를 기다리고 있는 프로세스다. 단일 CPU 환경의 시스템에서 평균 부하 1의 의미는 한 개의 CPU가 끊임없이 일을 하고 있다는 뜻이다. # t.. 2015.11.11
개발/팁
워드 프레스 암호 방식과 업데이트 워드 프레스 암호 방식과 업데이트 mysql 사용시UPDATE wp_users SET user_pass = MD5('test')WHERE user_login = 'test' LIMIT 1 2015.09.28
개발/shell
vim 단축키및 설정 1. 파일 열기 및 저장CommandModeDescriptionRemarkvi fileConsolevi를 시작하여 지정한 파일 편집 vi -R fileConsole읽기 전용(read- only) 편집기로서 vi를 시작하여 지정한 파일 편집 view fileConsole읽기 전용(read- only) 편집기로서 vi를 시작하여 지정한 파일 편집 vimdiff Console두 파일 비교 vim –d Console두 파일 비교 :wqCommand데이터를 저장하고 종료 :qCommand창 닫기 :q!Command데이터를 저장하지 않고 종료 vi -rConsole되살릴 수 있는 모든 파일 이름 보여 주기 vi -r fileConsolevi를 시작하여 지정한 파일 되살리기 :e fileCommand지정한 파일의 편.. 2015.09.25