본문 바로가기

서버/Linux

OpenX 2.8.5 한글화


openx가 한글지원이 되어있지만 설치해본결과 일부 한글이 잘 못 보이더군요.

 

한글화 작업했던 분과 연락이 되지않아 그냥 사용할 수 있을 정도로 한글 작업을 했습니다.

 

잘못 해석한 부분도 있고 문법에 맞지않는 곳도 상당히 많습니다. ㅎㅎㅎ

 

한글문서는 첨부파일에 있습니다.

"openx/lib/max/language/ko/"에 넣으면 됩니다만 버전별로 다를터이니 확인후 넣으시면 되겠네요.

openx 2.8.5 리눅스 버전임

 

설치후 폴더 접근권한 =======================================================================

[addev@jij openx]$ chmod -R a+w /home/ourwings.kr/docs/openx/var/cache
[addev@jij openx]$ chmod -R a+w /home/ourwings.kr/docs/openx/var/plugins
[addev@jij openx]$ chmod -R a+w /home/ourwings.kr/docs/openx/var/templates_compiled
[addev@jij openx]$ chmod -R a+w /home/ourwings.kr/docs/openx/plugins
[addev@jij openx]$ chmod -R a+w /home/ourwings.kr/docs/openx/www/admin/plugins
[addev@jij openx]$ chmod -R a+w /home/ourwings.kr/docs/openx/www/images

===========================================================================================

 

설정파일 변경 ==============================================================================

openx/var/[도메인].conf.php
파일에서
[databaseCharset]
checkComplete=1
clientCharset=utf8  <- 이부분 수정


css 수정
1. openx/www/admin/assets/css/table.css 421줄
-----------------------------------------------------
.tableWrapper table td.hasPanel div.panel table td,
.tableWrapper table td.hasPanel div.panel table th {
    background: none;
    border: none;
   
    text-align: left;
    font-size: 0.9em;
    white-space: nowrap;
    line-height: 145%; <- 이부분 수정 (한글 상,하단 짤리는 현상 해결)
    padding: 0;
}
------------------------------------------------------

2. openx/www/admin/assets/css/interface-ltr.css 5줄

----------------------------------
/* Fonts */
body,table,td,select,textarea,input,button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height:14px; <- 이부분 추가 (한글 상,하단 짤리는 현상 해결)
}
----------------------------------

3. openx/lib/max/other/html.php 45줄

----------------------------------
function MAX_buildName($id, $name)
{
htmlentities($name) -> htmlspecialchars($name) <- 이부분 수정
}
----------------------------------

===========================================================================================