rand(life)

apmsetup에서 태터툴즈 설치하기 본문

컴퓨터

apmsetup에서 태터툴즈 설치하기

flogsta 2007. 5. 5. 20:49

http://www.apmsetup.com/tutorials.php?ct=15&tutid=28

phpmyadmin실행 - root 로그인
새 데이타베이스 만들기: 이름  tt
시작페이지로 이동
사용권한 클릭
새 사용자 추가
사용자명 tt 호스트 local 암호 입력 -- 실행
다음데이타베이스에 권한 추가하기 --tt선택
데이타베이스에 관한 권한 - 모두 체크 - 확인
사용권한 클릭
reload the privelege클릭
다운받은 테터툴즈 폴더(tt)를 apm-setup/htdocs 아래에 복사한다.
Myhomepage/tt/install.php 실행 -> NEXT ->
DB Host localhost; DB이름 tt; db유저 tt; 암호입력
next-> next -> (4단계조치필요)

리눅스서버에서 설치할때는 이 4단계때문에 apm을 통째로 새로 설치했었는데, apmsetup에서는 한방에 완성했다.

--------[[4단계에서 막힐 경우는]]-------------
httpd.conf 파일을 편집기로 열으셔서

#LoadModule rewrite_module modules/mod_rewrite.so
#AddModule mod_rewrite.c

이 부분을 찾으신 후

LoadModule rewrite_module modules/mod_rewrite.so
AddModule mod_rewrite.c

이렇게 주석을 해제 합니다.

<Directory />
    Options FollowSymLinks
    AllowOverride None
</Directory>

이 부분을 찾아서

<Directory />
    Options FollowSymLinks
    AllowOverride FileInfo
</Directory>

로 수정 합니다.

<Directory "C:/APM_Setup/htdocs">

#
# This may also be "None", "All", or any combination of "Indexes",
# "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
    Options FollowSymLinks MultiViews ExecCGI

#
# This controls which options the .htaccess files in directories can
# override. Can also be "All", or any combination of "Options", "FileInfo",
# "AuthConfig", and "Limit"
#
    AllowOverride None

#
# Controls who can get stuff from this server.
#
    Order allow,deny
    Allow from all
</Directory>

이 부분을 찾으셔서

<Directory "C:/APM_Setup/htdocs">

#
# This may also be "None", "All", or any combination of "Indexes",
# "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
    Options FollowSymLinks MultiViews ExecCGI

#
# This controls which options the .htaccess files in directories can
# override. Can also be "All", or any combination of "Options", "FileInfo",
# "AuthConfig", and "Limit"
#
    AllowOverride FileInfo

#
# Controls who can get stuff from this server.
#
    Order allow,deny
    Allow from all
</Directory>

로 수정 합니다.

이제 서버를 다시 시작하신 후
설치를 진행 합니다.