일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 |
- 배열
- .htaccess
- virsualhost
- 날짜변환
- 우분투
- 비동기호출
- 애니메이트
- 페이지전환효과
- iframe
- 글자수제한
- 우분투 npm 설치
- 301 리다이렉트
- JS
- Ajax
- MySQL
- post_type
- ip직접접근차단
- 디지털 정부서비스ui/ux
- 정규식
- 보안인증서
- JavaScript
- 자바스크립트
- 리사이즈
- 글자 수 제한
- SSL
- 정부 서비스 가이드라인
- Vanilla JS
- selinux
- 구글뷰어
- 날짜비교
- Today
- Total
목록프로그래밍 (263)
더 나은 프로그래머가 되자
구글포토 내보내기로 백업파일 받을 경우 pc에서는 사진파일의 생성일 수정일이 백업한 날짜로되어있다. 다른 클라우드로 옮길경우 백업 날짜 기준으로 올라가니 이를 수정해줄 필요가있다. 구글포토 백업은 json 파일에 해당 메타데이터들이 저장되는데 exiftool를 이용해서 json 데이터를 사진 데이터에 맵핑시킬 수 있다. 프로그램 다운로드 : https://exiftool.org/ 윈도우 cmd 창을 열고 exiftool.exe 가 위치한 디렉토리로 이동한다. 해당 위치에서 아래의 명령어를 실행한다. GPS 태그 복사 exiftool -tagsfromfile '%d/%F.json' '-GPSAltitude

출처 : https://blog.naver.com/phongdaegi/221988174349 써트코리아 1. Apache 버전 및 환경 확인하기 ● Apache 프로세스 확인 # ps -ef | grep httpd 위와 같이 /usr/sbin/httpd 경로에 있을 경우, 환경설정 파일은 /etc/httpd/conf , /etc/httpd/conf.d 폴더에 위치함. ● Apache 버전 확인 # httpd -v 이 때, Apache 1.X ~ 2.0 버전 사용중이시라면, 2.2 이상으로 버전 업그레이드를 권장 드립니다. ● SSL 모듈 설치 확인 # httpd -l 위와 같이 mod_so.c 가 있고, mod_ssl 이 없을 경우 동적 모듈(DSO)로 설치된 Apac..
https://blog.naver.com/phongdaegi/221988174349 [CentOS7] Apache 퍼미션 (You don't have permission to access) 해결하기(수정)퍼미션 문제로 접속 불가시 1. 권한 수정하기 2. 소유자 변경하기 3. httpd.conf SELinux란? 1. SELi...blog.naver.com 소유자 및 httpd.conf 파일 그리고 권한 설정까지 했음에도 디나이된다면 SELinux 세팅문제일 가능성이 크다 SELinux의 security context 수정하면 정상적으로 접근이 가능하다 파일업로드를 하기위해서는 $ chcon -R -t httpd_sys_rw_content_t /dirname위처럼 웹서버에 읽기쓰기 권한을 줘야한다
//브라우저 체크 및 리다이렉트 $languageCheck = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'],0,2); if(strtolower($languageCheck) == 'ko'){//국문체크 header('Location: https://www.doname.co.kr/ko', true, 301); }
https://whales.tistory.com/62 jQuery를 바닐라 JS로(Vanilla JS) 변경 하기(feat.Pure Javascript) 많은 사용자들이 스크립트를 작성할 때 가장 많이 사용하는 것 중 한 가지를 고르라면 jQuery가 아닐까 생각됩니다. jQuery가 많은 사랑을 받게 된 이유는 처음 입문하기가 쉽다는 것과 높은 가독성 whales.tistory.com
https://jsfiddle.net/ JSFiddle - Code Playground jsfiddle.net https://codepen.io/ CodePen An online code editor, learning environment, and community for front-end web development using HTML, CSS and JavaScript code snippets, projects, and web applications. codepen.io 아주 유용한 테스트 사이트
https://tobiasahlin.com Tobias Ahlin SpinKit, Moving Letters, projects, and more. tobiasahlin.com
모던웹애니메이션 https://greensock.com/ GreenSock GSAP is an industry standard JavaScript animation library from GreenSock that lets you craft high-performance animations that work in every major browser. greensock.com 스와이퍼 슬라이더 https://swiperjs.com/ Swiper - The Most Modern Mobile Touch Slider Swiper is the most modern free mobile touch slider with hardware accelerated transitions and amazing native be..
이벤트페이지에 댓글을 단 사람을 추적하고 싶을때 https://{사이트주소}/board/gallery/read.html?no=166&board_no=2&category_no=1&cate_no=1&category_no=1 page path 에서는 query string 은 포함하지 않는다. query string 값을 특정해주기 위해서는 변수로 값을 뽑아주어야하는데 광고로 넘어오는경우에는 UTM까지 포함하고 있어서 조금 난감하다. document.location.search 에서 query string 의 값을 담고있는데 여기에서 UTM과 fbclid와 같은 값을 제외해주면 될것으로 보인다. 우선은 댓글 달 페이지가 한정되어있으므로 트리거 조건을 https://{사이트주소}/board/gallery/rea..