Importante: Esta página está utilizando galletas (cookies). Utilizando este sitio web sin apagar galletas en navegador, significa que estás de acuerdo para utilizarlo.
Comprar ahora! Características Descargas

Gana con nosotros!

Si te gustaría empezar ganando dinero con vBET unir a Afiliar Programa.
Resultados 1 a 7 de 7

Tema: No css o imágenes en las páginas plugin de ISPY

  1. #1
    Miembro Senior
    Fecha de Ingreso
    02 2010
    Mensajes
    210

    Default No css o imágenes en las páginas plugin de ISPY

    Hola Michel, alguna posibilidad de que pudiera echar un vistazo y ver si hay una solución fácil para esto;

    Jugo de equipo - Spy sitio

    Parece que el guión no está recibiendo el archivo CSS correctamente y está buscando en el lugar equivocado de las imágenes ...

  2. #2
    Michał Podbielski (VBET Personal) vBET's Avatar
    Fecha de Ingreso
    10 2009
    Mensajes
    3,037

    Default

    Como veo que esta página no se ha traducido en absoluto. Lo más probable es global_complete gancho no se usa allí. Usted puede tratar de la integración de los mods que no son de usar el gancho global_complete.

    Vea aquí la descripción: http://www.vbenterprisetranslator.co....html # post1795

    Por favor, compruebe primero que hace realmente global_complete no se usa allí.

  3. #3
    Miembro Senior
    Fecha de Ingreso
    02 2010
    Mensajes
    210

    Default

    Sinceramente, no sé cómo seguir las instrucciones, es un mod sencillo, funciona de ajax, creo, un solo archivo php, ningún producto o plantillas. Aquí está el contenido del archivo.

    <? Php
    //################################################ ################################//
    / / MOD NOMBRE: VBISpy # / /
    //################################################ ################################//
    / / Descripción: Esta modificación para vBulletin añade un "en vivo" de desplazamiento # / /
    / / Actualización de los nuevos mensajes en el foro # / /
    //################################################ ################################//
    / / POR: MPDev # / /
    / / Fecha: 09/26/06 # / /
    / / Versión: 1.0.12 # / /
    //################################################ ################################//

    / / ####################### JUEGO DE MEDIO AMBIENTE PHP ###################### #####
    error_reporting (E_ALL & ~ E_NOTICE);

    / / #################### Definir constantes IMPORTANTE #######################
    define ('THIS_SCRIPT', 'vaispy');

    / / ################### CACHÉ DE PRE-Y PLANTILLAS ###################### DATOS
    / / Obtener los grupos especiales de la frase
    $ Phrasegroups = array ();

    / / Obtener las plantillas de datos especiales del almacén de datos
    $ Specialtemplates = array ();

    / / Pre-caché de las plantillas utilizadas por todas las acciones
    $ Globaltemplates = array ();

    / / Pre-caché de las plantillas utilizadas por las acciones específicas
    $ Actiontemplates = array ();

    / / ######################### REQUERIR de fondo ################### #########
    require_once ('/ global.php.');

    / / CONFIG VARS ######################### ##################### #######
    / / El número de días para explorar la tabla de .. (86400 representa el número de segundos en 24 horas)
    $ Daysprune = 1;

    / / No lista de estos foros, incluso si tienen permisos (categorías de pruebas, etc)
    $ Blockforums = "";

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

    $ Forumperms = array ();
    $ Lastpostid = (int) $ _REQUEST ['última'];
    $ Suscribir = (int) $ _REQUEST ['suscribirse'];

    foreach ($ vbulletin-> forumcache AS $ foro) {
    $ ForumID = $ foro ['ForumID'];
    $ Forumperms = & $ vbulletin-> userinfo ['forumpermissions']["$ ForumID "];

    if (! isset ($ vbulletin-> forumcache ["$ ForumID"]) o! ($ forumperms y $ vbulletin-> bf_ugp_forumpermissions ['canview']) o! ($ forumperms y $ vbulletin-> bf_ugp_forumpermissions ['canviewothers'] ) O! verify_forum_password ($ ForumID, $ vbulletin-> forumcache ["$ ForumID"] ['password'], false))
    {
    $ Blockforums .=','.$ foro ['ForumID'];
    }
    }
    unset ($ foro);

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

    ############################################################################
    / / Obtener Temas acabo de publicar en
    require_once (. DIR "/ includes / functions_forumdisplay.php ');
    $ Result = $ db-> query_read ("
    SELECCIONAR threadid
    FROM ". Table_prefix." Hilo de rosca
    DONDE NO thread.forumid EN (0 $ blockforums) y
    thread.visible = 1 y
    thread.open <> 10 y
    thread.lastpostid> $ lastpostid
    $ Datecut
    ");

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

    $ Dotthreads = fetch_dot_threads_array (implosión (',', $ idsArray));
    ############################################################################
    / / Obtener Temas

    / / No coloque a más de 20 a menos que sepa cómo modificar el html en la parte inferior de la página (y en la línea 291)
    $ Limitq = (isset ($ _REQUEST ['do']) "20": "5,20");

    if ($ suscribirse == 1)
    {
    $ Getthreads = $ db-> query_read ("
    SELECCIONAR subscribethread.subscribethreadid,
    thread.forumid,
    thread.firstpostid,
    thread.lastpost,
    thread.lastposter,
    thread.lastpostid,
    thread.replycount,
    thread.threadid,
    thread.title,
    thread.open,
    thread.views,
    post.pagetext como una vista previa,
    post.userid COMO lastpuserid
    FROM ". Table_prefix". Subscribethread COMO subscribethread
    INNER JOIN ". Table_prefix." Hilo como hilo ON (subscribethread.threadid thread.threadid =)
    LEFT JOIN ". Table_prefix". Deletionlog COMO deletionlog ON (thread.threadid = deletionlog.primaryid Y type = 'hilo')
    LEFT JOIN ". Table_prefix." Post como post ON (post.postid thread.lastpostid =)
    DONDE subscribethread.userid = ". $ Vbulletin-> userinfo ['id_usuario']."
    Y NO EN thread.forumid (0 $ blockforums)
    Y thread.visible = 1
    Y subscribethread.canview = 1
    Y thread.lastpostid> $ lastpostid
    Y deletionlog.primaryid IS NULL
    $ Datecut
    ORDER BY DESC LIMIT $ thread.lastpost limitq
    ");
    }
    más
    {
    $ Getthreads = $ db-> query_read ("
    SELECCIONAR thread.forumid,
    thread.firstpostid,
    thread.lastpost,
    thread.lastposter,
    thread.lastpostid,
    thread.replycount,
    thread.threadid,
    thread.title,
    thread.open,
    thread.views,
    post.pagetext como una vista previa,
    post.userid COMO lastpuserid
    FROM ". Table_prefix." Hilo como hilo
    LEFT JOIN ". Table_prefix". Deletionlog COMO deletionlog ON (thread.threadid = deletionlog.primaryid Y type = 'hilo')
    LEFT JOIN ". Table_prefix." Post como post ON (post.postid thread.lastpostid =)
    DONDE abierta <> 10
    $ Datecut
    Y NO EN thread.forumid (0 $ blockforums)
    Y thread.visible = '1 '
    Y thread.lastpostid> $ lastpostid
    Y post.visible = 1
    Y deletionlog.primaryid IS NULL
    ORDER BY DESC LIMIT $ thread.lastpost limitq
    ");
    }

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

    while ($ thread = $ db-> fetch_array ($ getthreads)) {
    $ Color = $ color == "Alt1? "ALT2 ':' Alt1;

    $ Hilo ['title'] = htmlspecialchars_uni (fetch_censored_text (fetch_trimmed_title (unhtmlspecialchars ($ thread ['title']), 85)));
    $ Hilo ['fecha'] = vbDate ($ vbulletin-> hilo options ['DATEFORMAT'], $ ['lastpost'], 1);
    $ Hilo ['tiempo'] = vbDate ($ vbulletin-> options ['timeformat'], $ hilo ['lastpost']);

    / / Se puede olvidarse de HTML y el primer bbcode
    $ Hilo ['vista previa'] = strip_tags (hilo strip_bbcode ($ ['vista previa'], true, true));
    $ Hilo ['vista previa'] = htmlspecialchars_uni (fetch_trimmed_title ($ thread ['vista previa'], 200));
    $ Hilo ['vista previa'] = fetch_censored_text (fetch_word_wrapped_string ($ thread ['vista previa'], 20));

    $ Hilo ['replycount'] = ($ thread ['replycount']) vb_number_format;
    $ Hilo ['visitas'] = vb_number_format ($ thread ['visitas']);

    $ = $ Tforumid hilo ['ForumID'];
    $ Hilo ['foro'] = htmlspecialchars_uni ($ vbulletin-> forumcache ["$ tforumid"] ['title']);

    if ($ thread ['lastpostid'] == $ hilo ['firstpostid'])
    {
    $ Etype = "Nuevo Tema";
    }
    más
    {
    $ Etype = "Nuevo mensaje";
    }

    / / Statusicon
    / / Carpeta de puntos show?
    if ($ vbulletin-> userinfo ['id_usuario'] y $ vbulletin-> options ['showdots'] y $ dotthreads ["$ hilo [threadid]"])
    {
    $ Hilo ['statusicon'] .= '_dot;
    Hilo de rosca $ ['dot_count'] = $ dotthreads ["$ [threadid ]"][' count '];
    Hilo de rosca $ ['dot_lastpost'] = $ dotthreads ["$ [threadid ]"][' lastpost '];
    }

    / / Mostrar la carpeta caliente?
    if ($ vbulletin-> options ['usehotthreads'] y (($ thread ['replycount']> = $ vbulletin-> options ['hotnumberposts'] y $ vbulletin-> options ['hotnumberposts']> 0) O ( $ hilo ['visitas']> = $ vbulletin-> options ['hotnumberviews'] y $ vbulletin-> options ['hotnumberviews']> 0)))
    {
    $ Hilo ['statusicon'] .= '_hot;
    }

    / / Mostrar carpeta bloqueada?
    if ($ thread ['abrir'])
    {
    $ Hilo ['statusicon'] .= '_lock;
    }

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

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

  4. #4
    Miembro Senior
    Fecha de Ingreso
    02 2010
    Mensajes
    210

    Default

    Aquí está la segunda parte, el foro VBET deja mensajes de gran tamaño.

    $ Salida .= <<<VAPRINT
    <event>
    <id> {$ hilo ['lastpostid']}</ id>
    <qué> $ etype </ lo>
    <when> {$ hilo ['fecha']} {$ hilo ['tiempo']}</ cuando>
    <title> {$ hilo ['title título']}</>
    <preview> {$ hilo ['vista previa vista previa']}</>
    <poster> {$ hilo ['cartel lastposter']}</>
    <threadid> {$ hilo ['threadid']}</ threadid>
    <postid> {$ hilo ['lastpostid']}</ postid>
    <lastpost> {$ hilo ['lastpost']}</ lastpost>
    <ID_usuario> {$ hilo ['userid lastpuserid']}</>
    <forumid> {$ hilo ['ForumID']}</ ForumID>
    <forumname> {$ hilo ['foro']}</ forumname>
    <views> {$ hilo ['Vistas al']}</>
    <replies> {$ hilo ['respuestas']}</ replycount>
    <statusicon> {$ hilo ['statusicon']}</ statusicon>
    </ Event>
    VAPRINT;
    }
    más
    {
    $ Rowcolor = ($ rowcolor == "Alt1" "ALT2": "Alt1");

    $ Donde = $ $ = clip de poster_clip = $ cartel = null;

    if (stristr ($ etype, "hilo"))
    {
    $ Post_url = "showthread.php? T = {$ hilo ['threadid']}";
    }
    más
    {
    $ Post_url = "showthread.php? P = {$ hilo ['lastpostid']} # {$ mensaje hilo ['lastpostid']}";
    }

    if ($ thread ['title'])
    {
    $ = Clip de "<strong> Desconocido </ strong>";
    }
    más
    {
    $ = Clip de "<strong> <img src=\\"{$thread['statusicon']}\\" alt=\\"\\" /> <a target = \\" _blank \\ "href = \\" {$ post_url} \\ "> {$ hilo ['title']}</ a> </ strong>";
    }

    if ($ thread ['vista previa'])
    {
    $ Vídeo .= "<br /> {$ hilo ['vista previa']}";
    }

    $ Vídeo .= "({$ hilo ['visitas']} puntos de vista, {$ hilo ['replycount']} respuestas)";

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

    $ Poster_clip .= "hilo <br /> {$ hilo ['fecha']} {$ ['tiempo']}";

    if ($ thread ['foro'])
    {
    $ Donde .= "<strong> <a target=\\"_blank\\" href=\\"forumdisplay.php?f={$thread['forumid']}\\"> {$ hilo ['']}</ foro a> </ strong> ";
    }
    más
    {
    $ Donde = "";
    }

    if (is_browser ('ópera'))
    {
    $ Prefetched .= <<<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"> $ en </ td> </ tr> </ table> </ div> \\ n
    VAPRINT;
    }
    más
    {
    $ 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"> $ clip </ div> </ td > <td class="$rowcolor smallfont" align="center"> <div class="smallfont"> $ en </ div> </ td> </ tr> \\ n
    VAPRINT;
    }

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

    if ($ fila <20)
    {
    for ($ x = $ fila, $ x <21, $ x + +)
    {
    if (is_browser ('ópera'))
    {
    $ Prefetched .= <<<VAPRINT
    <div id="row{$x}"> </ div> \\ n
    VAPRINT;
    }
    más
    {
    $ 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;
    }
    }
    }

    / / La memoria de ahorro
    unset ($ tema);
    $ 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 ($ resultado)
    {
    echo "<events> $ salida </ eventos>";
    }
    más
    {
    echo "<events />";
    }

    salida;
    }

    $ Navbits = array ();
    $ Navbits [$ parent] = 'espía del sitio';
    $ 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 (' pie ').'";');
    $ Footer = process_replacement_vars ($ pie de página);

    echo <<<VAPRINT
    $ Stylevar [htmldoctype]
    <html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
    <head>
    $ Headinclude
    <style type="text/css">
    . Spyfade1 div,. Periodo spyfade1,,. Spyfade1 td,. Spyfade1 img {
    opacidad: 0,90;
    Filtro: alpha (opacity = 90);
    -Moz-opacity: 0.90;
    }
    . Div spyfade2,. Periodo spyfade2,. Spyfade2 td,. Spyfade2 img {
    opacidad: 0,80;
    Filtro: alpha (opacity = 80);
    -Moz-opacity: 0.80;
    }
    . Spyfade3 div,. Periodo spyfade3,. Spyfade3 td,. Spyfade3 img {
    opacidad: 0,70;
    Filtro: alpha (opacity = 70);
    -Moz-opacity: 0.70;
    }
    . Spyfade4 div,. Periodo spyfade4,. Spyfade4 td,. Spyfade4 img {
    opacidad: 0,50;
    Filtro: alpha (opacity = 50);
    -Moz-opacity: 0.50;
    }
    . Spyfade5 div,. Periodo spyfade5,. Spyfade5 td,. Spyfade5 img {
    opacidad: 0,30;
    Filtro: 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">
    <! -
    spymax = 25;
    highestid = $ highestid;

    pauseSpy function () {
    playimg var = document.getElementById ("vaplay");
    pauseimg var = document.getElementById ("vapause");

    playimg.src = "images / misc / play_up.gif";
    playimg.alt = "Click to Play";
    pauseimg.src = "images / misc / pause_down.gif";
    pauseimg.alt = "pausa ...";

    pausa ();
    }

    playSpy function () {
    playimg var = document.getElementById ("vaplay");
    pauseimg var = document.getElementById ("vapause");

    playimg.src = "images / misc / play_down.gif";
    playimg.alt = "Jugar ...";
    pauseimg.src = "images / misc / pause_up.gif";
    pauseimg.alt = "Haga clic en Pausa";

    Reanudar ();
    }

    pausa function () {
    jugar = 0;
    }

    reanudar function () {
    jugar = 1;
    }
    / / ->
    </ Script>
    Jugo <title> Informática - Espía del sitio </ title>
    </ Head>
    <body onload="spyinit();">
    $ Header
    $ Navbar

    <table width="90%" align="center"> <td align="left"> width="50%" <input type="checkbox" id="subscribe" value="1"> ; temas suscrito sólo </ td>
    <td align="right"> width="50%"
    <Img id = "vaplay" src = "images / misc / play_down.gif" style = "cursorointer, "alt =" Play "title =" Comentarios Play "onclick =" playSpy (); "/>
    <Img id = "vapause" src = "images / misc / pause_up.gif" style = "cursorointer, "alt =" Pausa "title =" Comentarios Pausa "onclick =" pauseSpy (); "/>
    </ Td> </ tr> </ table>
    <br />
    VAPRINT;

    if (is_browser ('ópera'))
    {
    $ Salida .= <<<VAPRINT
    <table class="tborder" cellpadding="0" cellspacing="0" width="100%" border="0" 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;"> miembro </ td>
    <td class="tcat" width="80%" style="height:25px;"> Tema / Post </ td>
    <td width="200" class="tcat" nowrap="nowrap" style="height:25px;"> Foro
    </ 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;
    }
    más
    {
    $ Salida .= <<<VAPRINT
    <table class="tborder" cellpadding="6" cellspacing="1" width="100%" border="0" align="center" id="spy_table">
    <thead>
    <tr align="center"> <td width="100"> class="thead" Evento </ td> <td width="100"> class="thead" miembro </ td> <td class = "THEAD "> Tema / Post </ td> <td width="190"> class="thead" Foro </ td> </ tr>
    </ THEAD>
    <tbody class="alt1">
    $ Prefetched
    <tr id="row21" style="display: none;" class="spyfade1"> <td align="center"> </ td> </ td> < / p> <p align="justify"> </ td> </ tr>
    <tr id="row22" style="display: none;" class="spyfade2"> <td align="center"> </ td> </ td> < / p> <p align="justify"> </ td> </ tr>
    <tr id="row23" style="display: none;" class="spyfade3"> <td align="center"> </ td> </ td> < / p> <p align="justify"> </ td> </ tr>
    <tr id="row24" style="display: none;" class="spyfade4"> <td align="center"> </ td> </ td> < / p> <p align="justify"> </ td> </ tr>
    <tr id="row25" style="display: none;" class="spyfade5"> <td align="center"> </ td> </ td> < / p> <p align="justify"> </ td> </ tr>
    </ Tbody>
    </ Table>
    VAPRINT;
    }

    $ Salida .= <<<VAPRINT
    $ Pie de página
    VAPRINT;

    echo $ salida;
    >

  5. #5
    Michał Podbielski (VBET Personal) vBET's Avatar
    Fecha de Ingreso
    10 2009
    Mensajes
    3,037

    Default

    Y esta es la cuestión - la producción es simplemente imprimir, así que no hay posibilidad de traducir en forma normal.

    PERO - tenemos la solución para esto - el que te señaló. Que se encargará de los casos como éste. Por favor, díganos exactamente con qué grado tiene problemas. Nosotros le ayudaremos instrucciones barbecho o incluso modificarla para que sea más comprensible

    PS.
    ¿Estás seguro de que la licencia de este mod permite la publicación de su código? Si no, entonces por favor, elimine la misma.

  6. #6
    Miembro Senior
    Fecha de Ingreso
    02 2010
    Mensajes
    210

    Default

    Quiero ser claro, quiero que para hacer este trabajo, lo que puedo pagar.

  7. #7
    Michał Podbielski (VBET Personal) vBET's Avatar
    Fecha de Ingreso
    10 2009
    Mensajes
    3,037

    Default

    Quote Iniciado por Snake View Post
    Quiero ser claro, quiero que para hacer este trabajo, lo que puedo pagar.
    Por supuesto que también ofrecen servicios de pago como la instalación, actualización. No pensaba en la integración de servicios, pero usted puede comprar mejorar el servicio y lo haremos por usted.

    Tenga en cuenta que necesita tener acceso a tu PC de FTP y de administración para poder hacer esta integración (Admin CP - tal vez no se si la configuración actual están bien, FTP definitivamente sí).

Etiquetas para este Tema

Permisos

  • Usted no puede crear nuevos temas
  • Usted no puede enviar respuestas
  • Usted no puede Archivos adjuntos
  • Usted no puede editar tus mensajes
  •