13년 9월 기준. ABBYY finereader ABBYY사에서 개발한 소프트웨어 가장 뛰어난 성능을 가지고 있음 Tesseract-ocr Google에서 제공하는 Open source Open source중에서 유일하게 한글 ocr 지원 http://msdn.microsoft.com/en-us/library/aa167607(office.11).aspx // MODI 관련 http://support.microsoft.com/kb/982760/ko // Office 2010에는 MODI가 제거되어서 따로 설치 https://code.google.com/p/tesseract-ocr/ // 영문하고 숫자 가능 https://code.google.com/p/tesseract-ocr/downloads/detai..
15년 5월 기준. svn 경로 /etc/subversion svn 프로젝트 경로 /etc/subversion/Project_Web svn 실행 svnserve -d -r /etc/subversion svn 프로세스 확인 ps -ef |grep svnserve svn 프로세스 종료 kill -9 프로세스 번호 svn 계정 /etc/subversion/Project_Web/conf/passwd medi choo yongsik yes witches svn 저장소 생성 svnadmin create --fs-type fsfs /etc/subversion/Project_Web svn 저장소 권한 chown -R root:root /etc/subversion/Project_Web svn 자동 등록 vi /etc/r..
15년 5월 기준. [root@kserver145-48 /]# mount -a // 전부 마운트 [root@kserver145-48 /]# mount /dev/sda3 on / type ext4 (rw) proc on /proc type proc (rw) sysfs on /sys type sysfs (rw) devpts on /dev/pts type devpts (rw,gid=5,mode=620) tmpfs on /dev/shm type tmpfs (rw) /dev/sda1 on /boot type ext4 (rw) none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw) sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (..
15년 5월 기준. /usr/local/apache/conf/httpd.conf 에서 www. 설정을 해주면 아이피에도 www.이 붙음. .htaccess에서 설정하기로 결정 .htaccess # Rewrite Module RewriteEngine On # www. 자동 붙임 RewriteCond %{HTTP_HOST} ^studysenior\.com [NC] RewriteRule ^(.*)$ http://www.studysenior.com/$1 [L,R] .htaccess RewriteEngine On RewriteCond %{HTTP_HOST} !^www\.studysenior\.com$ [NC] RewriteCond %{HTTP_HOST} !^$ RewriteRule ^(.*)$ http://www..
15년 7월 기준. 네이버 https://submit.naver.com 다음 https://register.search.daum.net/index.daum 구글 https://www.google.com/webmasters/tools/home?hl=ko https://www.google.com/webmasters/tools/submit-url 야후(빙) http://www.bing.com/toolbox/webmaster/ 얀덱스 http://webmaster.yandex.com/?tab=1 바이두 http://zhanzhang.baidu.com/linksubmit/url // 빙, 얀덱스 사이트 인증 필요함
15년 7월 기준. Apache conf폴더의 httpd.conf NameVirtualHost *:80 ServerName intra.studysenior.com Redirect / http://www.naver.com ServerName 186.studysenior.com Redirect / http://www.daum.net ServerName 121.78.79.186 Redirect / http://121.78.79.186 Redirect / http://121.78.79.186 // 작동하지 않음. ServerName에 186이 있을경우, 186으로 이동. // NameVirtualHost *:80 꼭 선언해줘야된다. 정의하고 시작. // DocumentRoot 설정 가능 ServerName wi..
15년 7월 기준. location.reload(); // 새로고침 top.document.프레임이름.location.reload(); // 프레임 새로 고침 top.document.location.reload(); // 프레임 전체 새로 고침 opener.location.reload(); // 부모창 새로 고침 history.go(0) // 현재 페이지 리로드 // content의 시간 이후 url로 redirect