ホームページ  >  記事  >  php教程  >  js コードの一部が Discuz! 5.0.0 フォーラム プログラムに追加され、メンバーがクリックして添付ファイルをダウンロードする前にプロンプ​​ト ウィンドウを自動的に表示できるようになりました。

js コードの一部が Discuz! 5.0.0 フォーラム プログラムに追加され、メンバーがクリックして添付ファイルをダウンロードする前にプロンプ​​ト ウィンドウを自動的に表示できるようになりました。

WBOY
WBOYオリジナル
2016-06-13 12:31:30825ブラウズ

ルートディレクトリのattachment.phpファイルを変更する必要があります。
以下に追加します $attachexists = $ispaid = FALSE;
if (!empty($checktwo)) {
最後の ?> の前に追加します🎜>} else {
echo "<script>alert('プロンプトする内容を書き込んでください')</script>";
echo "";
}
このマシンで Discuz をセットアップしました。5.0.1 のデバッグは成功しました。
完全なコードは次のとおりです:
/*
[Discuz!] (C)2001-2006 Comsenz Inc.
これはフリーウェアではありません。使用にはライセンス条項が適用されます
$RCSfile:attachment.php , v $
$Revision: 1.13 $
$Date: 2006/08/11 06:51:07 $
*/
require_once './include/common.inc.php'; 🎜 >$discuz_action = 14;
if($attachrefcheck && $_SERVER['HTTP_REFERER'] && preg_replace("/https?://([^/] ).*/i", "\1", $ _SERVER ['HTTP_REFERER']) != $_SERVER['HTTP_HOST']) {
//header("Location: {$boardurl}images/common/invalidreferer.gif")
showmessage('attachment_referer_invalid'); , NULL, 'HALTED');
}
/*
$query = $db->query("SELECT a.*, t.fid, p.authorid FROM {$tablepre}attachments a 、{$tablepre}threads t、{$tablepre}posts p
WHERE a.aid='$aid' AND t.tid=a.tid AND p.pid=a.pid AND t.displayorder>='0 ' AND p.invisible='0'");
$attach = $db->fetch_array($query);
*/
periodscheck('attachbanperiods');
$attachexists = $ ispaid = FALSE;
if (!empty($checktwo)) {
if(!empty($aid)) {
$query = $db->query("SELECT * FROM {$ tablepre }attachments WHERE helps='$aid'");
if($attach = $db->fetch_array($query)) {
$query = $db->query("SELECT tid, fid 、価格、特殊 FROM {$tablepre}threads WHERE tid='$attach[tid]' AND displayorder>='0'");
$thread = $db->fetch_array($query);
if($thread['fid']) {
$query = $db->query("SELECT authorid FROM {$tablepre}posts WHERE pid='$attach[pid]' AND hidden='0' " );
if($db->num_rows($query)) {
$attach['authorid'] = $db->result($query, 0);
$attachexists = TRUE ;
}
}
}
}
if($allowgetattach && ($attach['readperm'] && $attach['readperm'] > $readaccess) && $adminid < ;= 0 && !($discuz_uid && $discuz_uid == $attach['authorid'])) {
showmessage('attachment_forum_nopermission', NULL, 'NOPERM')
}
if(! $ thread['special'] && $thread['price'] > (!$discuz_uid || ($discuz_uid && $discuz_uid != $attach['authorid'] && $adminid <=0))) {
$query = $db->query("SELECT uid FROM {$tablepre}paymentlog WHERE uid='$discuz_uid' AND tid='$attach[tid]'"); - >result($query, 0)) {
$ispaid = TRUE;
} else {
showmessage('attachment_payto', 'viewthread.php?tid='.$attach['tid' ] );
}
}
$filename = $attachdir.'/'.$attach['attachment'];
if(is_readable($filename) && $attachexists) {
$ query = $db->query("SELECT f.viewperm, f.getattachperm, f.getattachcredits, a.allowgetattach FROM {$tablepre}forumfields f
LEFT JOIN {$tablepre}access a ON a.uid= ' $discuz_uid' AND a.fid=f.fid
WHERE f.fid='$thread[fid]'");
$forum = $db->fetch_array($query);
if (!$ispaid) {
if(!$forum['allowgetattach']) {
if(!$forum['getattachperm'] && !$allowgetattach) {
showmessage('group_nopermission', NULL , 'NOPERM');
} elseif(($forum['getattachperm'] && !forumperm($forum['getattachperm'])) || ($forum['viewperm'] &&!forumperm($forum['viewperm']))) {
showmessage('attachment_forum_nopermission', NULL, 'NOPERM'); 
}
}
}
if(!($isimage = preg_match("/^image/. /", $attach['filetype']))) {
check lowerlimit($ Creditspolicy['getattach'], -1); 
}
if(empty($noupdate)) {
if($delayviewcount == 2 || $delayviewcount == 3) {
$logfile = './forumdata/cache/cache_attachviews.ログ'; 
if(substr($timestamp, -1) == '0') {
require_once DISCUZ_ROOT.'./include/misc.func.php'; 
updateviews('attachments', 'aid', 'downloads', $logfile); 
}
if(@$fp = fopen(DISCUZ_ROOT.$logfile, 'a')) {
fwrite($fp, "$aidn"); 
fclose($fp); 
} elseif($adminid == 1) {
showmessage('view_log_invalid'); 
}
} else {
$db->query("UPDATE {$tablepre}attachments SET downloads=downloads '1' WHERE aid='$aid'", 'UNBUFFERED'); 
}
}
if(!$isimage) {
$forum['getattachcredits'] = $forum['getattachcredits'] ? unserialize($forum['getattachcredits']) : array(); 
$getattachcredits = $forum['getattachcredits'] ? $forum['getattachcredits'] : $creditspolicy['getattach']; 
updatecredits($discuz_uid, $getattachcredits, -1); 
}
$filesize = ファイルサイズ($filename); 
ob_end_clean(); 
header('キャッシュ制御: max-age=31536000'); 
header('Expires: '.gmdate('D, d M Y H:i:s', $timestamp 31536000).' GMT'); 
header('Content-Encoding: none'); 
$attach['filename'] = (strto lower($charset) == 'utf-8' && strexists($_SERVER['HTTP_USER_AGENT'], 'MSIE')) ? urlencode($attach['filename']) : $attach['filename']; 
if($isimage && !empty($noupdate)) {
header('Content-Disposition: inline; filename='.$attach['filename']); 
} else {
header('Content-Disposition: attachment; filename='.$attach['filename']); 
}
header('Content-Type: '.$attach['filetype']); 
@$fp = fopen($filename, 'rb'); 
@flock($fp, 2); 
$attachment = @fread($fp, $filesize); 
@fclose($fp); 
echo $attachment; 

} else {
showmessage('attachment_nonexistence'); 
}
} else {
echo "<script>alert('$PHP_SELF')</script>"; 
echo ""; 
}
?> 

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。