Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F117881606
killcache.inc
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Authored By
Unknown
Size
1 KB
Referenced Files
None
Subscribers
None
killcache.inc
View Options
<
?
php
/*
+-----------------------------------------------------------------------+
| program/steps/utils/killcache.inc |
| |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2005-2010, The Roundcube Dev Team |
| Licensed under the GNU GPL |
| |
| PURPOSE: |
| Delete rows from cache and messages tables |
| |
+-----------------------------------------------------------------------+
| Author: Dennis P. Nikolaenko <dennis@nikolaenko.ru> |
+-----------------------------------------------------------------------+
$Id$
*/
// don't allow public access if not in devel_mode
if
(
!$
RCMAIL
-
>
config
-
>
get
(
'
devel_mode
'
))
{
header
(
"HTTP/1.0 401 Access denied"
);
die
(
"Access denied!"
);
}
$
options
=
array
(
'
use_transactions
'
=
>
false
,
'
log_line_break
'
=
>
"\n"
,
'
idxname_format
'
=
>
'%
s
'
,
'
debug
'
=
>
false
,
'
quote_identifier
'
=
>
true
,
'
force_defaults
'
=
>
false
,
'
portability
'
=
>
true
);
// @TODO: transaction here (if supported by DB) would be a good thing
$
res
=
$
RCMAIL
-
>
db
-
>
query
(
"DELETE FROM cache"
);
if
(
PEAR
::
isError
(
$
res
))
{
exit
(
$
res
-
>
getMessage
());
}
$
res
=
$
RCMAIL
-
>
db
-
>
query
(
"DELETE FROM messages"
);
if
(
PEAR
::
isError
(
$
res
))
{
exit
(
$
res
-
>
getMessage
());
}
echo
"Cache cleared\n"
;
exit
;
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Apr 6, 12:00 AM (1 w, 4 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
87/6a/6b710cdd5491d553483bdf7ab993
Default Alt Text
killcache.inc (1 KB)
Attached To
Mode
R113 roundcubemail
Attached
Detach File
Event Timeline