banner

[Rule] Rules  [Home] Main Forum  [Portal] Portal  
[Members] Member Listing  [Statistics] Statistics  [Search] Search  [Reading Room] Reading Room 
[Register] Register  
[Login] Loginhttp  | https  ]
 
Messages posted by: HkDng  XML
Profile for HkDng Messages posted by HkDng [ number of posts not being displayed on this page: 11 ]
 
Dùng cái thằng này dễ bị suspend host lắm đấy.
CSDL không liên quan gì đến tài khoản của host, bạn vào phpmyadmin, tạo một CSDL, sau đó điền đúng thông số của CSDL vào file config.php là xong.
1./ VBB không phải là free nhé bạn, nên bạn không thể down free từ vbulletin.com được. Bạn phải mua bản quyền, sau đó nó sẽ cho bạn link down ($160 smilie ). Còn nếu bạn muốn thử thì có thể dùng các bản nulled (từ này mọi người hay dùng) sẵn để thử nghiệm (Vbulletin.com biết được sẽ thông báo khóa host của bạn vô điều kiện).

2./ Mã nguồn SQL ??? Bạn nói rõ hơn đi.

zeno wrote:
Mới test thử với excel 2007 - dính chưởng smilie 


Bạn đã update lên SP1 chưa?

Mình đang dùng SP1 thấy không bị smilie

decon86 wrote:

Mình biết vấn đề này rất nhạy cảm ,có lẽ mình sẽ tự tìm hiểu lấy .
Cám ơn mọi người!
 


Bạn nên hiểu HVA không phải là nơi để xincho các loại key logger, virus ... (như conmale đã nói).

Việc thảo luận về chuyên môn thì bạn cứ hỏi sẽ có người giải đáp cho bạn.

nobita2201 wrote:
Chả là nobita có ý định lập một website cho lớp, mọi thứ đều đã chuẩn bị hết rồi (lên kế hoạch + thiết kê giao diện + MySQL trên word xong rồi, giờ chỉ còn viết code), chỉ còn một vài mục là chưa xong do không biết lập trình thế nào nên không đi tiếp được, trong đó có mục "Ai đang làm gì" (Tại nobita thấy trên HVA có mục này hay hay nên bắt chước làm theo), nhưng không biết làm thế nào.
Lúc đầu, nobita có nghĩ đến là ở mỗi đầu trang có hàm ghi vào CSDL tên của trang đó ứng với mỗi username, và sau đó tại trang "Ai đang làm gì" chỉ cần đọc thông tin từ CSDL là đc. Nhưng thấy nó "chuối" quá, làm như vậy sẽ khiến cho MySQL INSERT dữ liệu liên tục, không hay lắm, nên mạn phép lên đây hỏi mọi người cho chắc ăn
Xin cám ơn mọi người.
PS: nobita chỉ biết mỗi PHP mà thôi smilie  


Bạn tham khảo thêm ở các diễn đàn viết bằng php như IPB, VBB ...
Mình copy cho bạn code của file "Who is online" (Dịch là: ai đang online, hoặc ai đang làm gì ...)

Code:
<?php
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('THIS_SCRIPT', 'online');
// ################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array('wol');
// get special data templates from the datastore
$specialtemplates = array(
'maxloggedin',
'wol_spiders',
);
// pre-cache templates used by all actions
$globaltemplates = array(
'forumdisplay_sortarrow',
'im_aim',
'im_icq',
'im_msn',
'im_yahoo',
'im_skype',
'WHOSONLINE',
'whosonlinebit'
);
// pre-cache templates used by specific actions
$actiontemplates = array(
'resolveip' => array(
'whosonline_resolveip'
)
);
// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
require_once(DIR . '/includes/functions_online.php');
// #######################################################################
// ######################## START MAIN SCRIPT ############################
// #######################################################################
if (!$vbulletin->options['WOLenable'])
{
eval(standard_error(fetch_error('whosonlinedisabled')));
}
if (!($permissions['wolpermissions'] & $vbulletin->bf_ugp_wolpermissions['canwhosonline']))
{
print_no_permission();
}
// #######################################################################
// resolve an IP in Who's Online (this uses the WOL permissions)
if ($_REQUEST['do'] == 'resolveip')
{
$vbulletin->input->clean_array_gpc('r', array(
'ipaddress' => TYPE_NOHTML,
'ajax' => TYPE_BOOL
));
// can we actually resolve this?
if (!($permissions['wolpermissions'] & $vbulletin->bf_ugp_wolpermissions['canwhosonlineip']))
{
print_no_permission();
}
$resolved_host = htmlspecialchars_uni(@gethostbyaddr($vbulletin->GPC['ipaddress']));
$ipaddress =& $vbulletin->GPC['ipaddress']; // no html'd already
if ($vbulletin->GPC['ajax'])
{
if (empty($resolved_host))
{
$resolved_host = $ipaddress;
}
require_once(DIR . '/includes/class_xml.php');
$xml = new vB_AJAX_XML_Builder($vbulletin, 'text/xml');
$xml->add_tag('ipaddress', $resolved_host, array('original' => $ipaddress));
$xml->print_xml();
}
else
{
$navbits = construct_navbits(array(
'online.php' . $vbulletin->session->vars['sessionurl_q'] => $vbphrase['whos_online'],
'' => $vbphrase['resolve_ip_address']
));
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('whosonline_resolveip') . '");');
}
exit;
}
// #######################################################################
// default action
$datecut = TIMENOW - $vbulletin->options['cookietimeout'];
$wol_event = array();
$wol_pm = array();
$wol_calendar = array();
$wol_user = array();
$wol_forum = array();
$wol_link = array();
$wol_thread = array();
$wol_post = array();
// Variables reused in templates
$perpage = $vbulletin->input->clean_gpc('r', 'perpage', TYPE_UINT);
$pagenumber = $vbulletin->input->clean_gpc('r', 'pagenumber', TYPE_UINT);
$sortfield = $vbulletin->input->clean_gpc('r', 'sortfield', TYPE_NOHTML);
$sortorder = $vbulletin->input->clean_gpc('r', 'sortorder', TYPE_NOHTML);
$vbulletin->input->clean_array_gpc('r', array(
'who' => TYPE_STR,
'ua' => TYPE_BOOL,
));
($hook = vBulletinHook::fetch_hook('online_start')) ? eval($hook) : false;
// We can support multi page but we still have to grab every record and just throw away what we don't use.
// set defaults
$perpage = sanitize_perpage($perpage, 200, $vbulletin->options['maxthreads']);
if (!$pagenumber)
{
$pagenumber = 1;
}
$limitlower = ($pagenumber - 1) * $perpage + 1;
$limitupper = $pagenumber * $perpage;
if ($sortorder != 'desc')
{
$sortorder = 'asc';
$oppositesort = 'desc';
}
else
{ // $sortorder = 'desc'
$sortorder = 'desc';
$oppositesort = 'asc';
}
switch ($sortfield)
{
case 'location':
$sqlsort = 'session.location';
break;
case 'time':
$sqlsort = 'session.lastactivity';
break;
case 'host':
$sqlsort = 'session.host';
break;
default:
$sqlsort = 'user.username';
$sortfield = 'username';
}
$allonly = $vbphrase['all'];
$membersonly = $vbphrase['members'];
$spidersonly = $vbphrase['spiders'];
$guestsonly = $vbphrase['guests'];
$whoselected = array();
$uaselected = array();
switch ($vbulletin->GPC['who'])
{
case 'members':
$showmembers = true;
$whoselected[1] = 'selected="selected"';
break;
case 'guests':
$showguests = true;
$whoselected[2] = 'selected="selected"';
break;
case 'spiders':
$showspiders = true;
$whoselected[3] = 'selected="selected"';
break;
default:
$showmembers = true;
$showguests = true;
$showspiders = true;
$vbulletin->GPC['who'] = '';
$whoselected[0] = 'selected="selected"';
}
if ($vbulletin->GPC['ua'])
{
$uaselected[1] = 'selected="selected"';
}
else
{
$uaselected[0] = 'selected="selected"';
}
$reloadurl = ($perpage != 20 ? "pp=$perpage" : '') .
($pagenumber != 1 ? "&page=$pagenumber" : '') .
($sortfield != 'username' ? "&sort=$sortfield" : '') .
($sortorder == 'desc' ? '&order=desc' : '') .
($vbulletin->GPC['who'] != '' ? '&who=' . $vbulletin->GPC['who'] : '') .
($vbulletin->GPC['ua'] ? '&ua=1' : '');
if (!empty($reloadurl))
{
$reloadurl = 'online.php?' . $vbulletin->session->vars['sessionurl'] . $reloadurl;
}
else
{
$reloadurl = 'online.php' . $vbulletin->session->vars['sessionurl_q'];
}
$sorturl = 'online.php?' . $vbulletin->session->vars['sessionurl'] .
($vbulletin->GPC['who'] != '' ? '&who=' . $vbulletin->GPC['who'] : '') . ($vbulletin->GPC['ua'] ? '&ua=1' : '');
eval("\$sortarrow[$sortfield] = \"" . fetch_template('forumdisplay_sortarrow') . '";');
$hook_query_fields = $hook_query_joins = $hook_query_where = '';
($hook = vBulletinHook::fetch_hook('online_query')) ? eval($hook) : false;
$allusers = $db->query_read_slave("
SELECT user.username, session.useragent, session.location, session.lastactivity, user.userid, user.options, session.host, session.badlocation, session.incalendar, user.aim, user.icq, user.msn, user.yahoo, user.skype,
IF(displaygroupid=0, user.usergroupid, displaygroupid) AS displaygroupid, infractiongroupid
$hook_query_fields
FROM " . TABLE_PREFIX . "session AS session
". iif($vbulletin->options['WOLguests'], " LEFT JOIN " . TABLE_PREFIX . "user AS user USING (userid) ", ", " . TABLE_PREFIX . "user AS user") ."
$hook_query_joins
WHERE session.lastactivity > $datecut
". iif(!$vbulletin->options['WOLguests'], " AND session.userid = user.userid", "") ."
$hook_query_where
ORDER BY $sqlsort $sortorder
");
$moderators = $db->query_read_slave("SELECT DISTINCT userid FROM " . TABLE_PREFIX . "moderator");
while ($mods = $db->fetch_array($moderators))
{
$mod["{$mods[userid]}"] = 1;
}
$count = 0;
$userinfo = array();
$guests = array();
// get buddylist
$buddy = array();
if (trim($vbulletin->userinfo['buddylist']))
{
$buddylist = preg_split('/( )+/', trim($vbulletin->userinfo['buddylist']), -1, PREG_SPLIT_NO_EMPTY);
foreach ($buddylist AS $buddyuserid)
{
$buddy["$buddyuserid"] = 1;
}
}
// Refresh cache if the XML has changed
if ($vbulletin->options['enablespiders'] AND $lastupdate = @filemtime(DIR . '/includes/xml/spiders_vbulletin.xml') AND $lastupdate != $vbulletin->wol_spiders['lu'])
{
require_once(DIR . '/includes/class_xml.php');
$xmlobj = new vB_XML_Parser(false, DIR . '/includes/xml/spiders_vbulletin.xml');
$spiderdata = $xmlobj->parse();
$spiders = array();
if (is_array($spiderdata['spider']))
{
foreach ($spiderdata['spider'] AS $spiderling)
{
$addresses = array();
$identlower = strtolower($spiderling['ident']);
$spiders['agents']["$identlower"]['name'] = $spiderling['name'];
$spiders['agents']["$identlower"]['type'] = $spiderling['type'];
if (is_array($spiderling['addresses']['address']) AND !empty($spiderling['addresses']['address']))
{
if (empty($spiderling['addresses']['address'][0]))
{
$addresses[0] = $spiderling['addresses']['address'];
}
else
{
$addresses = $spiderling['addresses']['address'];
}
foreach ($addresses AS $key => $address)
{
if (in_array($address['type'], array('range', 'single', 'CIDR')))
{
$address['type'] = strtolower($address['type']);
switch($address['type'])
{
case 'single':
$ip2long = ip2long($address['value']);
if ($ip2long != -1 AND $ip2long !== false)
{
$spiders['agents']["$identlower"]['lookup'][] = array(
'startip' => $ip2long,
);
}
break;
case 'range':
$ips = explode('-', $address['value']);
$startip = ip2long(trim($ips[0]));
$endip = ip2long(trim($ips[1]));
if ($startip != -1 AND $startip !== false AND $endip != -1 AND $endip !== false AND $startip <= $endip)
{
$spiders['agents']["$identlower"]['lookup'][] = array(
'startip' => $startip,
'endip' => $endip,
);
}
break;
case 'cidr':
$ipsplit = explode('/', $address['value']);
$startip = ip2long($ipsplit[0]);
$mask = $ipsplit[1];
if ($startip != -1 AND $startip !== false AND $mask <= 31 AND $mask >= 0)
{
$hostbits = 32 - $mask;
$hosts = pow(2, $hostbits) - 1; // Number of specified IPs
$endip = $startip + $hosts;
$spiders['agents']["$identlower"]['lookup'][] = array(
'startip' => $startip,
'endip' => $endip,
);
}
break;
}
}
}
}
$spiders['spiderstring'] .= ($spiders['spiderstring'] ? '|' : '') . preg_quote($spiderling['ident'], '#');
}
$spiders['lu'] = $lastupdate;
// Write out spider cache
require_once(DIR . '/includes/functions_misc.php');
build_datastore('wol_spiders', serialize($spiders), 1);
$vbulletin->wol_spiders =& $spiders;
}
unset($spiderdata, $xmlobj);
}
require_once(DIR . '/includes/class_postbit.php');
while ($users = $db->fetch_array($allusers))
{
if ($users['userid'])
{ // Reg'd Member
if (!$showmembers)
{
continue;
}
$users = array_merge($users, convert_bits_to_array($users['options'] , $vbulletin->bf_misc_useroptions));
$key = $users['userid'];
if ($key == $vbulletin->userinfo['userid'])
{ // in case this is the first view for the user, fake it that show up to themself
$foundviewer = true;
}
if (empty($userinfo["$key"]['lastactivity']) OR ($userinfo["$key"]['lastactivity'] < $users['lastactivity']))
{
unset($userinfo["$key"]); // need this to sort by lastactivity
$userinfo["$key"] = $users;
fetch_musername($users);
$userinfo["$key"]['musername'] = $users['musername'];
$userinfo["$key"]['useragent'] = htmlspecialchars_uni($users['useragent']);
construct_im_icons($userinfo["$key"]);
if ($users['invisible'])
{
if (($permissions['genericpermissions'] & $vbulletin->bf_ugp_genericpermissions['canseehidden']) OR $key == $vbulletin->userinfo['userid'])
{
$userinfo["$key"]['hidden'] = '*';
$userinfo["$key"]['invisible'] = 0;
}
}
if ($vbulletin->options['WOLresolve'] AND ($permissions['wolpermissions'] & $vbulletin->bf_ugp_wolpermissions['canwhosonlineip']))
{
$userinfo["$key"]['host'] = @gethostbyaddr($users['host']);
}
$userinfo["$key"]['buddy'] = $buddy["$key"];
}
}
else
{ // Guest or Spider..
$spider = '';
if ($vbulletin->options['enablespiders'] AND !empty($vbulletin->wol_spiders))
{
if (preg_match('#(' . $vbulletin->wol_spiders['spiderstring'] . ')#si', $users['useragent'], $agent))
{
$agent = strtolower($agent[1]);
// Check ip address
if (!empty($vbulletin->wol_spiders['agents']["$agent"]['lookup']))
{
$ourip = ip2long($users['host']);
foreach ($vbulletin->wol_spiders['agents']["$agent"]['lookup'] AS $key => $ip)
{
if ($ip['startip'] AND $ip['endip']) // Range or CIDR
{
if ($ourip >= $ip['startip'] AND $ourip <= $ip['endip'])
{
$spider = $vbulletin->wol_spiders['agents']["$agent"];
break;
}
}
else if ($ip['startip'] == $ourip) // Single IP
{
$spider = $vbulletin->wol_spiders['agents']["$agent"];
break;
}
}
}
else
{
$spider = $vbulletin->wol_spiders['agents']["$agent"];
}
}
}
if ($spider)
{
if (!$showspiders)
{
continue;
}
$guests["$count"] = $users;
$guests["$count"]['spider'] = $spider['name'];
$guests["$count"]['spidertype'] = $spider['type'];
}
else
{
if (!$showguests)
{
continue;
}
$guests["$count"] = $users;
}
$guests["$count"]['username'] = $vbphrase['guest'];
$guests["$count"]['invisible'] = 0;
$guests["$count"]['displaygroupid'] = 1;
fetch_musername($guests["$count"]);
if ($vbulletin->options['WOLresolve'] AND ($permissions['wolpermissions'] & $vbulletin->bf_ugp_wolpermissions['canwhosonlineip']))
{
$guests["$count"]['host'] = @gethostbyaddr($users['host']);
}
$guests["$count"]['count'] = $count + 1;
$guests["$count"]['useragent'] = htmlspecialchars_uni($users['useragent']);
$count++;
($hook = vBulletinHook::fetch_hook('online_user')) ? eval($hook) : false;
}
}
if (!$foundviewer AND $vbulletin->userinfo['userid'] AND ($vbulletin->GPC['who'] == '' OR $vbulletin->GPC['who'] == 'members'))
{ // Viewing user did not show up so fake him
construct_im_icons($vbulletin->userinfo);
$userinfo["{$vbulletin->userinfo['userid']}"] = $vbulletin->userinfo;
$userinfo["{$vbulletin->userinfo['userid']}"]['location'] = '/online.php';
$userinfo["{$vbulletin->userinfo['userid']}"]['host'] = IPADDRESS;
$userinfo["{$vbulletin->userinfo['userid']}"]['lastactivity'] = TIMENOW;
fetch_musername($userinfo["{$vbulletin->userinfo['userid']}"]);
$userinfo["{$vbulletin->userinfo['userid']}"]['hidden'] = iif($vbulletin->userinfo['invisible'], '*');
$userinfo["{$vbulletin->userinfo['userid']}"]['invisible'] = 0;
if ($vbulletin->options['WOLresolve'] AND ($permissions['wolpermissions'] & $vbulletin->bf_ugp_wolpermissions['canwhosonlineip']))
{
$userinfo["{$vbulletin->userinfo['userid']}"]['host'] = @gethostbyaddr($userinfo["{$vbulletin->userinfo['userid']}"]['host']);
}
}
$show['ip'] = iif($permissions['wolpermissions'] & $vbulletin->bf_ugp_wolpermissions['canwhosonlineip'], true, false);
$show['ajax_resolve'] = ($show['ip'] AND !$vbulletin->options['WOLresolve']);
$show['useragent'] = iif($vbulletin->GPC['ua'], true, false);
$show['hidden'] = iif($permissions['genericpermissions'] & $vbulletin->bf_ugp_genericpermissions['canseehidden'], true, false);
$show['badlocation'] = iif($permissions['wolpermissions'] & $vbulletin->bf_ugp_wolpermissions['canwhosonlinebad'], true, false);
if (is_array($userinfo))
{
foreach ($userinfo AS $key => $val)
{
if (!$val['invisible'])
{
$userinfo["$key"] = process_online_location($val, 1);
}
}
}
if (is_array($guests))
{
foreach ($guests AS $key => $val)
{
$guests["$key"] = process_online_location($val, 1);
}
}
convert_ids_to_titles();
$onlinecolspan = 4;
$bgclass = 'alt1';
if ($vbulletin->options['enablepms'])
{
$onlinecolspan++;
}
if ($vbulletin->options['displayemails'] OR $vbulletin->options['enablepms'])
{
$onlinecolspan++;
exec_switch_bg();
$contactclass = $bgclass;
}
if ($permissions['wolpermissions'] & $vbulletin->bf_ugp_wolpermissions['canwhosonlineip'])
{
$onlinecolspan++;
exec_switch_bg();
$ipclass = $bgclass;
}
if ($vbulletin->options['showimicons'])
{
$onlinecolspan += 4;
exec_switch_bg();
exec_switch_bg();
exec_switch_bg();
exec_switch_bg();
}
$numbervisible = 0;
$numberinvisible = 0;
if (is_array($userinfo))
{
foreach ($userinfo AS $key => $val)
{
if (!$val['invisible'])
{
$onlinebits .= construct_online_bit($val, 1);
$numbervisible++;
}
else
{
$numberinvisible++;
}
}
}
$numberguests = 0;
if (is_array($guests))
{
foreach ($guests AS $key => $val)
{
if ($val['activity'] == 'logout' AND $val['badlocation'] == 0)
{
continue;
}
$numberguests++;
$onlinebits .= construct_online_bit($val, 1);
}
}
$totalonline = $numbervisible + $numberguests;
// ### MAX LOGGEDIN USERS ################################
if (intval($vbulletin->maxloggedin['maxonline']) <= $totalonline)
{
$vbulletin->maxloggedin['maxonline'] = $totalonline;
$vbulletin->maxloggedin['maxonlinedate'] = TIMENOW;
build_datastore('maxloggedin', serialize($vbulletin->maxloggedin), 1);
}
$recordusers = $vbulletin->maxloggedin['maxonline'];
$recorddate = vbdate($vbulletin->options['dateformat'], $vbulletin->maxloggedin['maxonlinedate'], true);
$recordtime = vbdate($vbulletin->options['timeformat'], $vbulletin->maxloggedin['maxonlinedate']);
$currenttime = vbdate($vbulletin->options['timeformat']);
$metarefresh = '';
if ($vbulletin->options['WOLrefresh'])
{
if (is_browser('mozilla'))
{
$metarefresh = "\n<script type=\"text/javascript\">\n";
$metarefresh .= "myvar = \"\";\ntimeout = " . ($vbulletin->options['WOLrefresh'] * 10) . ";
function exec_refresh()
{
timerID = setTimeout(\"exec_refresh();\", 100);
if (timeout > 0)
{ timeout -= 1; }
else { clearTimeout(timerID); window.location=\"online.php?" . $vbulletin->session->vars['sessionurl_js'] . "order=$sortorder&sort=$sortfield&pp=$perpage&page=$pagenumber" . iif($vbulletin->GPC['who'], '&who=' . $vbulletin->GPC['who']) . iif($vbulletin->GPC['ua'], '&ua=1') . "\"; }
}
exec_refresh();";
$metarefresh .= "\n</script>\n";
}
else
{
$metarefresh = "<meta http-equiv=\"refresh\" content=\"" . $vbulletin->options['WOLrefresh'] . "; url=online.php?" . $vbulletin->session->vars['sessionurl'] . "order=$sortorder&sort=$sortfield&pp=$perpage&page=$pagenumber" . iif($vbulletin->GPC['who'], '&who=' . $vbulletin->GPC['who']) . iif($vbulletin->GPC['ua'], '&ua=1') . "\" /> ";
}
}
$frmjmpsel['wol'] = ' selected="selected" class="fjsel"';
construct_forum_jump();
$pagenav = construct_page_nav($pagenumber, $perpage, $totalonline, 'online.php?' . $vbulletin->session->vars['sessionurl'] . "sort=$sortfield&order=$sortorder&pp=$perpage" . iif($vbulletin->GPC['who'], '&who=' . $vbulletin->GPC['who']) . iif($vbulletin->GPC['ua'], '&ua=1'));
$numbervisible += $numberinvisible;
$colspan = 2;
$colspan = iif($show['ip'], $colspan + 1, $colspan);
$colspan = iif($vbulletin->options['showimicons'], $colspan + 1, $colspan);
($hook = vBulletinHook::fetch_hook('online_complete')) ? eval($hook) : false;
$navbits = construct_navbits(array('' => $vbphrase['whos_online']));
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('WHOSONLINE') . '");');
?>


Bạn xem nhé.
include file này nếu bạn cần view khi ai đó muốn xem "who is online" !

(Có request đến các file khác như:
global.php
functions_online.php
...
Nếu bạn muốn mình send qua YIM cho bạn nhé)
Bạn phải nói rõ là bạn dùng forrum nào? IPB, VBB ....

Nó báo lỗi khi đang làm gì? khi truy cập vào trang chính hay khi cài đặt ?????
Theo mình hiểu chắc khi mua máy, bên bán chỉ đưa cho đồng chí đĩa driver cho Vista mà không đưa đĩa driver cho XP phải không?
Nếu thế thì lên trực tiếp website của nó mà download driver về.

computerline wrote:
Mình cũng không tài nào đăng kí thành viên trong reaonline được, điền dầy đủ thông tin rồi thì nó báo thế này:

That username is already in use or does not meet the administrator's standards. If you are computerline1z and you have forgotten your password, click here. 


Mặc dù mình đã thay đổi rất nhiều tên đăng kí nhưng vẫn không tài nào đăng kí được, có bạn nào đăng kí trong rea bình thường không hướng dẫn mình với.

Thank
 


Thảo luận về Pack và Unpack chứ không phải thảo luận về cách đăng ký ở REA nhé.

Các bác chú ý cho.

ngocvinhx9 wrote:
các chú ơi cháu không tìm nổi cái Remote desktop 


Ở Tab Remote của System Properties

akirasan wrote:


Access has decline
Ko dc anh ơi.Ko mở dc mã nguồn 


denied chứ không phải decline đâu bạn.
Cái này thông báo cho bạn biết là chương trình diệt virus trên máy bạn cấm không cho bạn xem code này đấy. Bạn tạm thời disable anti virus của bạn đi sẽ xem được mã nguồn. (Nhớ sau đó anable lại anti virus nhé smilie )
Bắt người ta đăng nhập mới được xem mục trong diễn đàn là cách làm của mấy diễn đàn đang cần muốn có nhiều thành viên. Trong khi đó HVA thì không như thế.

Khách, Thành viên, Elite, VMod, Mod, Admin sẽ có những quyền đọc ở những mục riêng.

maivanloi wrote:
em dơnload được cái IE7 về ma cài sao nò chẳng giống như giới thiệu vậy cài nó ra không khác IE 6 các đại ca biết cách thì chỉ chi tiết cho em nhé ! thank!!!! 

Bạn hãy download từ chính site của Microsoft về nhé. Sau đó cài đặt bình thường.

Link dưới đây bạn nhé:
http://www.microsoft.com/downloads/details.aspx?familyid=9AE91EBE-3385-447C-8A30-081805B2F90B&displaylang=en

Sẽ OK thôi.
Fal nên tạo cái poll đi smilie

Mình thì bao giờ cũng dùng quyền Admin vì có tất cả các quyền để ... phá phách ...

babudacu wrote:
vâng.forum của em chỉ cho phép admin post bài thôi.Còn lại với tất cả các quyền khác(mod, member...) đều không thể tham gia pót bầi.Mong các bác giúp đỡ 


Mình không dùng IPB nên không biết lựa chọn chính xác là thế nào. Đại khái là bạn vào ACP rồi set quyền cho các nhóm. Nhóm nào được viết bài,nhóm nào được viết, xem, xóa ... bài ....

Thử đi bạn smilie

magiccntt wrote:

Mình dùng phpbb2. có vào phần "cấu hình diển đàn" bật chức năng gởi mail bằng SMTP, điền đủ thông số rồi nhưng vẩn báo lổi 


Đầy đủ các thông số? Bạn ghi rõ cụ thể từng thông số đi.

Host của các bạn là free hay paid ???

dafvph wrote:

Trước tiên các bạn download những phần mềm liên quan tại địa chỉ NÀY: http://hurl.to/0BE (Tôi sẽ liên tục cập nhật Soft và Video hướng dẫn vào đây cho các bạn). 


Đưa bài hướng dẫn down ở Rapid, chưa gì đã lại cho link ở Rapid thì ... bó tay.
Bạn dùng shared host của Nhân Hòa thì bắt thằng Nhân Hòa chống, chứ bạn làm sao chống được?

Nếu Nhân Hòa treo host của bạn thì nên hủy hợp đồng với nó rồi chuyển sang thuê host khác thì hơn.

Mình có một rắc rối với file *.rar như thế này:

file gốc là file *.rar có password (mình nén lại với password bằng winRAR), sau đó mình copy cho thằng bạn, không biết nó làm thế nào mà file này không thể giải nén được. Khi giải nén nó không hỏi password để giải nén, trong khi vẫn chạy giải nén đến gần hết file thì báo là bị corrupt.

Mình muốn các bạn giúp mình là tại sao khi nén lại có password, mà khi giải nén lại không yêu cầu nhập password mà chạy giải nén đến gần hết (khoảng 98%) thì báo lỗi như trên? Hay là có phần mềm hay script nào đã can thiệp vào file nén? Trong winRAR thì làm cách nào khắc phục tình trạng này?

(Fiel gốc của mình không còn, nhưng mình đảm bảo là file mình copy cho thằng bạn không bị corrupt vì dung lượng vẫn được giữ nguyên).

Thanks in advance.
 
Go to Page:  First Page Page 2 4 5 6 Page 7 Last Page

Powered by JForum - Extended by HVAOnline
 hvaonline.net  |  hvaforum.net  |  hvazone.net  |  hvanews.net  |  vnhacker.org
1999 - 2013 © v2012|0504|218|