Note: PHP 7.0 이상
client_max_body_size 100M;
폼 전송시 변수갯수
max_input_vars = 5120
memory_limit = 256M
폼 데이타 및 파일업로드
post_max_size 100M
upload_max_filesize 8M
group_concat_max_len=10240
-
html 캐쉬 디렉토리
mkdir -R cache/dynamic mkdir -R cache/template chmod -R 707 cache
-
XSS방어 관련 캐쉬 디렉토리
(디렉토리 변경시 참조: http://htmlpurifier.org/download#toclink1)
chmod 707 app/lib/htmlpurifier/library/HTMLPurifier/DefinitionCache/Serializer
-
temp 디렉토리
chmod 707 tmp/
-
데이타 디렉토리
chmod -R 707 datas/
-
html 디렉토리
chmod 707 html chmod -R 707 html/_attach/ chmod -R 707 theme/template1/html/_attach/
conf/database.conf.dev.php 를 conf/database.conf.php 로 파일명 변경하세요.
chmod 707 conf/database.conf.php
Windows 환경인 경우
Git Bash 사용을 위해 설치 : https://git-scm.com/downloads
설치후 아래 해당하는 폴더에 들어가서 오른쪽 마우스 클릭하여 "Git Bash Here" 를 선택함.
그런 후 아래 내용을 참조하여 진행하세요.
php.ini (확장모듈 요구사항)
extension=php_fileinfo.dll
composer 명령어 사용을 위한 설치가이드 참조 :
https://getcomposer.org/
https://www.lesstif.com/pages/viewpage.action?pageId=23757293
-
phpOffice (참조 : https://github.com/PHPOffice/PhpSpreadsheet)
설치경로: app/lib/PhpOffice
composer require phpoffice/phpspreadsheet
-
facebook Api
설치경로: app/lib/Api/facebook
composer require facebook/graph-sdk
-
google Api
설치경로: app/lib/Api/google
composer require google/apiclient:^2.0
템플릿엔진 : Template_ (https://tpl.xtac.net/introduction/)