المشكلة هي في الصفحة الرئيسية للمنتدى
يوجد هاك اخر عشرة مواضيع

----------

في وندوز 98 تفتح الشاشة الرئيسية للمنتدى عادي

أما من لديه وندوز إكس بي

فتظهر له مشكله التي بها ارسال تقرير أو عدم ارسال

عندما أقوم بحذف ملف lastxmarq.php من الاف تي بي ( من الموقع )

يستطيع جميع اعضاء الذين يعملون على وندوز اكس بي الدخول عادي 0


فتجدون ملف lastxmarq.php مرفق فأرجو من الأخوة النظر فيه واكتشاف الخطأ وإبلاغنا ،، لأنه باعتقادي أنه يوجد خطأ ما بداخله

ولكم خالص التحيات

عفوا لم أتمكن من ارفاق ملف ، سوف أنسخه لكم هنا

000000000000000

<?
echo "<marquee scrollamount=\"3\" direction=\"right\" bgcolor=\"#D0C5BE\"><sup><sup>";
//...........Last X Posts v1.0.5...........\
//......by Kevin (kevin@tubescan.com)......\

// For vBulletin version 2 (betas 3, 4, 5, RC1, RC2, RC3)
// (c) 2001 Jelsoft Enterprises, Ltd.

// vBulletin.com thread: http://www.vbulletin.com/forum/showt...threadid=12324

// let's get connected
require("last10config.php");
require("admin/config.php");
$db=mysql_connect($servername,$dbusername,$dbpassword) or die("Can't open connection to MySQL");
mysql_select_db($dbname) or die("Can't select database");

$hfs = $fs+2;
$fs .= "pt";
$hfs .= "pt";

// the base WHERE statement
$wheresql = "WHERE thread.lastposter=user.username AND thread.open!='10'";

// we can't have both the last 24 hours *and* the last 7 days, so error out if needed
if ($last24 == "1" && $last7 == "1") {
print("Error: \$last24 and \$last7 are both set to 1. Please change one of them to 0.");
exit;
}
// otherwise we're gonna find out which one it is
// last 24
if ($last24 == "1") {
$time = time()-86400;
$wheresql .= " AND thread.lastpost>'$time'";
}
// last 7
if ($last7 == "1") {
$time = time()-604800;
$wheresql .= " AND thread.lastpost>'$time'";
}
// are we trying to exclude *and* include forums? if so, error out
if ($excludeforums != "" && $includeforums != "") {
print("Error: \$includeforums and \$excludeforums are both set with numbers. Please remove the numbers from <b>one</b> of these two to proceed.");
exit;
}
// otherwise figure out which one we're using
// include forums
if ($includeforums == "" or $includeforums <= "0") {
$quarter = "no";
} else {
$incfid = explode(",",$includeforums); $i = 0; $a = count($incfid);
if ($a > 1) {
$wheresql .= " AND (thread.forumid='$incfid[0]'";
++$i;
while ($i < $a) {
$wheresql .= " OR thread.forumid='$incfid[$i]'"; ++$i;
}
$wheresql .= ")";
} else {
$wheresql .= " AND thread.forumid='$incfid[$i]'";
}
}
// or exclude forums
if ($excludeforums == "" or $excludeforums <= "0") {
$quarter = "no";
} else {
$excfid = explode(",",$excludeforums); $i = 0; $a = count($excfid);
while ($i < $a) {
$wheresql .= " AND thread.forumid!='$excfid[$i]'"; ++$i;
}
}

// ooh a query!
$query = "SELECT thread.lastpost,thread.title,thread.lastposter,thread.replycount,thread.views,user.userid,thread.thr eadid,thread.forumid$fsel,thread.iconid FROM thread,user$ftitle $wheresql ORDER BY thread.$ob $obdir LIMIT $maxthreads";
// let's get the info
$tr = mysql_query($query) or die("MySQL reported this error while trying to retreive the info: ".mysql_error());
$dtf = mysql_query("SELECT value FROM setting WHERE varname='dateformat' OR varname='timeformat' OR varname='timeoffset' ORDER BY varname");
$df = mysql_result($dtf,0,0);
$tf = mysql_result($dtf,1,0);
$tof = mysql_result($dtf,2,0);


// let's display the info
while ($threads = mysql_fetch_array($tr)) {

echo "<a href=\"$url/showthread.php?threadid=$threads[threadid]&goto=newpost\" title=\"$threads[title]\" target=\"_blank\"><FONT SIZE=\"1\" FACE=\"MS Sans Serif\" color=\"#70544C\" style=\"text-decoration: none\"> $threads[title] </font></a>&nbsp;&nbsp;<FONT SIZE=\"1\" FACE=\"MS Sans Serif\" color=\"#FFF5A3\">&laquo; - &raquo;&nbsp;&nbsp;</font>>";
}
// close it all up
// bye!

echo "</marquee> ";

?>