2010-05-18 4 views
2

Drupal (6.16) 설치를 공유 호스팅에서 Linode VPS (Ubunto 10.04 32 비트)로 마이그레이션 한 후. URL을 클릭 할 때마다 홈페이지 만 표시됩니다. 나는 URL의 끝에? q = user를 입력하여 관리자로 로그인합니다. 로그인했을 때도 마찬가지입니다. 어떤 URL로도 이동할 수 없습니다. 홈페이지 만 보여줍니다. 이전하기 전에 드루팔 (Drupal) 캐시를 청소하는 것을 잊었습니다. 그것 때문에입니까? 관리자> 사이트 구성> 성능으로 이동하여 캐시를 지울 수 없어 아무 것도 작동하지 않습니다. 그런데 .htaccess 아래에 표시된대로 다시 쓰기가 활성화되었습니다. 이미 .htaccess 파일을 새 서버로 마이그레이션했습니다. stackoverflow question과 유사하지만 내 경우에는 유효하지 않습니다.드루팔 (Drupal) 마이그레이션 문제

아파치 아파치 - 문서 아파치-utils를 libapache2 - 모드 - PHP5의 PHP5의 PHP-배 PHP5-XCache를 PHP5-수호신 PHP5-mysql을 패키지가 설치됩니다.

어떻게해야합니까?

# 
# Apache/PHP/Drupal settings: 
# 

# Protect files and directories from prying eyes. 
<FilesMatch "\.(engine|inc|info|install|make|module|profile|test|po|sh|.*sql|theme|tpl(\.php)?|xtmpl|svn-base)$|^(code-style\.pl|Entries.*|Repository|Root|Tag|Template|all-wcprops|entries|format)$"> 
    Order allow,deny 
</FilesMatch> 

# Don't show directory listings for URLs which map to a directory. 
Options -Indexes 

# Follow symbolic links in this directory. 
Options +FollowSymLinks 

# Make Drupal handle any 404 errors. 
ErrorDocument 404 /index.php 

# Force simple error message for requests for non-existent favicon.ico. 
<Files favicon.ico> 
    # There is no end quote below, for compatibility with Apache 1.3. 
    ErrorDocument 404 "The requested file favicon.ico was not found. 
</Files> 

# Set the default handler. 
DirectoryIndex index.php 

# Override PHP settings. More in sites/default/settings.php 
# but the following cannot be changed at runtime. 

# PHP 4, Apache 1. 
<IfModule mod_php4.c> 
    php_value magic_quotes_gpc    0 
    php_value register_globals    0 
    php_value session.auto_start    0 
    php_value mbstring.http_input    pass 
    php_value mbstring.http_output   pass 
    php_value mbstring.encoding_translation 0 
</IfModule> 

# PHP 4, Apache 2. 
<IfModule sapi_apache2.c> 
    php_value magic_quotes_gpc    0 
    php_value register_globals    0 
    php_value session.auto_start    0 
    php_value mbstring.http_input    pass 
    php_value mbstring.http_output   pass 
    php_value mbstring.encoding_translation 0 
</IfModule> 

# PHP 5, Apache 1 and 2. 
<IfModule mod_php5.c> 
    php_value magic_quotes_gpc    0 
    php_value register_globals    0 
    php_value session.auto_start    0 
    php_value mbstring.http_input    pass 
    php_value mbstring.http_output   pass 
    php_value mbstring.encoding_translation 0 
</IfModule> 

# Requires mod_expires to be enabled. 
<IfModule mod_expires.c> 
    # Enable expirations. 
    ExpiresActive On 

    # Cache all files for 2 weeks after access (A). 
    ExpiresDefault A1209600 

    <FilesMatch \.php$> 
    # Do not allow PHP scripts to be cached unless they explicitly send cache 
    # headers themselves. Otherwise all scripts would have to overwrite the 
    # headers set by mod_expires if they want another caching behavior. This may 
    # fail if an error occurs early in the bootstrap process, and it may cause 
    # problems if a non-Drupal PHP file is installed in a subdirectory. 
    ExpiresActive Off 
    </FilesMatch> 
</IfModule> 

# Various rewrite rules. 
<IfModule mod_rewrite.c> 
    RewriteEngine on 

    # If your site can be accessed both with and without the 'www.' prefix, you 
    # can use one of the following settings to redirect users to your preferred 
    # URL, either WITH or WITHOUT the 'www.' prefix. Choose ONLY one option: 
    # 
    # To redirect all users to access the site WITH the 'www.' prefix, 
    # (http://example.com/... will be redirected to http://www.example.com/...) 
    # adapt and uncomment the following: 
    # RewriteCond %{HTTP_HOST} ^example\.com$ [NC] 
    # RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301] 
    # 
    # To redirect all users to access the site WITHOUT the 'www.' prefix, 
    # (http://www.example.com/... will be redirected to http://example.com/...) 
    # uncomment and adapt the following: 
    # RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC] 
    # RewriteRule ^(.*)$ http://example.com/$1 [L,R=301] 

    # Modify the RewriteBase if you are using Drupal in a subdirectory or in a 
    # VirtualDocumentRoot and the rewrite rules are not working properly. 
    # For example if your site is at http://example.com/drupal uncomment and 
    # modify the following line: 
    # RewriteBase /drupal 
    # 
    # If your site is running in a VirtualDocumentRoot at http://example.com/, 
    # uncomment the following line: 
    # RewriteBase/

    # Rewrite URLs of the form 'x' to the form 'index.php?q=x'. 
    RewriteCond %{REQUEST_FILENAME} !-f 
    RewriteCond %{REQUEST_FILENAME} !-d 
    RewriteCond %{REQUEST_URI} !=/favicon.ico 
    RewriteRule ^(.*)$ index.php?q=$1 [L,QSA] 
</IfModule> 
+2

'? q = admin/blah'을 사용하여 페이지에 액세스 할 수 있습니까? 그건 캐시 문제가 아니에요. 'mod_rewrite' 모듈이 활성화되어 있는지 확인하십시오. 이 명령을 루트 :'a2enmode rewrite '로 사용하여 활성화 할 수 있습니다. 그리고 나는 serverfault.com이 이것에 더 적합하다고 생각합니다. – sepehr

+0

나는 네가 옳았다. 세퍼. 재 작성을 잊어 버렸습니다. 당신이 내 질문에 대답한다면 나는 그것을 대답으로 받아 들일 것입니다. 감사합니다 Sepehr. Keeper가 Drush에 관해 알려주는 것보다. –

+0

당신은 환영합니다, Drush는 대단합니다;) – sepehr

답변

3

콘솔 액세스 권한이 있어야합니다. Drush을 설치 한 다음 "drush cache-clear"을 실행하십시오.

+0

힌트를 주셔서 감사합니다. 나는 drush 2.0-6을 설치하고 drush cache clear을 적용했다. Cahce가 지워지고 몇 가지 경고가 표시됩니다. 경고 : [경고]에있는 비 객체의 속성 수정 시도 public_html/drupal/sites/all/modules/date/includes/date_plugin_display_attachment.inc on line 24, 25, 26 , 27, 28. 아직 작동하지 않습니다. –