1

주제: 태툴 1.1.3에서 텍스트큐브로 업그래이드 후

블로그주소/checkup 을 모두 성공(success)하고, owner페이지로 접속은 했습니다.

"센터" 페이지는 나오더군요.

그런데, "글", "링크", "리더", "스킨", "플러그인", "환경설정", "제어판" 모두가 접속이 안 됩니다.

모두가 "웹페이지를 찾을 수 없습니다. http 404 . . . "이런 메시만 나오고 전혀 접근할 수가 없습니다.

여러번 checkup을 해서 다시 접속 해 보았고, config.php 지우고 설치도 다시 해 보았는데요 . .

뭐가 문제인거죠?

ftp에서 권한설정도 별 문제 없는 것 같은데 . .

2

답글: 태툴 1.1.3에서 텍스트큐브로 업그래이드 후

텍스트큐브 1.5인가요? 아니면 1.6?

설치한 디렉토리에 생성되는 .htaccess의 내용을 붙여주시면 버전 파악을 할 수 있습니다. 센터 페이지가 나오는데 권한 문제는 아니라면, 업로드가 잘못되었을 수도 있는 부분이 있겠습니다.

현재 사용중인 모드가 어떤 모드인지 확인을 해 보았으면 합니다. .htaccess의 내용과 함께, 설치한 디렉토리에 생성되는 config.php 의 내용 중에서 초반의 데이터베이스 정보나 비전 정보를 제외한 정보들도 여기 붙여주시면 도움을 드리기가 쉬울 것 같습니다. (예를 들면 $service['type'] = 'single'; 이라거나 하는 부분)

"Everything looks different on the other side."

-Ian Malcomm, from Michael Crichton's 'The Jurassic Park'

3

답글: 태툴 1.1.3에서 텍스트큐브로 업그래이드 후

답변감사합니다.

업그래이드는 텍스트큐브 1.6.1로 했습니다.

.htaccess 의 내용을 보니까 다음과 같이 있습니다.

#<IfModule mod_url.c>
#CheckURL Off
#</IfModule>
#SetEnv PRELOAD_CONFIG 1
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.+[^/])$ $1/ [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ rewrite.php [L,QSA]


그리고, config.php의 내용은 다음과 같습니다( ***표시는 제가 임의로 지운 것입니다)

ini_set('display_errors', 'off');
$database['server'] = 'localhost';
$database['database'] = '*****';
$database['username'] = '*****';
$database['password'] = '*****';
$database['prefix'] = 'tt_';
$service['type'] = 'single';
$service['domain'] = '*****';
$service['path'] = '';
$service['skin'] = 'coolant';
$service['favicon_daily_traffic'] = 10; // 10MB
//$serviceURL = '******' ; // for path of Skin, plugin and etc.
//$service['reader'] = true; // Use Textcube reader. You can set it to false if you do not use Textcube reader, and want to decrease DB load.
//$service['debugmode'] = true; // uncomment for debugging, e.g. displaying DB Query or Session info
//$service['pagecache'] = false; // uncomment if you want to disable page cache feature.
//$service['debug_session_dump'] = true; // session info debuging.
//$service['debug_rewrite_module'] = true; // rewrite handling module debuging.
//$service['session_cookie_path'] = $service['path']; // for avoiding spoiling other textcube's session id sharing root.
//$service['allowBlogVisibilitySetting'] = true; // Allow service users to change blog visibility.


이해하시는데 도움이 될지 . . .
부탁드립니다.