PDA

View Full Version: Kein css oder Bilder auf ISpy Plugin Seiten



Snake
16-04-10, 17:33
Hallo Michel, eine Chance, man konnte einen Blick zu haben und sehen, ob es eine einfache Lösung für dieses;

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

Scheint das Skript nicht immer die CSS-Datei richtig und wird in falsche Platz für Bilder suchen ...

vBET
16-04-10, 17:52
Wie sehe ich diese Seite nicht übersetzt überhaupt. Wahrscheinlich global_complete Haken wird nicht verwendet, da. Sie können Integration für Mods, die nicht mit global_complete Haken versuchen.

Sehen Sie hier für die Beschreibung:

Bitte prüfen Sie zunächst nicht wirklich global_complete wird nicht verwendet, da.

Snake
20-04-10, 14:11
Ich weiß ehrlich nicht, wie man diese Anweisungen zu befolgen, ist es eine einfache mod ist, läuft der ajax Ich denke, nur eine php-Datei, keine oder Vorlagen. Hier ist der Inhalt der Datei.


<? Php
//################################################ ################################//
/ / MOD NAME: VBISpy # / /
//################################################ ################################//
/ / Beschreibung: Diese Modifikation für vBulletin fügt ein "live" scrolling # / /
/ / Update über neue Beiträge im Forum # / /
//################################################ ################################//
/ / BY: MPDEV # / /
/ / DATE: 9.26.06 # / /
/ / VERSION: 1.0.12 # / /
//################################################ ################################//

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

/ / #################### DEFINE wichtige Konstanten #######################
define ('THIS_SCRIPT', 'vaispy');

/ / ################### PRE-CACHE Vorlagen und Daten ######################
/ / Get special Phrasengruppen
$ Phrasegroups = array ();

/ / Get special Daten Vorlagen aus dem Datenspeicher
$ Specialtemplates = array ();

/ / Pre-cache-Vorlagen für alle Aktionen verwendet
$ Globaltemplates = array ();

/ / Pre-cache-Vorlagen durch spezifische Aktionen verwendet
$ Actiontemplates = array ();

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

/ / ######################### CONFIG VARS ##################### #######
/ / Die Anzahl der Tage, um die Tabelle für Scan .. (86400 steht für die Anzahl der Sekunden in 24 Stunden)
$ Daysprune = 1;

/ / Nicht-Liste diesen Foren auch wenn sie Berechtigungen (Test-Kategorien, etc) haben
$ Blockforums = "";

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

$ Forumperms = array ();
$ Lastpostid = (int) $ _REQUEST ['last'];
$ Subscribe = (int) $ _REQUEST ['subscribe'];

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'] ) OR! verify_forum_password ($ forumID, $ vbulletin-> forumcache ["$ forumID"] ['password'], false))
{
$ Blockforums .=','.$ Forum ['forumID'];
}
}
unset ($ forum);

$ Datecut = "AND thread.lastpost> =". (TimeNow - ($ daysprune * 86400));
$ Prefetch = null;

############################################################################
/ / Get Themen I In Posted haben
require_once (. DIR "/ includes / functions_forumdisplay.php ');
$ Result = $ db-> query_read ("
SELECT threadid
FROM ". Table_prefix." Gewinde als Thread
WHERE thread.forumid NICHT IN (0 $ blockforums) und
thread.visible = 1 und
thread.open <> 10 und
thread.lastpostid> $ lastpostid
$ Datecut
");

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

$ Dotthreads = fetch_dot_threads_array (implode (',', $ idsArray));
############################################################################
/ / Get Themen

/ / Nicht mehr als 20 gesetzt, wenn Sie wissen, wie die html am Ende der Seite zu ändern (und in Zeile 291)
$ Limitq = (isset ($ _REQUEST ['do']) "20": "5,20");

if ($ abonnieren == 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 Vorschau,
post.userid AS lastpuserid
FROM ". Table_prefix." Subscribethread AS subscribethread
INNER JOIN ". Table_prefix." Thread AS thread ON (subscribethread.threadid = thread.threadid)
LEFT JOIN ". Table_prefix." Deletionlog AS Deletionlog ON (thread.threadid = deletionlog.primaryid UND type = "Faden")
LEFT JOIN ". Table_prefix." Post post AS ON (post.postid = thread.lastpostid)
WHERE subscribethread.userid = ". $ Vbulletin-> userinfo ['userid']."
UND thread.forumid NOT IN (0 $ blockforums)
UND thread.visible = 1
UND subscribethread.canview = 1
UND thread.lastpostid> $ lastpostid
UND deletionlog.primaryid IS NULL
$ Datecut
ORDER BY thread.lastpost DESC LIMIT $ limitq
");
}
sonst
{
$ 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 Vorschau,
post.userid AS lastpuserid
FROM ". Table_prefix." Thread AS thread
LEFT JOIN ". Table_prefix." Deletionlog AS Deletionlog ON (thread.threadid = deletionlog.primaryid UND type = "Faden")
LEFT JOIN ". Table_prefix." Post post AS ON (post.postid = thread.lastpostid)
Soweit offene <> 10
$ Datecut
UND thread.forumid NOT IN (0 $ blockforums)
UND thread.visible = '1 '
UND thread.lastpostid> $ lastpostid
UND post.visible = 1
UND deletionlog.primaryid IS NULL
ORDER BY thread.lastpost DESC LIMIT $ limitq
");
}

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

while ($ thread = $ db-> fetch_array ($ getthreads)) {
$ Color = $ farbe == 'alt1 "? "Alt2 ':' alt1 ';

$ Thread ['title'] = htmlspecialchars_uni (fetch_censored_text (fetch_trimmed_title (unhtmlspecialchars ($ thread ['title']), 85)));
$ Thread ['date'] = vbDate ($ vbulletin-> options ['dateformat'], $ thread ['lastpost'], 1);
$ Thread ['time'] = vbDate ($ vbulletin-> options ['timeformat'], $ thread ['lastpost']);

/ / Entfernt HTML und BBCode ersten
$ Thread ['preview'] = strip_tags (strip_bbcode ($ thread ['preview'], true, true));
$ Thread ['preview'] = htmlspecialchars_uni (fetch_trimmed_title ($ thread ['preview'], 200));
$ Thread ['preview'] = fetch_censored_text (fetch_word_wrapped_string ($ thread ['preview'], 20));

$ Thread ['replycount'] = vb_number_format ($ thread ['replycount']);
$ Thread ['views'] = vb_number_format ($ thread ['views']);

$ Tforumid = $ thread ['forumID'];
$ Thread ['forum'] = htmlspecialchars_uni ($ vbulletin-> forumcache ["$ tforumid"] ['title']);

if ($ thread ['lastpostid'] == $ thread ['firstpostid'])
{
$ Etype = "Neuer Thread";
}
sonst
{
$ Etype = "Neuer Post";
}

/ / Statusicon
/ / Zeigen dot-Ordner?
if ($ vbulletin-> userinfo ['userid'] und $ vbulletin-> options ['showdots'] und $ dotthreads ["$ thread [threadid]"])
{
$ Thread ['statusicon'] .= '_dot';
$ Thread ['dot_count'] = $ dotthreads ["$ thread [threadid ]"][' count '];
$ Thread ['dot_lastpost'] = $ dotthreads ["$ thread [threadid ]"][' lastpost '];
}

/ / Show hot-Ordner?
if ($ vbulletin-> options ['usehotthreads'] und (($ thread ['replycount']> = $ vbulletin-> options ['hotnumberposts'] und $ vbulletin-> options ['hotnumberposts']> 0) oder ( $ thread ['views']> = $ vbulletin-> options ['hotnumberviews'] und $ vbulletin-> options ['hotnumberviews']> 0)))
{
$ Thread ['statusicon'] .= '_hot';
}

/ / Zeigen gesperrt Ordner?
if (! $ thread ['open'])
{
$ Thread ['statusicon'] .= '_lock';
}

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

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

Snake
20-04-10, 14:11
Hier ist der zweite Teil, stoppt vbet Forum große Beiträge.


$ Output .= <<<VAPRINT
<event>
<id> {$ thread ['lastpostid']}</ id>
<what> $ etype </ was>
<when> {$ thread ['date']} {$ thread ['time']}</, wenn>
<title> {$ thread ['title']}</ title>
<Vorschau> {$ thread ['preview']}</ Vorschau>
<poster> {$ thread ['lastposter']}</ Plakat>
<threadid> {$ thread ['threadid']}</ threadid>
<postid> {$ thread ['lastpostid']}</ postID>
<lastpost> {$ thread ['lastpost']}</ lastpost>
<userid> {$ thread ['lastpuserid']}</ userid>
<forumid> {$ thread ['forumID']}</ forumID>
<forumname> {$ thread ['forum']}</ forumname>
<views> {$ thread ['Ansichten']}</ Ansichten>
<replies> {$ thread ['replycount']}</ Antworten>
<statusicon> {$ thread ['statusicon']}</ statusicon>
</ Event>
VAPRINT;
}
sonst
{
$ Rowcolor = ($ rowcolor == "alt1" "alt2": "alt1");

$ Where = $ clip = $ poster_clip = $ Plakat = null;

if (stristr ($ etype, "Faden"))
{
$ Post_url = "showthread.php? T = {$ thread ['threadid']}";
}
sonst
{
$ Post_url = "showthread.php? P = {$ thread ['lastpostid']} # post {$ thread ['lastpostid']}";
}

if (! $ thread ['title'])
{
$ Clip = "<strong> Unbekannt </ strong>";
}
sonst
{
$ Clip = "<strong> <img src=\\"{$thread['statusicon']}\\" alt=\\"\\" /> <a target = \\" _blank \\ "href = \\" {$ post_url} \\ "> {$ thread ['title']}</ a> </ strong>";
}

if ($ thread ['preview'])
{
$ Clip .= "<br /> {$ thread ['preview']}";
}

$ Clip .= "({$ thread ['views']} Ansichten, {$ thread ['replycount']} Antworten)";

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

$ Poster_clip .= "<br /> {$ thread ['date']} {$ thread ['time']}";

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

if (is_browser ('Oper'))
{
$ Prefetch .= <<<VAPRINT
<div id="row{$row}"> <table cellpadding="3" cellspacing="0" border="0" width="100%"> <tr> <td width = "20" class = "$ rowcolor smallfont "nowrap =" nowrap "align =" center "> $ etype </ td> <td class="$rowcolor smallfont" width="225" nowrap="nowrap" align="left"> $ poster_clip </ td > <td class="$rowcolor smallfont" width="80%"> $ clip </ td> <td class="$rowcolor smallfont" width="200" nowrap="nowrap" align="center"> $, wo </ td> </ tr> </ table> </ div> \\ n
VAPRINT;
}
sonst
{
$ Prefetch .= <<<VAPRINT
<tr id="row{$row}"> <td class="$rowcolor smallfont" align="center"> <div class="smallfont"> $ etype </ div> </ td> <td class = " $ rowcolor smallfont "> <div class="smallfont"> $ poster_clip </ div> </ td> <td class="$rowcolor smallfont"> <div class="smallfont"> $ clip </ div> </ td > <td class="$rowcolor smallfont" align="center"> <div class="smallfont"> $ where </ div> </ td> </ tr> \\ n
VAPRINT;
}

$ Row + +;
if ($ thread ['lastpostid']> $ HighestID)
{
$ HighestID = $ thread ['lastpostid'];
}
}
}

if ($ row <20)
{
for ($ x = $ row; $ x <21; $ x + +)
{
if (is_browser ('Oper'))
{
$ Prefetch .= <<<VAPRINT
<div id="row{$x}"> </ div> \\ n
VAPRINT;
}
sonst
{
$ Prefetch .= <<<VAPRINT
<tr id="row{$x}"> <td class="$rowcolor smallfont" align="center"> </ td> <td class="$rowcolor smallfont"> </ td> < td class = "$ rowcolor smallfont"> </ td> <td class="$rowcolor smallfont" align="center"> </ td> </ tr> \\ n
VAPRINT;
}
}
}

/ / Speicher sparen
unset ($ thread);
$ Db-> free_result ($ getthreads);

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

if ($ output)
{
echo "<events> $ output </ Veranstaltungen>";
}
sonst
{
echo "<events />";
}

exit;
}

$ Navbits = array ();
$ Navbits [$ parent] = 'Site Spy';
$ Navbits = construct_navbits ($ navbits);

eval ('$ navbar = "'. fetch_template (" Navigationsleiste ").'";');
$ 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);

echo <<<VAPRINT
$ Stylevar [htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
$ Headinclude
<style type="text/css">
. Spyfade1 div,. Spyfade1 span,,. Spyfade1 td,. Spyfade1 img {
Opazität: 0,90;
Filter: alpha (opacity = 90);
-Moz-opacity: 0.90;
}
. Spyfade2 div,. Spyfade2 span,. Spyfade2 td,. Spyfade2 img {
Opazität: 0,80;
Filter: alpha (opacity = 80);
-Moz-opacity: 0.80;
}
. Spyfade3 div,. Spyfade3 span,. Spyfade3 td,. Spyfade3 img {
Opazität: 0,70;
Filter: alpha (opacity = 70);
-Moz-opacity: 0,70;
}
. Spyfade4 div,. Spyfade4 span,. Spyfade4 td,. Spyfade4 img {
Opazität: 0,50;
Filter: alpha (opacity = 50);
-Moz-opacity: 0.50;
}
. Spyfade5 div,. Spyfade5 span,. Spyfade5 td,. Spyfade5 img {
Opazität: 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> Computer-Juice - Site Spy </ title>
</ Head>
<body onload="spyinit();">
$ Header
$ Navbar

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

if (is_browser ('Oper'))
{
$ Output .= <<<VAPRINT
<table class="tborder" cellpadding="0" cellspacing="0" border="0" width="100%" align="center" id="spy_table">
<td width="20" class="tcat" nowrap="nowrap" style="height:25px;"> </ td>
<td width="225" class="tcat" nowrap="nowrap" style="height:25px;"> Mitglied </ td>
<td class="tcat" width="80%" style="height:25px;"> Thema / Post </ td>
<td width="200" class="tcat" nowrap="nowrap" style="height:25px;"> Forum
</ Tr>
<td colspan="4" class="alt1">
$ Prefetch
<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;
}
sonst
{
$ Output .= <<<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"> Ereignis </ td> <td class="thead" width="100"> Mitglied </ td> <td class = "thead "> Thread / Post </ td> <td class="thead" width="190"> Forum </ td> </ tr>
</ Thead>
<tbody class="alt1">
$ Prefetch
<tr id="row21" style="display: none;" class="spyfade1"> <td align="center"> </ td> </ td> < / td> <td align="center"> </ td> </ tr>
<tr id="row22" style="display: none;" class="spyfade2"> <td align="center"> </ td> </ td> < / td> <td align="center"> </ td> </ tr>
<tr id="row23" style="display: none;" class="spyfade3"> <td align="center"> </ td> </ td> < / td> <td align="center"> </ td> </ tr>
<tr id="row24" style="display: none;" class="spyfade4"> <td align="center"> </ td> </ td> < / td> <td align="center"> </ td> </ tr>
<tr id="row25" style="display: none;" class="spyfade5"> <td align="center"> </ td> </ td> < / td> <td align="center"> </ td> </ tr>
</ Tbody>
</ Table>
VAPRINT;
}

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

echo $ output;
?>

vBET
21-04-10, 01:59
Und das ist das Problem - Ausgang ist einfach gedruckt, so dass es keine Möglichkeit gibt, um es in gewohnter Weise zu übersetzen.

ABER - wir haben für diese - die eine, die ich wies sie. Es übernimmt Fällen wie diesem. Bitte teilen Sie uns genau mit dem Schritt, den Sie haben Probleme. Wir helfen Ihnen Brache Anweisungen oder auch ändern, um besser verständlich:)

PS.
Sind Sie sicher, dass Lizenz für diese Mod zu seinen Code veröffentlichen können? Wenn nicht, dann entfernen Sie diese bitte.

Snake
22-04-10, 09:46
Lassen Sie mich klarstellen, i Sie diese Arbeit machen wollen, kann ich bezahlen.

vBET
22-04-10, 14:23
Lassen Sie mich klarstellen, i Sie diese Arbeit machen wollen, kann ich bezahlen.

Natürlich haben wir auch kostenpflichtige Dienste wie Installation anbieten, zu aktualisieren. Wir haben nicht über Integration Service halten, aber Sie können Upgrade-Service (http://www.vbenterprisetranslator.com/upgrade-service.php) zu kaufen, und wir werden es für Sie tun.

Bitte beachten Sie, dass wir Zugang zu Ihrem FTP und Admin CP in der Lage sein, diese Integration (Admin CP - vielleicht auch nicht, wenn tatsächliche Einstellungen sind OK, FTP definitiv ja) tun müssen.

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