Problema con la variable $forumpath

Esta es una discusión para el tema Problema con la variable $forumpath en el foro vBadvanced CMPS, bajo la categoría Soporte para Productos/Plugins; Hola, ante todo un cordial saludo foreros por parte de CIUDAD-MOVIL.COM Recien, compamos la versión de Bulletin 3.8.1. Y hoy, le instale el vBadvanced CMPS v3.1.0; realmente traté, pero no logre... Como bien deben saber, ...
Página:


Resultados 1 al 4 de 4

Temas similares

  1. variable en un mensaje!!! Respuestas: 16
    Por SenDoh en el foro vBulletin 3 - Preguntas, Problemas y Soluciones
  2. Por daljo25 en el foro vBadvanced CMPS
  3. Por 0xid0 en el foro Archivos de vBulletin 3.0 - 3.7
  4. Variable? Respuestas: 0
    Por DuckMan en el foro Archivos de vBulletin 3.0 - 3.7
  5. Crear Variable Respuestas: 0
    Por DuckMan en el foro Archivos de vBulletin 3.0 - 3.7
  1. #1
    Miembro especial Miembro de plata Array
    Fecha de ingreso
    08 mar, 09
    Mensajes
    64
    Gustado
    0 Veces
    Me Gustan
    0 Veces

    Predeterminado Problema con la variable $forumpath

    Hola, ante todo un cordial saludo foreros por parte de CIUDAD-MOVIL.COM

    Recien, compamos la versión de Bulletin 3.8.1.
    Y hoy, le instale el vBadvanced CMPS v3.1.0; realmente traté, pero no logre...


    Como bien deben saber, debo colocar un parche para ver una direccion que requiere el index; en mi caso es. http://ciudad-movil.com/forumpath.php

    Indica:
    " \\hmfsw00\web00\DTC004\ciudad-movil.c "
    Y eso lo coloque en el index.php (antes CMPS_INDEX.PHP) como dicen las instrucciones.
    ASI QUEDA:
    <?php
    // ++================================================ =========================++
    // || vBadvanced CMPS v3.1.0 (vB 3.6 - vB 3.8)
    // || © 2003-2008 vBadvanced.com - All Rights Reserved
    // || This file may not be redistributed in whole or significant part.
    // || http://vbadvanced.com
    // ||
    // ||
    // ++ ================================================== ======================++

    error_reporting(E_ALL & ~E_NOTICE);
    define('THIS_SCRIPT', 'adv_index');
    define('VBA_PORTAL', true);
    define('VBA_SCRIPT', 'CMPS');

    // ============================================
    // Enter the full path to your forum here
    // Example: /home/vbadvanced/public_html/forum
    // ============================================

    $forumpath = '\\hmfsw00\web00\DTC004\ciudad-movil.c';

    // ============================================
    // No Further Editing Necessary!
    // ============================================

    if ($forumpath)
    {
    if (!is_dir($forumpath))
    {
    echo 'Invalid forum path specified! Please edit this file and be sure to include the correct path for your $forumpath variable.';
    exit;
    }

    chdir($forumpath);
    }

    $phrasegroups = array();
    $globaltemplates = array();
    $actiontemplates = array();
    $specialtemplates = array();

    require_once('./includes/vba_cmps_include_template.php');
    require_once('./global.php');

    print_portal_output($home);

    ?>
    Ahora bien, al entrar a mi foro:
    EDITADO
    Me da el error de que la variable está mala.
    " Invalid forum path specified! Please edit this file and be sure to include the correct path for your $forumpath variable. "


    ¿QUÉ PUEDO HACER?

    Espero su pronta respuesta, salu2
    Última edición por Coletta; 04/04/2009 a las 10:17 Razón: -

  2. #2
    Miembro especial Miembro de diamante Array Avatar de Golem
    Fecha de ingreso
    27 jul, 08
    Mensajes
    1,545
    Gustado
    41 Veces
    Me Gustan
    14 Veces

    Predeterminado Re: Problema con la variable $forumpath

    Código:
    <?php
    // ++================================================  =========================++
    // || vBadvanced CMPS v2.2.1 (vB 3.6) - 39726
    // || © 2003-2004 vBadvanced.com & PlurPlanet, LLC - All Rights Reserved
    // || This file may not be redistributed in whole or significant part.
    // || http://vbadvanced.com
    // || Downloaded 05:47, Mon Oct 16th 2006
    // || 
    // ++ ==================================================  ======================++
    error_reporting(E_ALL & ~E_NOTICE);
    define('NO_REGISTER_GLOBALS', 1);
    define('THIS_SCRIPT', 'adv_index');
    define('VBA_PORTAL', true);
    define('VBA_SCRIPT', 'CMPS');
    // ============================================
    // Enter the full path to your forum here
    // Example: /home/vbadvanced/public_html/forum
    // ============================================
    $forumpath = '';
    // ============================================
    // No Further Editing Necessary!
    // ============================================
    if ($forumpath)
    {
     if (!is_dir($forumpath))
     {
    echo 'Invalid forum path specified! Please edit this file and be sure to include the correct path for your $forumpath variable.';
      exit;
     }
     chdir($forumpath);
    }
    $phrasegroups = array();
    $globaltemplates = array();
    $actiontemplates = array();
    $specialtemplates = array();
    require_once('./includes/vba_cmps_include_template.php');
    require_once('./global.php');
    print_portal_output($home);
    ?>
    http://www.vbadvanced.com/forum/showthread.php?t=14608

    http://www.vbulletin.com/forum/showthread.php?t=229168

  3. #3
    Miembro especial Miembro de plata Array
    Fecha de ingreso
    08 mar, 09
    Mensajes
    64
    Gustado
    0 Veces
    Me Gustan
    0 Veces

    Predeterminado Re: Problema con la variable $forumpath

    El problema persiste,
    Trate con el codgio que colocaste y colocando mi path
    <?php
    // ++================================================ =========================++
    // || vBadvanced CMPS v2.2.1 (vB 3.6) - 39726
    // || © 2003-2004 vBadvanced.com & PlurPlanet, LLC - All Rights Reserved
    // || This file may not be redistributed in whole or significant part.
    // || http://vbadvanced.com
    // || Downloaded 05:47, Mon Oct 16th 2006
    // ||
    // ++ ================================================== ======================++
    error_reporting(E_ALL & ~E_NOTICE);
    define('NO_REGISTER_GLOBALS', 1);
    define('THIS_SCRIPT', 'adv_index');
    define('VBA_PORTAL', true);
    define('VBA_SCRIPT', 'CMPS');
    // ============================================
    // Enter the full path to your forum here
    // Example: /home/vbadvanced/public_html/forum
    // ============================================
    $forumpath = '\\hmfsw00\web00\DTC004\ciudad-movil.c';
    // ============================================
    // No Further Editing Necessary!
    // ============================================
    if ($forumpath)
    {
    if (!is_dir($forumpath))
    {
    echo 'Invalid forum path specified! Please edit this file and be sure to include the correct path for your $forumpath variable.';
    exit;
    }
    chdir($forumpath);
    }
    $phrasegroups = array();
    $globaltemplates = array();
    $actiontemplates = array();
    $specialtemplates = array();
    require_once('./includes/vba_cmps_include_template.php');
    require_once('./global.php');
    print_portal_output($home);
    ?>
    Y sin embargo probe colocando en path lo siguiente.
    $forumpath = './forum';

    Listo ya me funciono, no coloque nada en path :S

    Saludos gracias.
    Última edición por CIUDADMOVIL; 08/03/2009 a las 13:55 Razón: Mensajes fusionados automáticamente

  4. #4
    Miembro especial Miembro de diamante Array Avatar de Golem
    Fecha de ingreso
    27 jul, 08
    Mensajes
    1,545
    Gustado
    41 Veces
    Me Gustan
    14 Veces

    Predeterminado Re: Problema con la variable $forumpath

    se que sos nuevo pero aca nos manejamos con esto