Monthly Archives: 8월 2013

[msslq]요일 구하기

Declare @iWeek int –요일 : 1:일요일 2:월요일 3:화요일 4:수요일 5:목요일 6:금요일 7:토요일 Declare @NowDate DateTime — 오늘날짜 Declare @MON int –월 Declare @TUE int –화 Declare @WED int –수 Declare @THU int –목 Declare @FRI int –금 Declare @SAT int –토 Declare @SUN int –일 Set @MON = 0 Set @TUE = 0 Set @WED… Read More »

Changing File Permissions « WordPress Codex

참조 : https://codex.wordpress.org/Changing_File_Permissions On computer filesystems, different files and directories have permissions that specify who and what can read, write, modify and access them. This is important because WordPress may need access to write to files in your wp-content directory to enable certain functions. Permission Modes

The permission mode is computed by adding up the following values for… Read More »

[linux] chown (퍼미션) 설정방법

chown 으로 해당 디렉토리의 소유자를 변경하고 chmod 로 각 디렉토리의 퍼미션을 설정하여 파일의 보안 설정을 높일수 있음.   chmod : 파일의 소유자/소유그룹/다른사용자의 파일 권한(읽기/쓰기/실행) 변경 chown : 파일의 소유자와 소유 그룹을 변경   ● chown [옵션(cfvR)] 소유자:소유그룹 파일명 ex) chown -R user1:group1 aaa -> aaa 및 하위 파일까지의 모든 소유자를 user1 / 소유그룹을 group1 로… Read More »