Quote:
Originally Posted by MotoUp
Right, but the code you're saying to replace in the index file doesn't exist in my php file, so I'm not sure where to put it.
|
It's in mine
Here is a snip of whats @ vbadvanced.com
PHP Code:
<?php
// ++=========================================================================++
// || vBadvanced CMPS v2.0.0 (vB 3.5) - 1245
// || ? 2003-2004 vBadvanced.com & PlurPlanet, LLC - All Rights Reserved
// || This file may not be redistributed in whole or significant part.
// || http://vbadvanced.com
// || Downloaded 08:07, Sat Oct 22nd 2005
// ||
// ++ ========================================================================++
// ============================================
// No Further Editing Necessary!
// ============================================
$phrasegroups = array();
$globaltemplates = array();
$actiontemplates = array();
$specialtemplates = array();
1)
Edit your vBadvanced CMPS: (not the forums/index.php)
- cmps_index.php file (you may have a different name)
By default:
$phrasegroups = array();
$specialtemplates = array();
Change to:
$phrasegroups = array('adv_gallery');
$specialtemplates = array('adv_gallery_opt','gallery_c_cache','gallery _ugroups');
-----
If these values $specialtemplates, $phrasegroups are not in the PHP file just add them.
If they are there just merge the data together.
EX:
$phrasegroups = array('somevalue','someother_value','adv_gallery') ;
$specialtemplates = array('somevalue','someother_value','adv_gallery_o pt','gallery_c_cache','gallery_ugroups');