Quote:
Originally Posted by blackberry
I just renamed admincp to admincpforum and its giving me error i have changed the code like mentioned
Code:
$vbulletin->config['Misc']['admincpforum']
tell me wht to write
thanks
|
You're not supposed to change the actual variable. It should be:
PHP Code:
$config['Misc']['admincpdir'] = 'admincpforum';
In your ./includes/config.php file or if you're editing this within one of the mod files it should be:
PHP Code:
$vbulletin->config['Misc']['admincpdir'] = 'admincpforum';
Quote:
Originally Posted by Dragonsys
when I click on Send I get this at the top of the page:
everything seems to be working fine though...
|
Edit ./admincp/commbull_template_html.php
Find on line #182
Code:
<td><a href=\"{$vbulletin->options['bburl']}/login.php?do=lostpw&$commbull[referal_tag]\">{\$vbphrase[forgotten_your_password]}?</a></td>
replace with
Code:
<td><a href=\"{\$vbulletin->options['bburl']}/login.php?do=lostpw&\$commbull[referal_tag]\">{\$vbphrase[forgotten_your_password]}?</a></td>