vBadvanced problema

B

Blade_King

vBadvanced en phoneaccess

Necesito instalar un vbadvanced en mi web:

http://*****.webspacemania.com

Cuando instalo todo, esta perfecto
Pero al final, cuando pongo
http://*****.webspacemania.com/cmps_index.php
Me dice:
Insertar CODE, HTML o PHP:
Invalid forum path specified! Please edit this file and be sure to include the correct path for your $forumpath variable.
Creo q es xq modifique mal el $forumpath

(...) $forumpath = '/home/misitio/www'; (...)

En este caso de webspacemania.com de phoneaccess.com, ¿cómo sería?

Tngo vBulletin 3.6.2
y uso el vBadvanced 2.2.1
 
T

ToroBT

es porque no tenes que poner nada en el php del vbAdvanced. mira aca tenes mi php como lo tengo yo.

<?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 = '';
// ============================================
// 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);
?>
 
T

ToroBT

disculpa pero creo que si se puede modificar de hecho en los viejos CMPS se tenia que hacer obligadamente,

si vos abris el PHP con un editor de texto y en la parte que dice

// ============================================
// Enter the full path to your forum here
// Example: /home/vbadvanced/public_html/forum
// ============================================
$forumpath = '';
// ============================================
// No Further Editing Necessary!
// ============================================

modificas a mano el $forumpath = ''; poniendole la ruta directa de tu servidor web tendria que andar salvo que lo pongas mal

ejemplo para mi pagina

$forumpath = '/www/xxxxxxx/htdocs';

esa seria la ruta para mi pagina, puse xx por un tema de seguridad.
Pero el archivo se puede modificar perfectamente con un notepad o con un wordpad.

atte
El Toro
 
Arriba