PDA

View Full Version: Tidak ada css atau gambar pada halaman Plugin ispy



Snake
16-04-10, 17:33
Hi Michel, kesempatan Anda bisa melihat dan melihat apakah ada memperbaikinya mudah untuk ini;

Komputer Juice - Spy Situs (http://www.computer-juice.com/forums/pt/vaispy.php)

Sepertinya script tidak mendapatkan file css benar dan mencari di tempat yang salah untuk gambar ...

vBET
16-04-10, 17:52
Seperti yang saya lihat halaman ini tidak diterjemahkan sama sekali. Kait Kemungkinan besar global_complete tidak digunakan di sana. Anda dapat mencoba integrasi untuk mods yang tidak menggunakan kail global_complete.

Lihat di sini untuk deskripsi:

Silakan cek pertama tidak benar-benar global_complete tidak digunakan di sana.

Snake
20-04-10, 14:11
Sejujurnya aku tidak tahu bagaimana mengikuti instruksi tersebut, maka mod sederhana, berjalan dari ajax saya pikir, hanya satu php, tidak ada produk atau template. Berikut adalah isi file.


<? Php
//################################################ ################################//
/ / MOD NAMA: VBISpy # / /
//################################################ ################################//
/ / KETERANGAN: ini modifikasi untuk vBulletin menambahkan "hidup" scrolling # / /
/ / Update tulisan baru pada forum # / /
//################################################ ################################//
/ / OLEH: MPDev # / /
/ / TANGGAL: 9.26.06 # / /
/ / VERSION: 1.0.12 # / /
//################################################ ################################//

/ / SET ####################### ###################### PHP LINGKUNGAN #####
error_reporting (E_ALL & ~ E_NOTICE);

/ / #################### DEFINE KONSTANTA PENTING #######################
define ('THIS_SCRIPT', 'vaispy');

/ / ################### PRA-Cache TEMPLATES DAN DATA ######################
/ / Mendapatkan kelompok frasa khusus
$ Phrasegroups = array ();

/ / Mendapatkan template khusus data dari Datastore yang
$ Specialtemplates = array ();

/ / Pra-cache template yang digunakan oleh semua tindakan
$ Globaltemplates = array ();

/ / Pra-cache template yang digunakan oleh tindakan khusus
$ Actiontemplates = array ();

/ / ######################### MEMERLUKAN BACK-END ################### #########
require_once ('/ global.php.');

/ / Vars ##################### ######################### CONFIG #######
/ / Jumlah hari untuk memindai meja untuk .. (86400 mewakili jumlah detik dalam 24 jam)
$ Daysprune = 1;

/ / Jangan daftar forum ini bahkan jika mereka memiliki izin (kategori tes, dll)
$ Blockforums = "";

/ / Vars ##################### ######################### CONFIG #######

$ Forumperms = array ();
$ Lastpostid = (int) $ _REQUEST ['last'];
$ Berlangganan = (int) $ _REQUEST ['berlangganan'];

foreach ($ vBulletin-> forumcache AS $ forum) {
$ Forumid = $ forum ['forumid'];
$ Forumperms = & $ vBulletin-> userInfo ['forumpermissions']["$ forumid "];

if (! isset ($ vBulletin-> forumcache ["$ forumid"]) OR! ($ forumperms & $ vBulletin-> bf_ugp_forumpermissions ['canview']) OR! ($ forumperms & $ vBulletin-> bf_ugp_forumpermissions ['canviewothers'] ) ATAU verify_forum_password ($ forumid, $ vBulletin-> forumcache ["$ forumid"] ['password'], false)!)
{
$ Blockforums .=','.$ forum ['forumid'];
}
}
unset ($ forum);

$ Datecut = "DAN thread.lastpost> =". (TIMENOW - ($ daysprune * 86400));
$ Prefetched = null;

############################################################################
/ / Dapatkan Threads Aku Posted In
require_once (. DIR '/ includes / functions_forumdisplay.php');
$ Hasil = $ db-> query_read ("
PILIH threadid
DARI benang ". TABLE_PREFIX." Sebagai benang
MANA thread.forumid TIDAK DI (0 $ blockforums) dan
thread.visible = 1 dan
thread.open <> 10 dan
thread.lastpostid> $ lastpostid
$ Datecut
");

$ IdsArray = array ();
sementara ($ id = $ db-> fetch_array ($ hasil))
{
$ IdsArray [] = $ id ['threadid'];
}

$ Dotthreads = fetch_dot_threads_array (meledak (',', $ idsArray));
############################################################################
/ / Dapatkan Threads

/ / Jangan diatur ke lebih dari 20 kecuali jika Anda tahu bagaimana memodifikasi html di bagian bawah halaman (dan pada baris 291)
$ Limitq = (isset ($ _REQUEST ['melakukan']) "20":? "5,20");

if ($ berlangganan == 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 SEBAGAI pratinjau,
post.userid SEBAGAI lastpuserid
DARI ". TABLE_PREFIX." Subscribethread SEBAGAI subscribethread
INNER JOIN "TABLE_PREFIX.." Benang benang AS ON (subscribethread.threadid = thread.threadid)
KIRI BERGABUNG "TABLE_PREFIX.." Deletionlog SEBAGAI Deletionlog ON (thread.threadid = deletionlog.primaryid DAN type = 'benang')
KIRI BERGABUNG SEBAGAI posting posting ON (post.postid = thread.lastpostid) "TABLE_PREFIX.."
MANA = subscribethread.userid "$ vBulletin-> userInfo ['userid'].."
DAN thread.forumid TIDAK DI (0 $ blockforums)
DAN thread.visible = 1
DAN subscribethread.canview = 1
DAN thread.lastpostid> $ lastpostid
DAN deletionlog.primaryid IS NULL
$ Datecut
ORDER BY DESC LIMIT $ thread.lastpost limitq
");
}
lain
{
$ 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 SEBAGAI pratinjau,
post.userid SEBAGAI lastpuserid
DARI benang ". TABLE_PREFIX." SEBAGAI benang
KIRI BERGABUNG "TABLE_PREFIX.." Deletionlog SEBAGAI Deletionlog ON (thread.threadid = deletionlog.primaryid DAN type = 'benang')
KIRI BERGABUNG SEBAGAI posting posting ON (post.postid = thread.lastpostid) "TABLE_PREFIX.."
MANA terbuka <> 10
$ Datecut
DAN thread.forumid TIDAK DI (0 $ blockforums)
DAN thread.visible = '1 '
DAN thread.lastpostid> $ lastpostid
DAN post.visible = 1
DAN deletionlog.primaryid IS NULL
ORDER BY DESC LIMIT $ thread.lastpost limitq
");
}

$ Row = $ highestid = 1;
$ Rowcolor = "alt2";

sementara ($ thread = $ db-> fetch_array ($ getthreads)) {
$ Warna = $ warna == 'alt1'? 'Alt2': 'alt1';

$ Benang ['title'] = htmlspecialchars_uni (fetch_censored_text (fetch_trimmed_title (unhtmlspecialchars ($ benang ['judul']), 85)));
$ Benang ['tanggal'] = vbdate ($ vBulletin-> pilihan benang ['DateFormat'], $ ['lastpost'], 1);
$ Benang ['waktu'] = vbdate ($ vBulletin-> options ['timeformat'], $ benang ['lastpost']);

/ / Dapatkan menyingkirkan html dan bbcode pertama
$ Benang ['pratayang'] = strip_tags (strip_bbcode thread ($ ['pratinjau'], benar, benar));
$ Benang ['pratayang'] = htmlspecialchars_uni (fetch_trimmed_title ($ benang ['pratinjau'], 200));
$ Benang ['pratayang'] = fetch_censored_text (fetch_word_wrapped_string ($ benang ['pratinjau'], 20));

$ Benang ['replycount'] = vb_number_format (benang $ ['replycount']);
$ Benang ['views'] = vb_number_format ($ benang ['views']);

$ Tforumid = $ benang ['forumid'];
$ Benang ['Forum'] = htmlspecialchars_uni ($ vBulletin-> forumcache ["$ tforumid"] ['title']);

if ($ benang ['lastpostid'] == $ benang ['firstpostid'])
{
$ Etype = "Topik Baru";
}
lain
{
$ Etype = "New Post";
}

/ / Statusicon
/ / Menampilkan folder dot?
if (vBulletin-> userInfo ['userid'] dan $ vBulletin-> options ['showdots'] DAN $ dotthreads ["$ benang [threadid]"] $)
{
$ Benang ['statusicon'] .= '_dot';
Benang benang $ ['dot_count'] = $ dotthreads ["$ [threadid ]"][' count '];
Benang benang $ ['dot_lastpost'] = $ dotthreads ["$ [threadid ]"][' lastpost '];
}

/ / Menampilkan folder panas?
if ($ vBulletin-> options ['usehotthreads'] DAN (($ benang ['replycount']> = $ vBulletin-> options ['hotnumberposts'] DAN $ vBulletin-> options ['hotnumberposts']> 0) ATAU ( $ benang ['views']> = $ vBulletin-> options ['hotnumberviews'] DAN $ vBulletin-> options ['hotnumberviews']> 0)))
{
$ Benang ['statusicon'] .= '_hot';
}

/ / Menampilkan folder yang terkunci?
if ($ benang ['terbuka']!)
{
$ Benang ['statusicon'] .= '_lock';
}

$ Benang ['statusicon'] = "blank.gif";

if ($ _REQUEST ['melakukan'] == "xml")
{

Snake
20-04-10, 14:11
Berikut adalah bagian kedua, forum vBET berhenti posting besar.


$ Output .= <<<VAPRINT
<event>
<id> {$ benang ['lastpostid']}</ id>
<what> $ etype </ apa>
<when> {$ benang ['tanggal']} {$ benang ['waktu']}</ ketika>
<title> {$ benang judul ['']}</ title>
<preview> {$ benang ['pratinjau pratinjau']}</>
<poster> {$ benang ['lastposter poster']}</>
<threadid> {$ benang ['threadid']}</ threadid>
<postid> {$ benang ['lastpostid']}</ postID>
<lastpost> {$ benang lastpost lastpost']}</ ['>
<userid> {$ benang ['userid lastpuserid']}</>
<forumid> {$ benang ['forumid']}</ forumid>
<forumname> {$ benang ['Forum']}</ forumname>
<views> {$ benang ['dilihat dilihat']}</>
<replies> {$ benang ['replycount balasan']}</>
<statusicon> {$ benang ['statusicon']}</ statusicon>
</ Acara>
VAPRINT;
}
lain
{
$ Rowcolor = ($ rowcolor == "alt1" "alt2":? "Alt1");

$ Mana = $ klip = $ poster_clip = $ pengirim = null;

if (stristr ($ etype, "thread"))
{
$ Post_url = "showthread.php? T = {$ benang ['threadid']}";
}
lain
{
$ Post_url = "p = {showthread.php $ benang ['lastpostid']}? # Post {$ benang ['lastpostid']}";
}

if (! $ benang ['judul'])
{
$ Klip = "<strong> tidak diketahui </ strong>";
}
lain
{
$ Klip = "<strong> <img src=\\"{$thread['statusicon']}\\" alt=\\"\\" /> <target = \\" _blank \\ "href = \\" {$ post_url} \\ "> {$ benang ['judul']}</ a> </ strong>";
}

if ($ benang ['pratayang'])
{
$ Klip .= "<br /> {$ benang ['pratinjau']}";
}

$ Klip .= "({$ benang ['views']} pandangan, {$ benang ['replycount']} balasan)";

if ($ benang ['lastpuserid'])
{
$ Poster_clip = "<a target=\\"_blank\\" href=\\"member.php?u={$thread['lastpuserid']}\\"> {$ benang ['lastposter']}</ a>";
}

$ Poster_clip .= "waktu benang /> {$ benang ['tanggal']} {$ <br ['']}";

if ($ benang ['Forum'])
{
$ Mana .= "<a <strong> target=\\"_blank\\" href=\\"forumdisplay.php?f={$thread['forumid']}\\"> {$ benang']}</ forum [' a>> </ kuat ";
}
lain
{
$ Mana = "";
}

if (is_browser ('opera'))
{
$ Prefetched .= <<<VAPRINT
<div id="row{$row}"> <table width="100%"> cellpadding="3" cellspacing="0" border="0" <tr> <td width = "20" class = "$ rowcolor smallfont "nowrap =" nowrap "align =" center "> $ etype </ td> <td width="225" class="$rowcolor smallfont" nowrap="nowrap" align="left"> $ poster_clip </ td > <td width="80%"> class="$rowcolor smallfont" $ klip </ td> <td width="200" class="$rowcolor smallfont" nowrap="nowrap" align="justify"> $ mana </ td> </ tr> </ table> </ div> \\ n
VAPRINT;
}
lain
{
$ Prefetched .= <<<VAPRINT
<tr id="row{$row}"> <td class="$rowcolor smallfont" <div align="justify"> class="smallfont"> $ etype </ div> </ td> <td class = " $ rowcolor smallfont "> <div class="smallfont"> $ poster_clip </ div> </ td> <td class="$rowcolor smallfont"> <div class="smallfont"> $ klip </ div> </ td > <td class="$rowcolor smallfont" <div align="justify"> class="smallfont"> $ di mana </ div> </ td> </ tr> \\ n
VAPRINT;
}

$ Baris + +;
if ($ benang ['lastpostid']> $ highestid)
{
$ Highestid = $ benang ['lastpostid'];
}
}
}

if ($ baris <20)
{
for ($ x = $ baris; $ x <21; $ x + +)
{
if (is_browser ('opera'))
{
$ Prefetched .= <<<VAPRINT
<div id="row{$x}"> </ div> \\ n
VAPRINT;
}
lain
{
$ Prefetched .= <<<VAPRINT
<tr id="row{$x}"> <td class="$rowcolor smallfont" align="justify"> </ td> <td class="$rowcolor smallfont"> </ td> < td class = "$ rowcolor smallfont"> </ td> <td class="$rowcolor smallfont" align="justify"> </ td> </ tr> \\ n
VAPRINT;
}
}
}

/ / Menyimpan memori
unset ($ benang);
$ Db-> free_result ($ getthreads);

if ($ _REQUEST ['melakukan'] == "xml")
{
header ('Content-Type: text / xml' ($ stylevar ['charset'] ='''; charset =' $ stylevar ['charset']:.?!.''));
echo '<xml version = "1.0" encoding = "?" $ stylevar. [' charset '].'"?>'. "\\ R \\ n";

if ($ output)
{
echo "$ output <events> </ peristiwa>";
}
lain
{
echo "<events />";
}

exit;
}

$ Navbits = array ();
$ Navbits [$ induk] = 'Situs Spy';
$ Navbits = construct_navbits ($ navbits);

eval ('$ navbar = "' fetch_template ('navbar')..'";');
$ Navbar = process_replacement_vars ($ navbar);

eval ('$ headinclude = "' fetch_template ('headinclude')..'";');
$ Headinclude = process_replacement_vars ($ headinclude);

eval ('$ footer = "' fetch_template ('footer')..'";');
$ Footer = process_replacement_vars ($ footer);

gema <<<VAPRINT
$ Stylevar [htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
$ Headinclude
<style type="text/css">
Spyfade1 div., Spyfade1 span.,, Td spyfade1., Spyfade1 img. {
opacity: 0.90;
filter: alpha (opacity = 90);
-Moz-opacity: 0.90;
}
Spyfade2 div., Rentang spyfade2., Td spyfade2., Spyfade2 img. {
opacity: 0.80;
filter: alpha (opacity = 80);
-Moz-opacity: 0.80;
}
Spyfade3 div., Spyfade3 span., Spyfade3 td., Spyfade3 img. {
opacity: 0.70;
filter: alpha (opacity = 70);
-Moz-opacity: 0.70;
}
Spyfade4 div., Spyfade4 span., Spyfade4 td., Spyfade4 img. {
opacity: 0.50;
filter: alpha (opacity = 50);
-Moz-opacity: 0.50;
}
Spyfade5 div., Spyfade5 span., Spyfade5 td., Spyfade5 img. {
opacity: 0.30;
filter: alpha (opacity = 30);
-Moz-opacity: 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">

</ Script>
<title> Juice Komputer - Situs Spy </ title>
</ Head>
<body onload="spyinit();">
$ Judul
$ Navbar

<table width="90%" align="center"> <tr> width="50%" align="left"> <input type="checkbox" id="subscribe" value="1"> ; benang berlangganan hanya </ td>
<td width="50%" align="right">
<img id="vaplay" src="images/misc/play_down.gif" style="cursor:pointer;" alt="Play" title="Play Comments" onclick="playSpy();" />
<img id="vapause" src="images/misc/pause_up.gif" style="cursor:pointer;" alt="Pause" title="Pause Comments" onclick="pauseSpy();" />
</ Td> </ tr> </ table>
<br />
VAPRINT;

if (is_browser ('opera'))
{
$ Output .= <<<VAPRINT
<table class="tborder" cellpadding="0" cellspacing="0" align="center" border="0" width="100%" id="spy_table">
<tr> <td width="20" class="tcat" nowrap="nowrap" style="height:25px;"> </ td>
<td width="225" class="tcat" nowrap="nowrap" style="height:25px;"> Anggota </ td>
<td width="80%" class="tcat" style="height:25px;"> Topik / Posting </ td>
<td width="200" class="tcat" nowrap="nowrap" style="height:25px;"> Forum
</ Tr>
<tr> <td colspan="4" class="alt1">
Prefetched $
<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;
}
lain
{
$ Output .= <<<VAPRINT
<table class="tborder" cellpadding="6" cellspacing="1" align="center" border="0" width="100%" id="spy_table">
<thead>
<tr align="center"> <td width="100"> class="thead" Acara </ td> <td width="100"> class="thead" Anggota </ td> <td class = "thead "> Thread / Posting </ td> <td width="190"> class="thead" Forum </ td> </ tr>
</ Thead>
<tbody class="alt1">
Prefetched $
<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;
}

$ Output .= <<<VAPRINT
Footer $
VAPRINT;

echo $ output;
?>

vBET
21-04-10, 01:59
Dan ini adalah masalah - output hanya dicetak, sehingga tidak ada kemungkinan untuk menerjemahkannya dalam cara normal.

NAMUN - kami punya solusi untuk ini - satu yang saya menunjuk Anda. Ini akan menangani kasus-kasus seperti ini. Beritahukan kami persis dengan yang langkah Anda memiliki masalah. Kami akan membantu Anda instruksi bera atau bahkan memodifikasi untuk lebih dimengerti:)

PS.
Apakah Anda yakin bahwa lisensi dari mod ini memungkinkan untuk mempublikasikan kode? Jika tidak maka silakan menghapusnya.

Snake
22-04-10, 09:46
Biarkan aku menjadi jelas, saya ingin Anda untuk membuat karya ini, saya bisa membayar.

vBET
22-04-10, 14:23
Biarkan aku menjadi jelas, saya ingin Anda untuk membuat karya ini, saya bisa membayar.

Tentu saja kami juga menawarkan layanan berbayar seperti instalasi, upgrade. Kami tidak berpikir tentang layanan integrasi, tetapi Anda dapat membeli upgrade layanan (http://www.vbenterprisetranslator.com/upgrade-service.php) dan kami akan melakukannya untuk Anda.

Harap dicatat bahwa kami akan memerlukan akses ke CP Anda FTP dan Admin dapat melakukan hal ini integrasi (CP Admin - mungkin tidak jika pengaturan yang sebenarnya adalah OK; FTP definitif ya).

Automatic Translations (Powered by Google, Microsoft®, Yandex, SDL Language Cloud, IBM Watson and Apertium):
AfrikaansAlbanianArabicBelarusianBulgarianCatalanChineseCroatianCzechDanishDutchEnglishEstonianFilipinoFinnishFrenchGalicianGermanGreekHaitian CreoleHebrewHindiHungarianIcelandicIndonesianIrishItalianJapaneseKoreanLatvianLithuanianMacedonianMalayMalteseNorwegianPersianPolishPortugueseRomanianRussianSerbianSlovakSlovenianSpanishSwahiliSwedishTaiwaneseThaiTurkishUkrainianVietnameseWelshYiddish
Translations made by vBET 4.10.1