Kilho.net

Author: Kilho, Oh

IT

Morpheme Analysis Installation and Use (PHP)

Installation environment: CentOS 7 default, PHP 7 yum install gcc-c++ java-1.7.0-openjdk-devel python-devel zlib-devel openssl openssl-devel git -y wget https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tgz tar xf Python-3.* cd Python-3.* ./configure make make altinstall pip3.6 install JPype1-py3 pip3.6 install konlpy cd .. wget https://bitbucket.org/eunjeon/mecab-ko/downloads/mecab-0.996-ko-0.9.2.tar.gz tar zxfv…

Read more — Morpheme Analysis Installation and Use (PHP)
Notice

Server Migration

The server hosting the main domain (excluding subdomains) has been migrated. I was previously using Cafe24, but was told that upgrading OpenSSL was impossible due to issues such as the CentOS version. I made temporary fixes by modifying the WordPress…

Read more — Server Migration
IT

HTTP Access Information Log

For testing OpenAPI and checking whether the connection information is correct Method, host, and POST values on connection [PHP] <? $log = $_SERVER[‘REQUEST_METHOD’].’ ‘.$_SERVER[‘HTTP_HOST’].$_SERVER[‘REQUEST_URI’].”nn”; foreach($_SERVER as $k => $v) { if($k==’HTTP_HOST’) continue; if(substr($k, 0,5)!=’HTTP_’) continue; $log .= ‘$k: $v’.”n”; }…

Read more — HTTP Access Information Log