일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- bootstrap modal
- sha-2 root
- 아파치 웹 서버의 정보 숨기기
- httpd.conf 보안 설정
- 우분투 mysql 비밀번호 없이 로그인 될때
- 비밀번호검증정규식
- html pdf 변환
- php 배열제거
- 비밀번호정규식
- 구글 OTP 인증
- (using password: YES)" when trying to connect
- PHP 구글 OTP 인증
- wkhtmltopdf 실행 오류
- usb efi 시스템 파티션 삭제
- PHP 구글 OTP 연동
- svn 충돌 해결 resolve
- apache mod rewrite
- apple push notification service (apns) is changing
- PHP 정규식 예제
- modsecurity 설치
- mysqldump: Got error: 1045
- libxrender1
- mariadb upgrade
- 파라미터 & 오류
- javascript
- group_concat 구분자
- svn 충돌 해결 resolved
- mysql root 비밀번호 변경
- bootstrap
- 자바스크립트비밀번호검증
- Today
- Total
목록전체 글 (281)
투덜이 개발자
wkhtmltopdf는 html 페이지를 pdf로 다운받을 수 있는 프로그램이다. https://wkhtmltopdf.org/ wkhtmltopdf What is it? wkhtmltopdf and wkhtmltoimage are open source (LGPLv3) command line tools to render HTML into PDF and various image formats using the Qt WebKit rendering engine. These run entirely "headless" and do not require a display or display service. The wkhtmltopdf.org 설치 https://velog.io/@agust15/%ED%8C%8C%EC%..
convert 를 이용하여 pdf to jpg 로 변환
소스에서는 사용자가 선택한 파일을 업로드하는 소스를 Save 이런 식으로 구현했으나 TO-BE로 전환하면서는 파일 업로드 후 자바스크립트 단에서 콜백함수를 호출하도록 만들고 싶어서 방식을 조금 바꿔봤다. Save $(function(){ $('#uploadBtn').on('click', function(){ uploadFile(); }); }); function uploadFile(){ var form = $('#uploadForm')[0]; var formData = new FormData(form); $.ajax({ url : '/url', type : 'POST', data : formData, contentType : false, processData : false }).done(function(..
한글 입력 방지 /* 한글입력 방지 */ function fn_press_han() { $("input[name=p_email_id]").keyup(function(event){ if (!(event.keyCode >=37 && event.keyCode=37 && event.keyCode
부트스트랩 모달창 열고 닫기 // 모달창 열기 $('#mailSendModal').modal('show'); // 모달창 닫기 $('#mailSendModal').modal('hide');
//$searchChkboxVal= explode("|","A|B|C|D|E|F|G|H|I|J|K|L|M"); $searchChkboxVal= explode("|","B|C|D|E|F|G|H|I|J|K|L|M"); 전체

Key exchange failed. No compatible key-exchange method. The server supports these methods: curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512,diffie-hellman-group14-sha256 The following key-exchange method(s) are supported but not currently allowed..
// 주말(토,일)만 선택 안하기 beforeShowDay: function(date){ var day = date.getDay(); return [(day != 0 && day != 6)]; } // 매주 화요일, 금요일만 선택하기 beforeShowDay: function(date){ var day = date.getDay(); return [(day != 0 && day != 1 && day != 3 && day != 4 && day != 6)]; }, // 특정제한 날짜 var disabledDays = ["2021-10-28", "2021-10-29", "2021-11-3", "2021-11-13"]; // 특정일 선택막기 function disableAllTheseDays(date) { var..