윈도우 서버에서 XE보드 속도 올리기 Photo

xe\files\config\db.config.php 파일을 수정
1.
$db_info->use_object_cache = 'wincache';
$db_info->use_template_cache = 'wincache';
파일 내용에 추가함

2. localhost를 127.0.0.1로 모두 변경


  • xe 1.11.6 버전을 설치 후 너무 느리거나 Err : './common/tpl/layout.html' template file does not exists. 라고 뜨는 경우, FileHandler.class.php 문제일 가능성이 높습니다.

    xe/classes/file/FileHandler.class.php 파일 284번째에 : 을 추가해 보세요.

    기존 $path_string = preg_replace("/[^a-z0-9-_\\\\\/\.]+/i", '', $path_string);

    변경 $path_string = preg_replace("/[^a-z0-9-_:\\\\\/\.]+/i", '', $path_string);

  • 1년 전

Leave Comments