본문 바로가기
UBUNTU apt-get Advanced Packaging Tool 우분투 및 데비안 계열에서 사용하는 패키지 관리명령어apt-get 명령어 패키지 정보를 업데이트sudo apt-get update 설치된 패키지 업그레이드sudo apt-get upgrade-> 의존성 추검사추가sudo apt-get dist-upgrade 패키지설치sudo apt-get install 패키지재설치sudo apt-get --reinstall install 패키지삭제sudo apt-get remove 설정파일까모 모두삭제 --purgesudo apt-get --purge remove 소스코드 다운로드sudo apt-get source 소스코드를 빌드sudo apt-get build-dep 패키지검색sudo apt-cache search 패키지정보보.. 2019. 2. 21.
It is not safe to rely on the system's timezone settings Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. da.. 2019. 2. 20.
요청 콘텐츠 길이 제한을 초과하는 요청을 거부하도록 요청 필터링 모듈이 구성되어 있습니다. HTTP 오류 404.13 - Not Found요청 콘텐츠 길이 제한을 초과하는 요청을 거부하도록 요청 필터링 모듈이 구성되어 있습니다. 파일 업로드/다운로드 용량 설정부분에 용량수정 기본 30메가로 설정되어있음 요청 필터링 -> 기능 설정 편집 -> 허용되는 최대 콘텐츠 길이변경 2019. 1. 29.
저번달 1일 마지막일 이번달 1일 마지막일 저번달 1일SELECT DATEADD(D,-DAY(DATEADD(MM,-1,GETDATE()))+1,DATEADD(MM,-1,GETDATE()))저번달 마지막일SELECT DATEADD(D,-DAY(GETDATE()),GETDATE()) ---현재월의 초일 --SELECT DATEADD(D,-DAY(GETDATE())+1,GETDATE())---현재월의 말일 --SELECT DATEADD(d,-DAY(DATEADD(m,1,GETDATE())), DATEADD(m,1,GETDATE()))---전월의 초일 --SELECT DATEADD(m,-1, DATEADD(d,-DAY(GETDATE())+1,GETDATE()))---전월의 말일 --SELECT DATEADD(d,-DAY(GETDATE()),GETDATE.. 2018. 12. 20.
Windows 2012 R2 IIS 8.5 & DextUpload 모듈 사용시 다운로드 에러 Windows 2012 R2 IIS 8.5 & DextUpload 모듈 사용시 다운로드 덱스트업로드를 이용한 다운로드시Set objDownload = Server.CreateObject("DEXT.FileDownload") ERR_CONNECTION_ABORTED가 발생하여 다운로드가 되지 않는다. 개별설정은 되지않는다 꼭 전역에서 체크할것 IIS에서 전역설정ASP -> 청크 분할 인코딩 사용 : FALSE로 변경 2018. 11. 29.
atob, btoa BASE64변환 Window 객체에atob()와 btoa()함수를 제공한다.atob() : BASE64 스트링을 디코딩한다btoa() : BASE64 스트링을 인코딩한다 https://www.w3schools.com/jsref/met_win_atob.aspThe original string: Hello World!Encoded String: SGVsbG8gV29ybGQhhttps://www.w3schools.com/jsref/met_win_btoa.aspEncoded String: SGVsbG8gV29ybGQh Decoded String: Hello World! 2018. 11. 29.
PDF CANVAS에 출력 BLOB에 저장된 PDF파일을 출력해야될 일이 생겼다.찾아보니 여러가지가 검색되긴했는데 모질라쪽에서 아예 제공되는게 있었다.https://mozilla.github.io/pdf.js/https://mozilla.github.io/pdf.js/examples/index.html#interactive-examples Blob파일을 BASE64 스트링형태로 변환후 전송하고전송된 BASE64스트링을 PDF로 변환하는 형태로 진행했다. pdf.js와pdf.worker.js파일이 필요했고 EXAMPLE대로 따라하니 잘되었다.// atob() is used to convert base64 encoded PDF to binary-like data. // (See also https://developer.mozilla... 2018. 11. 29.
Missing Purpose String in Info.plist File 빌드해서 올렸더니 빌드내역(바이너리)이 사라졌다. 왜인지 몰라서 구글링했더니 메일을 살펴보라고하던데메일을 살펴보니 해당 메일이 도착해있었다. Dear Developer, We identified one or more issues with a recent delivery for your app, "앱이름". Please correct the following issues, then upload again. Missing Purpose String in Info.plist File - Your app's code references one or more APIs that access sensitive user data. The app's Info.plist file should contain a NSPhot.. 2018. 11. 27.
날짜 쿼리 이번달 날짜 비교를 하려고하니 이런게 나온다.. select a.Date from ( select LAST_DAY('2018-11-01' - interval 1 month) - INTERVAL (a.a + (10 * b.a) + (100 * c.a)) DAY as Date from (select 0 as a union all select 1 union all select 2 union all select 3 union all select 4 union all select 5 union all select 6 union all select 7 union all select 8 union all select 9) as a cross join (select 0 as a union all select 1 union a.. 2018. 11. 27.