Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F8197234
killcache.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
killcache.php
View Options
<?php
/**
+-----------------------------------------------------------------------+
| This file is part of the Roundcube Webmail client |
| |
| Copyright (C) The Roundcube Dev Team |
| |
| Licensed under the GNU General Public License version 3 or |
| any later version with exceptions for skins & plugins. |
| See the README file for a full license statement. |
| |
| PURPOSE: |
| Delete rows from cache tables |
+-----------------------------------------------------------------------+
| Author: Dennis P. Nikolaenko <dennis@nikolaenko.ru> |
+-----------------------------------------------------------------------+
*/
class
rcmail_action_utils_killcache
extends
rcmail_action
{
/**
* Request handler.
*
* @param array $args Arguments from the previous step(s)
*/
public
function
run
(
$args
=
[])
{
$rcmail
=
rcmail
::
get_instance
();
// 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!"
);
}
// @TODO: transaction here (if supported by DB) would be a good thing
$res
=
$rcmail
->
db
->
query
(
"DELETE FROM "
.
$rcmail
->
db
->
table_name
(
'cache'
,
true
));
if
(
$err
=
$rcmail
->
db
->
is_error
(
$res
))
{
exit
(
$err
);
}
$res
=
$rcmail
->
db
->
query
(
"DELETE FROM "
.
$rcmail
->
db
->
table_name
(
'cache_shared'
,
true
));
if
(
$err
=
$rcmail
->
db
->
is_error
(
$res
))
{
exit
(
$err
);
}
$res
=
$rcmail
->
db
->
query
(
"DELETE FROM "
.
$rcmail
->
db
->
table_name
(
'cache_messages'
,
true
));
if
(
$err
=
$rcmail
->
db
->
is_error
(
$res
))
{
exit
(
$err
);
}
$res
=
$rcmail
->
db
->
query
(
"DELETE FROM "
.
$rcmail
->
db
->
table_name
(
'cache_index'
,
true
));
if
(
$err
=
$rcmail
->
db
->
is_error
(
$res
))
{
exit
(
$err
);
}
$res
=
$rcmail
->
db
->
query
(
"DELETE FROM "
.
$rcmail
->
db
->
table_name
(
'cache_thread'
,
true
));
if
(
$err
=
$rcmail
->
db
->
is_error
(
$res
))
{
exit
(
$err
);
}
echo
"Cache cleared
\n
"
;
exit
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Jul 8, 4:40 PM (22 h, 12 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1014171
Default Alt Text
killcache.php (2 KB)
Attached To
Mode
R3 roundcubemail
Attached
Detach File
Event Timeline
Log In to Comment