PDA

View Full Version : [MU] [Cứu] NWebMU v4 Latest Full Source Code by GameZone Việt Nam



MrKubjn
26-01-13, 05:03 PM
Em dùng bản này nhưng vào xem bảng xếp hạng thì k hiện,k cập nhập
ai biết chỉ em với
thank:D

MrKubjn
26-01-13, 07:19 PM
Ai giúp em với:(
Warning: fopen(data/topmonth.txt) [function.fopen]: failed to open stream: Permission denied in C:\Inetpub\vhosts\muvnn.com\subdomains\taikhoan\ht tpdocs\modules\rankingmonth.php on line 39

Warning: fputs(): supplied argument is not a valid stream resource in C:\Inetpub\vhosts\muvnn.com\subdomains\taikhoan\ht tpdocs\modules\rankingmonth.php on line 40

Warning: fclose(): supplied argument is not a valid stream resource in C:\Inetpub\vhosts\muvnn.com\subdomains\taikhoan\ht tpdocs\modules\rankingmonth.php on line 41

divine9966
26-01-13, 08:31 PM
để lại yahoo ..............................................

YouTobe
29-01-13, 03:59 PM
Warning: fopen(data/topmonth.txt) [function.fopen]: failed to open stream: Permission denied in C:\Inetpub\vhosts\muvnn.com\subdomains\taikhoan\ht tpdocs\modules\rankingmonth.php on line 39

Warning: fputs(): supplied argument is not a valid stream resource in C:\Inetpub\vhosts\muvnn.com\subdomains\taikhoan\ht tpdocs\modules\rankingmonth.php on line 40

Warning: fclose(): supplied argument is not a valid stream resource in C:\Inetpub\vhosts\muvnn.com\subdomains\taikhoan\ht tpdocs\modules\rankingmonth.php on line 41

YouTobe
29-01-13, 05:38 PM
Warning: gmdate() expects parameter 2 to be long, string given in /home/murongviet/public_html/id/modules/ranking_guild.php on line 62

mình bị như trên, file của nó đây , dòng 62 là dòng màu đỏ

<?php
if (!defined('NetNWEB')) die("Ban khong co quyen truy cap he thong");
if ($Use_XepHang != 1) {
echo "<center>Chức năng không có hoặc không được sử dụng</center>";
}
else {
if ( !isset($_SESSION[mu_username]) ) {
echo "<div align=center><font color=red><b>Hãy Login trước khi thực hiện chức năng này</b></font></div>";
include('modules/home.php');
} else {
/*
Các bước tiến hành:
B1: Đọc file trên host lấy thời gian lưu file
B2: So sánh thời gian hiện tại với thời gian lưu file
B3: Nếu thời gian hiện tại lớn hơn thời gian lưu file 3600 (1h) thì đọc file trên Server
B4: Lưu nội dung file trên Server vào file trên Host
B5: Đọc file lưu trên Host và hiển thị
*/
$file_host = "data/top_guild.txt";

if(is_file($file_host)) $fp_host = fopen($file_host, "r");
else $fp_host = fopen($file_host, "w");

$time_host = fgets($fp_host,15);
fclose($fp_host);

$time = time()+date("25179");

if ($time >= ($time_host+86400))
{

$getcontent_url = $server_url . "/view_topguild.php";
$getcontent_data = array(
'passtransfer' => $passtransfer
);

$show = _getContent($getcontent_url, $getcontent_data, $getcontent_method, $getcontent_curl);

if ( !empty($show) )
{
//Ghi vào file
$fp = fopen($file_host, "w");
fputs ($fp,$time."\n".$show);
fclose($fp);
//End Ghi vào File
}
}

$change_top = 0;
$fopen_host = fopen($file_host, "r");

while (!feof($fopen_host)) {
$guild_load = fgets($fopen_host,200);
$guild_load = preg_replace('(\n)', '', $guild_load);
if($guild_load == '<netbanbe>') $change_top = 1;
else
{
$guild_info = explode('<nbb>', $guild_load);

if ( empty($guild_info[1]) && $guild_info[0] )
{
$time_top = gmdate("h:i A d/m/Y",$guild_info[0]);
}
elseif($guild_info[0])
{
if($change_top == 0)
{
$TOP_GMember[] = array (
'Gname' => $guild_info[0],
'GMaster' => $guild_info[1],
'GMember' => $guild_info[2],
'GReset' => $guild_info[3],
'GTOP' => $guild_info[4],
'GTOPReset' => $guild_info[5]
);
}
if($change_top == 1)
{
$TOP_GReset[] = array (
'Gname' => $guild_info[0],
'GMaster' => $guild_info[1],
'GMember' => $guild_info[2],
'GReset' => $guild_info[3],
'GTOP' => $guild_info[4],
'GTOPReset' => $guild_info[5]
);
}
}
}
}
$slg_GMember = count($TOP_GMember);
$slg_GReset = count($TOP_GReset);

fclose($fopen_host);

$page_template = 'templates/ranking_guild.tpl';
}
}
?>