Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F117749559
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, RoundCube Dev. - Switzerland |
| 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
Sat, Apr 4, 1:40 AM (1 w, 5 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
d3/5c/13ed4b115f352ad4bec835685a8c
Default Alt Text
killcache.inc (1 KB)
Attached To
Mode
R113 roundcubemail
Attached
Detach File
Event Timeline