重要:此頁面會使用Cookie (cookies). 使用本網站不關閉瀏覽器中的cookie,即表示您同意使用它。
現在購買! 特點 下載

賺錢與我們聯繫!

如果您想要開始賺錢與貝特聯接 聯盟計畫。
結果 177

主題: 沒有 CSS或圖像插件的網頁上ispy

  1. #1
    高級會員
    註冊日期
    2010年2月
    帖子
    210

    Default 沒有 CSS或圖像插件的網頁上ispy

    嗨米歇爾,任何的機會,你可以去看看,看看是否有一個簡單的解決這個;

    電腦果汁 - 網站間諜

    似乎腳本是沒有得到正確的CSS文件,並期待在錯誤的地方圖片 ...

  2. #2
    米哈爾 Podbielski(vBET職員) vBET's Avatar
    註冊日期
    2009年10月
    帖子
    3,037

    Default

    當我看到這個頁面是沒有翻譯的。最大的可能是global_complete不使用有鉤。您可以嘗試整合為 MODS是不使用global_complete掛鉤。

    看到這裡的描述: http://www.vbenterprisetranslator.co....html#post1795

    請首先檢查是否真的global_complete不使用那裡。

  3. #3
    高級會員
    註冊日期
    2010年2月
    帖子
    210

    Default

    我真的不知道如何遵循這 些說明,它是一個簡單的MOD,運行的Ajax我想,只有一個 PHP文件,無產品或模板。下面是該文件的內容。

    <?PHP
    //################################################ ################################//
    / / MOD名稱:VBISpy#/ /
    //################################################ ################################//
    / /說明:此修改為 vBulletin增加了一個“活”滾動#/ /
    / /更新的新職位,該論壇#/ /
    //################################################ ################################//
    / / BY:MPDev#/ /
    / /日期:06年9月26日#/ /
    / /版本:1.0.12#/ /
    //################################################ ################################//

    / /設置 PHP環境 ###################### ####################### #####
    打開 error_reporting(E_ALL&〜E_NOTICE);

    / / #################### DEFINE重要常數 #######################
    定義('THIS_SCRIPT','vaispy');

    / / ################### PRE - CACHE模板和數據 ######################
    / /得到特殊的短語組
    $ phrasegroups =陣列();

    / /獲得特殊的數據模板的數據存儲
    $ specialtemplates =陣列();

    / /預緩存模板使用的所有行動
    $ globaltemplates =陣列();

    / /預緩存模板使用的具體行動
    $ actiontemplates =陣列();

    / / ######################### REQUIRE後端 ################### #########
    require_once('。/ global.php');

    / / ######################### CONFIG VARS ##################### #######
    / /的天數掃描表.. (86400代表秒數在24小時內)
    $ daysprune = 1;

    / /不要列出這些論壇中,即使他們有權限(測試類別等)
    $ blockforums =“”;

    / / ######################### CONFIG VARS ##################### #######

    $ forumperms =陣列();
    $ lastpostid =(INT)$ _REQUEST ['最後'];
    $認購 =(INT)$ _REQUEST ['認購'];

    的foreach($百度推廣 - > forumcache美元論壇){
    $ forumid = $論壇 ['forumid'];
    $ forumperms =&$百度推廣 - > userinfo的['forumpermissions ']["$ forumid“];

    如果(!使用isset($百度推廣 - > forumcache [“$ forumid”])或!($ forumperms&$百度推廣 - > bf_ugp_forumpermissions ['canview“])或!($ forumperms&$百度推廣 - > bf_ugp_forumpermissions ['canviewothers'] )或!verify_forum_password($ forumid,$百度推廣 - > forumcache [“$ forumid”] ['密碼'],FALSE))
    {
    $ blockforums .= ','.$論壇 ['forumid'];
    }
    }
    取消設置($論壇);

    $ datecut =“和thread.lastpost> =”。 (TIMENOW - ($ daysprune * 86400));
    $預取= NULL;

    ############################################################################
    / /獲取線程我已經發表在
    require_once(DIR。'/包括/ functions_forumdisplay.php');
    $結果 = $ DB -> query_read(“
    SELECT ID為
    從“。TABLE_PREFIX。”螺紋的螺紋
    WHERE thread.forumid NOT IN(0 $ blockforums)和
    thread.visible = 1和
    thread.open <> 10
    thread.lastpostid> $ lastpostid
    $ datecut
    “);

    $ idsArray =陣列();
    而($ ID = $ DB -> fetch_array($結果))
    {
    $ idsArray [] = $ ID ['ID為'];
    }

    $ dotthreads = fetch_dot_threads_array(破滅 (',', $ idsArray));
    ############################################################################
    / /獲取線程

    / /不要設置超過 20,除非你知道如何修改HTML在底部的頁面(和行291)
    $ limitq =(使用isset($ _REQUEST ['做'])?“20”:“5,20”);

    如果($訂閱 == 1)
    {
    $ getthreads = $ DB -> query_read(“
    SELECT subscribethread.subscribethreadid,
    thread.forumid,
    thread.firstpostid,
    thread.lastpost,
    thread.lastposter,
    thread.lastpostid,
    thread.replycount,
    thread.threadid,
    thread.title,
    thread.open,
    thread.views,
    post.pagetext AS預覽,
    post.userid AS lastpuserid
    從“。TABLE_PREFIX。”subscribethread AS subscribethread
    INNER JOIN“。TABLE_PREFIX。”線程 AS線程(subscribethread.threadid = thread.threadid)
    LEFT JOIN“。TABLE_PREFIX。”deletionlog AS deletionlog ON(thread.threadid = deletionlog.primaryid和類型 ='線')
    LEFT JOIN“。TABLE_PREFIX。”後張貼在AS(post.postid = thread.lastpostid)
    WHERE subscribethread.userid =“$百度推廣 - > userinfo的[”用戶 ID“]。”
    與 thread.forumid NOT IN(0 $ blockforums)
    與 thread.visible = 1
    與 subscribethread.canview = 1
    與 thread.lastpostid> $ lastpostid
    與 deletionlog.primaryid IS NULL
    $ datecut
    ORDER BY DESC LIMIT $ limitq thread.lastpost
    “);
    }
    其他
    {
    $ getthreads = $ DB -> query_read(“
    SELECT thread.forumid,
    thread.firstpostid,
    thread.lastpost,
    thread.lastposter,
    thread.lastpostid,
    thread.replycount,
    thread.threadid,
    thread.title,
    thread.open,
    thread.views,
    post.pagetext AS預覽,
    post.userid AS lastpuserid
    從“。TABLE_PREFIX。”線程為線程
    LEFT JOIN“。TABLE_PREFIX。”deletionlog AS deletionlog ON(thread.threadid = deletionlog.primaryid和類型 ='線')
    LEFT JOIN“。TABLE_PREFIX。”後張貼在AS(post.postid = thread.lastpostid)
    WHERE開 <> 10
    $ datecut
    與 thread.forumid NOT IN(0 $ blockforums)
    與 thread.visible = '1'
    與 thread.lastpostid> $ lastpostid
    與 post.visible = 1
    與 deletionlog.primaryid IS NULL
    ORDER BY DESC LIMIT $ limitq thread.lastpost
    “);
    }

    $行= $ highestid = 1;
    $ rowcolor =“ALT2”;

    而($線程 = $ DB -> fetch_array($ getthreads)){
    色色= $ $ =='ALT1“? “ALT2”:“ALT1”;

    $線程 ['標題'] = htmlspecialchars_uni(fetch_censored_text(fetch_trimmed_title(unhtmlspecialchars($線程 ['標題']),85)));
    $線程 ['日期'] = vbdate($百度推廣 - >選項 ['DATEFORMAT'],$線程 ['lastpost'],1);
    $線程 ['時間'] = vbdate($百度推廣 - >選項 ['時間格式'],$線程 ['lastpost']);

    / /去掉HTML和BBCode代碼第一
    $線程 ['預覽'] =用strip_tags(strip_bbcode($線程 ['預覽'],TRUE,TRUE));
    $線程 ['預覽'] = htmlspecialchars_uni(fetch_trimmed_title($線程 ['預覽'],200));
    $線程 ['預覽'] = fetch_censored_text(fetch_word_wrapped_string($線程 ['預覽'],20));

    $線程 ['replycount'] = vb_number_format($線程 ['replycount']);
    $線程 [“意見”] = vb_number_format($線程 [“意見”]);

    $ tforumid = $線程 ['forumid'];
    $線程 ['論壇'] = htmlspecialchars_uni($百度推廣 - > forumcache [“$ tforumid”] [“標題”]);

    如果($線程 ['lastpostid'] == $線程 ['firstpostid'])
    {
    $ ETYPE =“新主題”;
    }
    其他
    {
    $ ETYPE =“新話題”;
    }

    / / Statusicon
    / /顯示點文件夾?
    如果($百度推廣 - > userinfo的['用戶 ID']和$百度推廣 - >選項 ['showdots']和$ dotthreads [“$線程 [主題 ID]”])
    {
    $線程 ['statusicon'] .='_dot“;
    $線程 ['dot_count'] = $ dotthreads [“$線程 [ID為 ]"]['數'];
    $線程 ['dot_lastpost'] = $ dotthreads [“$線程 [ID為 ]"][' lastpost'];
    }

    / /顯示熱文件夾?
    如果($百度推廣 - >選項 ['usehotthreads“]和(($線程 ['replycount']> = $百度推廣 - >選項 ['hotnumberposts']和$百度推廣 - >選項 ['hotnumberposts']> 0)或( $線程 [“意見”]> = $百度推廣 - >選項 ['hotnumberviews']和$百度推廣 - >選項 ['hotnumberviews']> 0)))
    {
    $線程 ['statusicon'] .='_hot“;
    }

    / /顯示鎖定的文件夾?
    如果(!$線程 ['開'])
    {
    $線程 ['statusicon'] .='_lock“;
    }

    $線程 ['statusicon'] =“blank.gif”;

    如果($ _REQUEST ['做'] ==“XML”)
    {

  4. #4
    高級會員
    註冊日期
    2010年2月
    帖子
    210

    Default

    下面是第二部分,vbet論壇停止大文章。

    $輸出 .= <<<VAPRINT
    <event>
    <ID> {$線程 ['lastpostid ']}</ ID>
    <what> $ ETYPE </什麼>
    <when > {$線程 ['日期']} {$線程 ['時間 ']}</時>
    <TITLE> {$線程 ['標題 ']}</標題>
    <preview> {$線程 ['預覽 ']}</預覽>
    <POSTER> {$線程 ['lastposter ']}</海報>
    <threadid> {$線程 ['ID為 ']}</主題 ID>
    <postid> {$線程 ['lastpostid ']}</ postid>
    <lastpost> {$線程 ['lastpost ']}</ lastpost>
    <USERID> {$線程 ['lastpuserid ']}</用戶 ID>
    <forumid> {$線程 ['forumid ']}</ forumid>
    <forumname> {$線程 [論壇 ']}</ forumname>
    <views> {$線程 [意見 ']}</意見>
    <replies> {$線程 ['replycount ']}</回复>
    <statusicon> {$線程 ['statusicon ']}</ statusicon>
    </事件>
    VAPRINT;
    }
    其他
    {
    $ rowcolor =($ rowcolor ==“ALT1”?“ALT2”:“ALT1”);

    其中$ = $剪輯 = $ poster_clip = $海報 = NULL;

    如果(stristr($ ETYPE,“線程”))
    {
    $ post_url =“showthread.php?T = {$線程 ['ID為 ']}";
    }
    其他
    {
    $ post_url =“showthread.php?P = {$線程 ['lastpostid']}#{$線程後 ['lastpostid ']}";
    }

    如果(!$線程 ['標題'])
    {
    $夾 =“<STRONG>未知</ STRONG>”;
    }
    其他
    {
    $夾 =“<STRONG> <img src=\\"{$thread['statusicon']}\\" alt=\\"\\" /> <目標 = \\”_blank \\“HREF = \\”{$ post_url} \\ “> {$線程 ['標題 ']}</ A> </ STRONG>”;
    }

    如果($線程 ['預覽'])
    {
    $剪輯 .=“<br /> {$線程 ['預覽 ']}";
    }

    $夾 .=“({$線程 [”意見“]}的意見,{$線程 ['replycount']}篇)”;

    如果($線程 ['lastpuserid'])
    {
    $ poster_clip =“<a target=\\"_blank\\" href=\\"member.php?u={$thread['lastpuserid']}\\"> {$線程 ['lastposter ']}</ A>”;
    }

    $ poster_clip .=“<br /> {$線程 ['日期']} {$線程 ['時間 ']}";

    如果($線程 ['論壇'])
    {
    $其中.=“<STRONG> <a target=\\"_blank\\" href=\\"forumdisplay.php?f={$thread['forumid']}\\"> {$線程 [論壇 ']}</ A> </ STRONG>“;
    }
    其他
    {
    其中$ =“”;
    }

    如果(is_browser(“戲”))
    {
    $預取.= <<<VAPRINT
    <div id="row{$row}"> <table cellpadding="3" cellspacing="0" border="0" width="100%"> <TR> <TD WIDTH =“20”級 =“$ rowcolor smallfont“nowrap =”nowrap“ALIGN =”中心“> $ ETYPE </ TD> <TD class="$rowcolor smallfont" width="225" nowrap="nowrap" ALIGN="LEFT"> $ poster_clip </ TD > <td class="$rowcolor smallfont" width="80%"> $剪輯 </ TD> <TD class="$rowcolor smallfont" width="200" nowrap="nowrap" align="center"> $其中</ TD> </ TR> </ TABLE> </ DIV> \\ N
    VAPRINT;
    }
    其他
    {
    $預取.= <<<VAPRINT
    <tr id="row{$row}"> <td align="center"> <div class="smallfont"> class="$rowcolor smallfont" $ ETYPE </ DIV> </ TD> <TD類 =“ $ rowcolor smallfont“> <div class="smallfont"> $ poster_clip </ DIV> </ TD> <TD class="$rowcolor smallfont"> <div class="smallfont"> $剪輯 </ DIV> </ TD > <td align="center"> <div class="smallfont"> class="$rowcolor smallfont" $其中</ DIV> </ TD> </ TR> \\ n
    VAPRINT;
    }

    $行+ +;
    如果($線程 ['lastpostid']> $ highestid)
    {
    $ highestid = $線程 ['lastpostid'];
    }
    }
    }

    如果($行<20)
    {
    為($ X = $行; $ X <21; $ X + +)
    {
    如果(is_browser(“戲”))
    {
    $預取.= <<<VAPRINT
    <div id="row{$x}"> </ DIV> \\ N
    VAPRINT;
    }
    其他
    {
    $預取.= <<<VAPRINT
    <tr id="row{$x}"> <td class="$rowcolor smallfont" align="center"> </ TD> <TD class="$rowcolor smallfont"> </ TD> < TD類 =“$ rowcolor smallfont”> </ TD> <TD class="$rowcolor smallfont" align="center"> </ TD> </ TR> \\ n
    VAPRINT;
    }
    }
    }

    / /內存節省
    取消設置($螺紋);
    $ DB -> free_result($ getthreads);

    如果($ _REQUEST ['做'] ==“XML”)
    {
    標題(“內容類型:文本/ XML”($ stylevar ['字符集']!='?';字符集=“$ stylevar ['字符集']:'));
    迴聲“<?XML版本=”1.0“編碼 =”'$ stylevar ['字符集']。'"?>'。 “\\ r \\ n”;

    如果($輸出)
    {
    迴聲“<events> $輸出 </事件>”;
    }
    其他
    {
    迴聲“<events />”;
    }

    退出;
    }

    $ navbits =陣列();
    $ navbits [$父] ='網站的間諜“;
    $ navbits = construct_navbits($ navbits);

    EVAL('$導航欄 =“'。fetch_template(”導航欄“)。'";');
    $導航欄 = process_replacement_vars($導航欄);

    EVAL('$ headinclude =“'。fetch_template(”headinclude“)。'";');
    $ headinclude = process_replacement_vars($ headinclude);

    EVAL('$頁腳 =“'。fetch_template(”頁腳“)。'";');
    $頁腳 = process_replacement_vars($頁腳);

    迴聲 <<<VAPRINT
    $ stylevar [htmldoctype]
    <html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
    <HEAD>
    $ headinclude
    <style type="text/css">
    。spyfade1格。spyfade1跨度,spyfade1 TD。spyfade1 IMG {
    不透明度:0.90;
    過濾器:α(不透明度= 90);
    - MOZ -混濁:0.90;
    }
    。spyfade2格。spyfade2跨度,spyfade2 TD。spyfade2 IMG {
    不透明度:0.80;
    過濾器:α(不透明度= 80);
    - MOZ -混濁:0.80;
    }
    。spyfade3格。spyfade3跨度,spyfade3 TD。spyfade3 IMG {
    不透明度:0.70;
    過濾器:α(不透明度= 70);
    - MOZ -混濁:0.70;
    }
    。spyfade4格。spyfade4跨度,spyfade4 TD。spyfade4 IMG {
    不透明度:0.50;
    過濾器:α(不透明度= 50);
    - MOZ -混濁:0.50;
    }
    。spyfade5格。spyfade5跨度,spyfade5 TD。spyfade5 IMG {
    不透明度:0.30;
    過濾器:α(不透明度= 30);
    - MOZ -混濁:0.30;
    }
    </ STYLE>
    <script language="javascript" src="clientscript/va_prototype.js"> </ SCRIPT>
    <script language="javascript" src="clientscript/va_effects.js"> </ SCRIPT>
    <script language="javascript" src="clientscript/va_spy.js"> </ SCRIPT>
    <script language="javascript" type="text/javascript">
    <! -
    spymax = 25;
    highestid = $ highestid;

    功能pauseSpy(){
    VAR playimg =的document.getElementById(“vaplay”);
    VAR pauseimg =的document.getElementById(“vapause”);

    playimg.src =“圖像 /雜 / play_up.gif”;
    playimg.alt =“點擊播放”;
    pauseimg.src =“圖像 /雜 / pause_down.gif”;
    pauseimg.alt =“已暫停 ...";

    暫停();
    }

    功能playSpy(){
    VAR playimg =的document.getElementById(“vaplay”);
    VAR pauseimg =的document.getElementById(“vapause”);

    playimg.src =“圖像 /雜 / play_down.gif”;
    playimg.alt =“播放...";
    pauseimg.src =“圖像 /雜 / pause_up.gif”;
    pauseimg.alt =“點擊暫停”;

    簡歷();
    }

    功能暫停(){
    玩= 0;
    }

    功能恢復(){
    玩= 1;
    }
    / / - >
    </ SCRIPT>
    <TITLE>電腦果汁 - 網站間諜 </ TITLE>
    </ HEAD>
    <body onload="spyinit();">
    $頭
    $導航欄

    <table width="90%" align="center"> <TR> <td width="50%" ALIGN="LEFT"> <input type="checkbox" id="subscribe" VALUE="1"> ;訂閱的主題只有</ TD>
    <td width="50%" align="right">
    <IMG ID =“vaplay”SRC =“圖像 /雜 / play_down.gif”的風格 =“光標ointer,“ALT =”播放“稱號 =”播放評論“的onclick =”playSpy();“/>
    <IMG ID =“vapause”SRC =“圖像 /雜 / pause_up.gif”的風格 =“光標ointer,“ALT =”暫停“標題 =”暫停評論“的onclick =”pauseSpy();“/>
    </ TD> </ TR> </ TABLE>
    <br />
    VAPRINT;

    如果(is_browser(“戲”))
    {
    $輸出 .= <<<VAPRINT
    <table class="tborder" cellpadding="0" cellspacing="0" border="0" width="100%" align="center" id="spy_table">
    <TR> <td width="20" class="tcat" nowrap="nowrap" style="height:25px;"> </ TD>
    <td class="tcat" width="225" nowrap="nowrap" style="height:25px;">會員 </ TD>
    <td class="tcat" width="80%" style="height:25px;">主題 /發表 </ TD>
    <td class="tcat" width="200" nowrap="nowrap" style="height:25px;">論壇
    </ TR>
    <TR> <td colspan="4" class="alt1">
    $預取
    <div id="row21" style="display:none;" class="spyfade1"> </ DIV>
    <div id="row22" style="display:none;" class="spyfade2"> </ DIV>
    <div id="row23" style="display:none;" class="spyfade3"> </ DIV>
    <div id="row24" style="display:none;" class="spyfade4"> </ DIV>
    <div id="row25" style="display:none;" class="spyfade5"> </ DIV>
    </ TD> </ TR>
    </ TABLE>
    VAPRINT;
    }
    其他
    {
    $輸出 .= <<<VAPRINT
    <table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="center" id="spy_table">
    <THEAD>
    <tr align="center"> <td class="thead" width="100">事件</ TD> <TD class="thead" width="100">會員 </ TD> <TD類 =“THEAD “>主題 /發表 </ TD> <TD class="thead" width="190">論壇 </ TD> </ TR>
    </ THEAD>
    <tbody class="alt1">
    $預取
    <tr id="row21" style="display: none;" class="spyfade1"> <td align="center"> </ TD> <TD> </ TD> <TD> < / TD> <td align="center"> </ TD> </ TR>
    <tr id="row22" style="display: none;" class="spyfade2"> <td align="center"> </ TD> <TD> </ TD> <TD> < / TD> <td align="center"> </ TD> </ TR>
    <tr id="row23" style="display: none;" class="spyfade3"> <td align="center"> </ TD> <TD> </ TD> <TD> < / TD> <td align="center"> </ TD> </ TR>
    <tr id="row24" style="display: none;" class="spyfade4"> <td align="center"> </ TD> <TD> </ TD> <TD> < / TD> <td align="center"> </ TD> </ TR>
    <tr id="row25" style="display: none;" class="spyfade5"> <td align="center"> </ TD> <TD> </ TD> <TD> < / TD> <td align="center"> </ TD> </ TR>
    </ TBODY>
    </ TABLE>
    VAPRINT;
    }

    $輸出 .= <<<VAPRINT
    $頁腳
    VAPRINT;

    迴聲 $輸出;
    ?>

  5. #5
    米哈爾 Podbielski(vBET職員) vBET's Avatar
    註冊日期
    2009年10月
    帖子
    3,037

    Default

    這就是問題 - 僅僅是打印輸出,所以沒有可能翻譯它在正常的方式。

    但是 - 我們有解決方案,這一點 - 而我指出你。它會處理這樣的案件之一。請告訴我們到底有哪一步你有麻煩。我們將幫助您休耕指令甚至修改它以更容易理解

    PS。
    你肯定許可證這個 mod允許公佈其代碼?如果沒有,那麼請刪除它。

  6. #6
    高級會員
    註冊日期
    2010年2月
    帖子
    210

    Default

    讓我清楚,我要你做這個工作,我可以支付。

  7. #7
    米哈爾 Podbielski(vBET職員) vBET's Avatar
    註冊日期
    2009年10月
    帖子
    3,037

    Default

    Quote 作者: Snake View Post
    讓我清楚,我要你做這個工作,我可以支付。
    當然,我們也提供有償服務,如安裝,升級。我們沒有想到的整合服務,但你可以買 升級服務 我們會為你做。

    請注意,我們將需要訪問你的FTP和管理CP能做到這一點的集成(管理員 CP - 也許不是如果實際設置都OK; FTP明確肯定的)。

標籤這個主題

發帖權限

  • 可能不會 發表新主題
  • 可能不會 發表回复
  • 可能不會 上傳附件
  • 可能不會 編輯您的文章
  •