웹프로그래밍 (128) 썸네일형 리스트형 input number hide spin button 증가 감소 버튼 숨기기 input[type=number]::-webkit-outer-spin-button{-webkit-appearance: none;margin: 0;} input[type=number]::-webkit-inner-spin-button{-webkit-appearance: none;margin: 0;} https 에서 한글 깨짐 현상(GET) 가 한 개가 아니라는걸 간과해서 protocol 이 HTTP/1.1 인 에만 설정을 하는 것입니다. 중에 protocol="HTTP/1.1" SSLEnabled="true" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS" 등의 값이 포함된 다른 에도 URIEncoding 을 적어줘야 하고, mod_jk 을 통해서 처리하는 거라면 AJP/1.3 쪽 에서도 처리를 해야 합니다. https 443 Connector에 URIEncoding="UTF-8" 추가 후 해결, PHP: Simple compression of JSON data Just discovered how super simple it was to add some gz compression when for example providing JSON data from PHP. All you need is regular output buffering with the ob_gzhandler as output callback. // Fetch some data $data = get_data(); // Turn on output buffering with the gzhandler ob_start('ob_gzhandler'); // Output as normal echo json_encode($data); The cool thing is that it actually looks at .. javascript ios app open self.location / window. not working ios app 을 웹 어플리케이션에서 킬때... 사파리에서는 안먹히는 것 해결 jquery ui dialog close button missing jquery-ui 의 dialog close 버튼이 안보일때 bootstrap.min.js 와 스크립트 충돌로 인한것으로 해당 스크립트를 우선순위를 바꾸거나 제외하면 정상적으로 보인다. Javascript contains domain or email by string var url_regex = /(http(s)?:\/\/([\w-]+\.)+[\w-]+(\/[\w-.\/?%&=]*)?)/gi; var email_regex = /([a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9._-]+)/gi; var string = "도메인은 http://www.huzy.net/ 이고 이메일은 root@yjhoon.com 입니다."; var url_result = string.match(url_regex); => ["http://www.huzy.net/"] var email_result = string.match(email_regex); => [root@yjhoon.com"] result 값은 둘다 배열로 리턴되서 나옴 . jsp - session 생성 및 삭제 시점 체크하여 처리하기 기본적으로 HttpSessionListener를 구현(Implements)하여 세션이 생성 되는 시점과 세션이 사라지는 시점을 가지고 올 수 있다. 세션을 생성 되는 시점에 DB나 특정 Static 변수에 세션 정보를 저장 하고 세션이 종료될 때 그 세션 정보를 지워 줌으로써 해당 세션의 중복 로그인을 막을 수 있으며 현재 접속중이 접속자 정보를 가지고 올 수 있다. package com.moainfo.http.session; import javax.servlet.http.HttpSession; import javax.servlet.http.HttpSessionEvent; import javax.servlet.http.HttpSessionListener; public class MoaSessionList.. 한 도메인으로 접속하게 하기 (www 자동 붙이기) 무슨 이야기인가 하면 예를 들어 webmini.net 로 접속했을때와 www.webmini.net 그리고 카페24 호스팅 같은 경우 backzzanggu.cafe24.com 으로 접속했을때 자동으로 www.webmini.net 한곳으로 접속되게 하는 팁입니다. 알ftp에서 숨김파일로 되어있어 보이지 않는 파일을 상단메뉴 옵션 > 환경설정에서 숨긴파일을 볼수 있게 설정한후 .htaccess 파일을 메모장으로 연후 2~4 줄에 아래소스를 추가해 줍니다. RewriteCond %{HTTP_HOST} !^www\.webmini\.net$ [NC] RewriteCond %{HTTP_HOST} !^$ RewriteRule ^(.*)$ http://www\.webmini\.net/$1 [L,R] 쉽게 말하면 Rewr.. 이전 1 ··· 3 4 5 6 7 8 9 ··· 16 다음