Descargar
Desarrollar
Cuenta
Descargar
Desarrollar
Entrar
Forgot Account/Password
Crear Cuenta
Idioma
Ayuda
Idioma
Ayuda
×
Entrar
Nombre de usuario
Contraseña
×
Forgot Account/Password
Translation Status of Español
Categoría:
Software
Gente
PersonalForge
Magazine
Wiki
Buscar
OSDN
>
Buscar Software
>
Internet
>
WWW/HTTP
>
Dynamic Content
>
XOOPS
>
Ticket List/Search
>
Incidencia #6196
XOOPS
Descripción
Project Summary
Developer Dashboard
Página Web
Developers
Image Gallery
List of RSS Feeds
Activity
Statistics
Historial
Descargas
List of Releases
Stats
Código Fuente
Code Repository list
CVS
Ver Repositorio
Incidencia
Ticket List
Milestone List
Type List
Component List
List of frequently used tickets/RSS
Submit New Ticket
Documents
Communication
Foros
List of Forums
Ayuda (1)
Open Discussion (1)
Mailing Lists
list of ML
xoops-cvslog
Noticias
Incidencia #6196
Ticket List
Submit New Ticket
RSS
一般設定>>一般設定を更新したときのcache/のファイル削除に除外指定
Abrir Fecha:
2005-06-22 09:49
Última actualización:
2005-06-22 09:49
monitor
ON
OFF
Informador:
toshimitsu
Propietario:
(Ninguno)
Tipo:
Feature Requests
Estado:
Open
Componente:
(Ninguno)
Hito:
(Ninguno)
Prioridad:
5 - Medium
Gravedad:
5 - Medium
Resolución:
Ninguno
Fichero:
Ninguno
Details
Responder
一般設定>>一般設定を更新したとき
cache/
の中のすべてファイルを削除されますが
特定のファイル
.htaccess を
入れても消えてしまうので
ファイルを削除から除外してほしい
modules/system/admin/preferences/main.php
line 343
-----------------------------------
$xoopsTpl->clear_all_cache();
-----------------------------------
だと
すべてが削除されてしまうです
-----------------------------------
// remove matching file names
$_handle = opendir(XOOPS_CACHE_PATH);
$_res = true;
while (false !== ($_filename = readdir
($_handle))) {
if($_filename == '.' || $_filename
== '..' || $_filename == '.htaccess') {
continue;
} elseif (substr( XOOPS_CACHE_PATH .
DIRECTORY_SEPARATOR . $_filename, 0, strlen(
XOOPS_CACHE_PATH )) == XOOPS_CACHE_PATH ) {
@unlink(XOOPS_CACHE_PATH .
DIRECTORY_SEPARATOR . $_filename);
}
}
-----------------------------------
全部消す方がよいのか
影響的には、よくわからないのですけど,書いては見た
Ticket History (0/0 Histories)
Attachment File List (
0
)
Attachment File List
No attachments
Editar
Add Comment
You are not logged in.
I you are not logged in, your comment will be treated as an anonymous post. »
Entrar
Add Comment
Vista previa
Submit
cache/
の中のすべてファイルを削除されますが
特定のファイル
.htaccess を
入れても消えてしまうので
ファイルを削除から除外してほしい
modules/system/admin/preferences/main.php
line 343
-----------------------------------
$xoopsTpl->clear_all_cache();
-----------------------------------
だと
すべてが削除されてしまうです
-----------------------------------
// remove matching file names
$_handle = opendir(XOOPS_CACHE_PATH);
$_res = true;
while (false !== ($_filename = readdir
($_handle))) {
if($_filename == '.' || $_filename
== '..' || $_filename == '.htaccess') {
continue;
} elseif (substr( XOOPS_CACHE_PATH .
DIRECTORY_SEPARATOR . $_filename, 0, strlen(
XOOPS_CACHE_PATH )) == XOOPS_CACHE_PATH ) {
@unlink(XOOPS_CACHE_PATH .
DIRECTORY_SEPARATOR . $_filename);
}
}
-----------------------------------
全部消す方がよいのか
影響的には、よくわからないのですけど,書いては見た