1

주제: 윈도우 서버에서 setup.php 실행시 문제 수정

윈도우 서버에서 setup.php를 실행하고 "태터툴즈를 다시 설정합니다"를 선택해서 4단계로 넘어가면 "테이블이 존재하지 않습니다"라는 메세지가 뜨는 것을 수정하여 커밋하겠습니다.(대소문자 문제)

switch (substr($table[0], strlen($_POST['dbPrefix']))) {
    case 'Attachments':
    case 'BlogSettings':
    ...
    case 'Trackbacks':
    case 'Users':
}

아래로 수정

switch (strtolower(substr($table[0], strlen($_POST['dbPrefix'])))) {
    case 'attachments':
    case 'blogSettings':
    ...
    case 'trackbacks':
    case 'users':
}