일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 아파치 웹 서버의 정보 숨기기
- usb efi 시스템 파티션 삭제
- modsecurity 설치
- bootstrap modal
- 비밀번호정규식
- 우분투 mysql 비밀번호 없이 로그인 될때
- group_concat 구분자
- mysql root 비밀번호 변경
- mysqldump: Got error: 1045
- javascript
- wkhtmltopdf 실행 오류
- PHP 정규식 예제
- svn 충돌 해결 resolved
- html pdf 변환
- 구글 OTP 인증
- 파라미터 & 오류
- apache mod rewrite
- PHP 구글 OTP 인증
- svn 충돌 해결 resolve
- bootstrap
- (using password: YES)" when trying to connect
- 부트스트랩4 세로 중앙 정렬
- php 특정 문자열 취환
- 자바스크립트비밀번호검증
- magic bytes
- libxrender1
- PHP 구글 OTP 연동
- 비밀번호검증정규식
- JQuery checkbox 컨트롤
- 세로 중앙 정렬
- Today
- Total
목록분류 전체보기 (272)
투덜이 개발자
PHP 구글 OTP 인증할 일이 생겨 서칭한 자료 https://nyaongnyaong.com/211 관리자 로그인에 구글 OTP 적용하기 우선 자신의 폰에 맞게 OTP 앱을 다운로드 받아서 설치합니다. 그리고 여기로 가셔서 파일을 다운로드 받습니다. 실제로 사용할 파일은 PHPGangsta 안에 있는 GoogleAuthenticator.php 이 파일입니다. 그러 nyaongnyaong.com https://m.blog.naver.com/guitar7063/221526066674 PHP환경 웹 로그인시 구글 OTP 적용하는 방법 서버에 설치할것 없음. 소스랑 스크립트로 해결. 매우 심플하니, 천천히 읽어보고 적용하시길. 우선 테스트... blog.naver.com 기타 참고 .. https://blog..
우분투 에 Mariadb 를 설치하고 비밀번호를 변경하였지만 비밀번호 없이 로그인이 된다. set password for 'root'@'localhost' = password('1234'); flush privileges; 위와 같이 비밀번호를 설정하였지만 비밀번호 없이 로그인이 된다.. root@hosting:~# mysql Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 2124 Server version: 10.6.12-MariaDB-0ubuntu0.22.04.1 Ubuntu 22.04 Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab a..
새로 설치한 우분투 서버에서 wkhtmltopdf 설치하고 실행할려니 에러가 발생 root@hosting:/usr/bin# wkhtmltopdf wkhtmltopdf: error while loading shared libraries: libXrender.so.1: cannot open shared object file: No such file or directory root@hosting:/usr/bin# sudo apt-get install libxrender1 sudo apt-get install libxrender1 설치를 해 주면 오류가 해결 된다.
구글에서 Google Play 정책을 준수하지 않는다고 앱 조치 하라는 메일이 왔다. 이럴때 마다 뭔가 긴장하게 된다. 전화번호가 수집 된다는건가...
현재의 페이지 URL 및 전체 파라미터 값 가져오기 위해서는 window.location.href 현재 URL 을 제외하고 파라미터값 만 가져오기 위해서는 window.location.search let aaaa = window.location.href; let bbbb = window.location.search; console.log('aaaa : ', aaaa); console.log('bbbb : ', bbbb); // aaaa : http://jhshin.adm.soroptimist.or.kr:8900/club_manage/club_introduce_write.php?mode=write&m_menu_code=MM0002&s_menu_code=SM0203&area_code=AR0001&club_s..
mysql json - select, insertm, update mysql 에서도 json 을 활용하여 처리가 가능하다. select json_extract(admin_auth, '$.member_manage_read_yn') from tbl_admin_info where json_extract(admin_auth, '$.member_manage_read_yn') = 'N'; 출력 업데이트 쿼리 MySQL은 JOSN의 partial UPDATE를 지원한다. UPDATE는 JSON_SET(), JSON_REPLACE(), JSON_REMOVE() 3개의 함수를 이용해서 수행 할 수 있다. JSON_SET(): 기존 값을 업데이트하고 존재하지 않을 경우 추가한다. JSON_REPLACE(): 기존 값만 바..
JQuery checkbox 컨트롤 1. checkbox checked 여부 $('input:checkbox[id="checkbox_id"]').is(":checked") == true; // id인 경우 $('input:checkbox[name="checkbox_name"]').is(":checked") == true // name 인경우 2. checkbox 전체 갯수 $('input:checkbox[name="checkbox_name"]').length; // 이 경우는 name인 경우만 가능 3. checkbox 선택된 갯수 $('input:checkbox[name="checkbox_name"]:checked').length; // 이 경우는 name인 경우만 가능 4. checkbox 전체 순회..