Problema con la variable $forumpath

CIUDADMOVIL Seguir

Beta
¡Usuario con pocos negocios! ¡Utiliza siempre saldo de Forobeta!
Desde
8 Mar 2009
Mensajes
63
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 Enlace eliminado 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. Enlace eliminado

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.
// || Enlace eliminado
// ||
// ||
// ++ ================================================== ======================++

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
 

Golem

Dseda
¡Usuario con pocos negocios! ¡Utiliza siempre saldo de Forobeta!
Desde
27 Jul 2008
Mensajes
1.245
Insertar CODE, HTML o PHP:
<?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.
// || [B]Enlace eliminado[/B]
// || 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
 

CIUDADMOVIL

Beta
¡Usuario con pocos negocios! ¡Utiliza siempre saldo de Forobeta!
Desde
8 Mar 2009
Mensajes
63
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.
// || Enlace eliminado
// || 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.
 

Golem

Dseda
¡Usuario con pocos negocios! ¡Utiliza siempre saldo de Forobeta!
Desde
27 Jul 2008
Mensajes
1.245
se que sos nuevo pero aca nos manejamos con esto ^^

post_thanks.gif
 
Arriba