로그인

검색

조회 수 16789 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 게시글 수정 내역 댓글로 가기 인쇄 첨부
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 게시글 수정 내역 댓글로 가기 인쇄 첨부


나중에 svn 도 통합될 듯 싶어 ajaxplorer 설치.

몇가지 문제점 발견, 내키면 삽질해서 수정예정..
- 한글폴더에 업로드 안됨
- zip내에 한글파일있으면 안열림.(access.fs/class~drive.php 내에 case "ls" - nodename가 꼬인듯 iconv로 utf로 변환후 로그확인하면 ls가 정상종료됨. 그러나 서버에 접속하면 500에러 내면서 뻗음.) - 일단 무기한연기.

환경 ubuntu 10.4 ,locale utf-8




모든 권한은 www-data(apache유저)로 설정함.
업로드 파일 제한 풀기 및 공유링크 활성화.(http~~형식으로 다운로드 용 링크 딸수있음)
/etc/php5/apache2/php.ini
post_max_size = 2000M
upload_max_filesize = 2000M

/server/conf/conf.php
$upload_max_size_per_file = 0;
$upload_max_number = 0;

공류링크 생성기능 활성.(public link)
 ajaxplorer/public 디렉토리 생성

디버그 모드 -log에 디버깅 정보 저장됨.
/server/conf/conf.php
$AJXP_JS_DEBUG = true;
$AJXP_SERVER_DEBUG = true;



한글문제 폴더 문제.
크롬의 경우 문제없음.
ie8 의 경우 업로드에서 flash 사용.

http로 ie에서 보내는 패킷을 열어보면, 디렉토리 이름을 base64_encode후 urlencode한 데이터가 올라감.ex) /한글 ->L+2VnOq4gA== ->L%2B2VnOq4gA==

디코딩에 urldecode빠짐. base64decode 전에 urldecode 추가


/plugins/uploader.flex/class.FlexUploadProcessor.php

public function preProcess($action, &$httpVars, &$fileVars){
~
AJXP_Logger::debug("Dir before base64", $httpVars);
$httpVars["dir"] = base64_decode(urldecode($httpVars["dir"]));
~
}


삼바(cifs/윈도우 공유)와 공유하기
/etc/samba/smb.conf

~~~
[ajaxplorer]
   comment = ajaxplore files
   writable = yes
   read only = no
   locking = no
   path = /var/www/ajaxplorer/files
   force user = www-data
   force group = www-data
   guest ok = yes

한글파일 업로드 다운로드 가능하게 만들기.
ubuntu 에 설치된 apache2기본설정을 보면 locale이 C로 되어있음.
-> phpinfo()등으로 확인하면 enviroment에 LANG 가 C로 나옴.

/etc/apache2/envvars

## The locale used by some modules like mod_dav
export LANG=ko_KR.UTF-8


또는
/etc/default/locale
LANG="ko_KR.UTF-8"

/etc/apache2/envvars
## Uncomment the following line to use the system default locale instead:
 . /etc/default/locale
export LANG

<- # 제거


한글이름 파일 업로드 및 다운로드 가능토록 수정 - 위 설정을 건드리지 않고 소스수정

1. /server/conf/conf.php

$default_language="kr"


2. server/classes/class.SystemTextEncoding.php

function getEncoding(){
        global $_SESSION;
        // Check if the session get an assigned charset encoding (it's the case for remote SSH for example)
        if (isset($_SESSION["AJXP_CHARSET"]) && strlen($_SESSION["AJXP_CHARSET"])) return $_SESSION["AJXP_CHARSET"];
        // Get the current locale (expecting the filesystem is in the same locale, as the standard says)
        setlocale(LC_CTYPE, 'ko_KR.UTF-8');
        return SystemTextEncoding::parseCharset(setlocale(LC_CTYPE, 0));
 }


한글파일 압축지원(깨짐방지)

/plugins/access.fs/class.fsAccessDriver.php 파일
function makeZip ($src, $dest, $basedir)
{
~
                $filePaths[] = array(PCLZIP_ATT_FILE_NAME => $realFile,
                                                         PCLZIP_ATT_FILE_NEW_SHORT_NAME =>  iconv('utf-8', 'euc-kr', basename($item)));
~
        return $vList;
}



리눅스

유용한 정보 및 자료

  1. Installing Nginx With PHP5 (And PHP-FPM) And MySQL Support On Ubuntu 11.10

    Date2011.11.01 CategoryServer By보석 Views26159
    Read More
  2. Nginx 가상호스트 설정

    Date2011.10.31 CategoryServer By보석 Views28318
    Read More
  3. Install Nginx, PHP5, PHP-FPM and MySQL on Ubuntu 11.04

    Date2011.10.31 CategoryServer By보석 Views25584
    Read More
  4. XE object 케쉬 사용법

    Date2011.10.24 CategoryXE By보석 Views18811
    Read More
  5. 테이블 형태 변경하기 MyISAM -> InnoDB(또는 InnoDB -> MyISAM)

    Date2011.10.21 CategoryServer By보석 Views26418
    Read More
  6. XE 1.5.0.4 버전에서 Content 슬라이더 위젯 오류 해결 방법

    Date2011.10.19 CategoryXE By보석 Views12937
    Read More
  7. 우분투 Memcached 설치는 이렇게

    Date2011.10.19 CategoryServer By보석 Views29264
    Read More
  8. 링크하드 리눅스 설치 성공담 - 웹하드 WebHard Linux Install

    Date2011.10.17 CategoryServer By보석 Views27452
    Read More
  9. 우분투 PHP5.3 버젼에 ioncube설치하기

    Date2011.10.17 CategoryServer By보석 Views26180
    Read More
  10. 리눅스용 무료 웹하드 <shade webhard> 설치하기

    Date2011.10.17 CategoryServer By보석 Views36536
    Read More
  11. 리눅스 (우분투) vsftp 설치 및 설정

    Date2011.10.17 CategoryServer By보석 Views15596
    Read More
  12. XE 회원에게도 제목 글자색변경 나오게 하기

    Date2011.10.17 CategoryXE By보석 Views18838
    Read More
  13. ajaxplorer 3.0 설정 및 한글 파일 다운로드 및 압축문제 해결

    Date2011.10.16 CategoryPydio By보석 Views16789
    Read More
  14. CSS Background 속성

    Date2011.10.03 CategoryServer By보석 Views10178
    Read More
  15. xe 첨부파일 스팸필터

    Date2011.09.15 CategoryXE By보석 Views17720
    Read More
  16. XE Core 1.4.4 새 템플릿 문법을 소개합니다. 간결+판독.

    Date2011.09.14 CategoryXE By보석 Views14784
    Read More
  17. svn 으로 다운 받기 xe

    Date2011.09.10 CategoryXE By보석 Views17989
    Read More
  18. XE 추천 비추천수 로그확인

    Date2011.09.07 CategoryXE By보석 Views19074
    Read More
  19. 우분투 크론 (예약작업) 설정 자동 백업

    Date2011.09.01 CategoryServer By보석 Views16321
    Read More
  20. [리눅스] 새 계정 만들기/지우기, 사용자 아이디 추가/삭제; Create Account

    Date2011.08.31 CategoryServer By보석 Views39619
    Read More
Board Pagination Prev 1 ... 2 3 4 5 6 7 8 9 10 11 Next
/ 11