這會刪除我的最愛裡面的全部照片
新建一個檔案, delfav.php
裡面輸入:
<?php
define('IN_COPPERMINE', true);
define('INDEX_PHP', true);
require('include/init.inc.php');
setcookie($CONFIG['cookie_name'] . '_fav', "", time() + 86400 * 30, $CONFIG['cookie_path']);
$location = "index.php";
$header_location = (@preg_match('/Microsoft|WebSTAR|Xitami/', getenv('SERVER_SOFTWARE'))) ? 'Refresh: 0; URL=' : 'Location: ';
header($header_location . $location);
pageheader($lang_info, "<META http-equiv=\"refresh\" content=\"1;url=$location\">");
msg_box($lang_info, "Het zipbestand werd verwijderd", $lang_continue, $location);
pagefooter();
ob_end_flush();
?>
儲存之後上傳到CPG的根目錄.
到你的佈景裡面打開 theme.php (themes/classic/theme.php)
Find:
<td class="sortorder_options"><span class="statlink"><a href="zipdownload.php">{DOWNLOAD_ZIP}</a></span></td>
Replace with:
<td class="sortorder_options"><span class="statlink"><a href="delfav.php">Delete Favorites</a> | <a href="zipdownload.php">{DOWNLOAD_ZIP}</a></span></td>