기타56 php.ini 업로드관련설정값 #vi /etc/php.ini file_uploads = On 이겠지 당연히.. 1. upload_max_filesize 한번에 업로드 가능한 사이즈를 설정한다. upload_maz_filesize = 10M 설정시 10M까지 업로드 가능해진다. 2. post_max_size post 최대 용량 설정이다 파일사이즈를 고려해서 사이즈를 설정해줘야한다. post_max_size = 60M 3. max_execution_time php실행시간인데 대용량의 경우 시간을 늘려주는것이 좋다. 4. max_input_time 실제 첨부파일 업로드시 데이터를 대기해주는시간이다 기본값은 낮게 설정되어있으므로 대용량 업로드시 올라가지 않는 주요원인이된다. -1 설정이 무제한으로 적용된다. 5. memory_limit ph.. 2019. 5. 3. MSSQL_FETCH ROW, ASSOC, ARRAY MSSQL_FETCH_ROW MSSQL_FETCH_ASSOC MSSQL_FETCH_ARRAY 3가지의 차이점 기본샘플 $sql = "SELECT * FROM SAMPLE"; $rst = mssql_query($sql); $row = $mssql_fetch_row($rst); 1. MSSQL_FETCH_ROW 의경우 배열의 번호만 접근가능하다. $row[0] $row[1] $row[2] 의 형태로 배열번호로 접근한다. 2. MSSQL_FETCH_ASSOC : assoc의 경우 연관배열의 줄임말로 필드명을 통해서 데이터를 가져온다. $row[name] $row[age] 3. MSQL_FETCH_ARRAY : 위의 두가지형태를 동시에 가져온다. 만약 결과값이 처음위치가 이름이고 두번쨰가 나이인경우 $row[0.. 2019. 4. 15. $_SESSION https://www.php.net/manual/en/reserved.variables.session.php PHP: $_SESSION - Manual I wrote a little page for controlling/manipulating the session. Obviously, never use this on a production server, but I use it on my localhost to assist me in checking and changing session values on the fly.Again, it makes use of eval() and exposes the ses www.php.net php 4.1이상부터 사용가능하다 기본적인 세팅은 그누보드를 참조했다. //==.. 2019. 4. 15. ASP EXCEL 커넥션 스트링https://www.connectionstrings.com/excel/ "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=파일경로;Extended Properties=""Excel 12.0;HDR=YES;IMEX=1;""" https://docs.microsoft.com/en-us/sql/integration-services/load-data-to-from-excel-with-ssis?view=sql-server-2017 Microsoft Office Access Database Engine 오류 '80004005'설치 가능한 ISAM을 찾을 수 없습니다.-> 구문에러였음----문제점1 : xls파일을 불러왔을경우 첫번째 column을 읽어오지 못함 해결 .. 2019. 3. 25. function * javascript function* 선언 (끝에 별표가 있는 function keyword) 은 generator function 을 정의하는데, 이 함수는 Generator 객체를 반환합니다.generator function 은 GeneratorFunction 생성자와 function* expression 을 사용해서 정의할 수 있습니다. https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Statements/function* 2019. 3. 4. 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. 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. Classic ASP ZIP압축 Classic ASP에서 파일을 압축할일이 생겨서 찾아봤다.http://xstandard.com/en/documentation/xzip/ XZip.dll 파일을 등록후 적용했더니 작동이 잘된다. 2018-11-19 추가정보- 압축시 한글파일명이 들어갈시 압축이 되지가 않았다.- 단일파일 추가의 경우 한글파일 추가 되지 않았으나 폴더형태로 저장시 저장이 되었다.- 폴더내의 *.* 의 형태로 모두 저장함 2018. 11. 16. 이전 1 2 3 4 5 6 7 다음