업로드 파일 제한 풀기 및 공유링크 활성화.(http~~형식으로 다운로드 용 링크 딸수있음)
post_max_size = 2000M
upload_max_filesize = 2000M
/server/conf/conf.php
$upload_max_size_per_file = 0;
$upload_max_number = 0;
공류링크 생성기능 활성.(public link)
디버그 모드 -log에 디버깅 정보 저장됨.
삼바(cifs/윈도우 공유)와 공유하기
~~~
[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
한글파일 업로드 다운로드 가능하게 만들기.
-> 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
<- # 제거
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));
}
한글파일 압축지원(깨짐방지)
{
~
$filePaths[] = array(PCLZIP_ATT_FILE_NAME => $realFile,
PCLZIP_ATT_FILE_NEW_SHORT_NAME => iconv('utf-8', 'euc-kr', basename($item)));
~
return $vList;
}