hide hack resurection 2.8.2 expanded

renzor

New Member
i just installed this amazing hack and here is the prob :

everything was installed correctly no error...... but the the hide-reply hide thx buttons dont appear in the tool bar (to post ) but the thank that comes with appears !

even when i post it manually : [hide]my message [/hide] it doesnt work !! am using vb 3.6.8 pl2
i already tried hide hack resurection 2.5 expanded it works well !!


so can some1 tell what's wron

ah another thing my usergroups are edited and i enabled hide hack 4 groups !!!

should i look in forum permission too ?!

thx in advance
 
you should edit ur forums n change the permission from No To Yes As shown in the figure below

jdbszmd3fb9w5qoh6ia8.jpg
 
thanks 4 ur replies
but as i said i checked everything forum permission edited usergroups..... but nothing even when trying the command manually writin [hide] my text[/hide] it said : the message is too short !!!


another thing in php file edit

external.php

the code
Code:
foreach ($threadcache AS $thread)
		{
			switch($vbulletin->GPC['type'])


isnt like this between foreach ($threadcache AS $thread)

and

switch($vbulletin->GPC['type'])[/CODE]

there is a text ..... so may be i edited wrong or something like this !!
any1 to help me plz
 
i want to tell u that am runing php4 and for the moment the thanks system that comes with this hack is working but not the hide options !!
 
Maybe it's just me but I'm having trouble understanding what you're saying in some of your posts. I can't make heads or tails of this:

another thing in php file edit

external.php

the code
Code:

foreach ($threadcache AS $thread)
{
switch($vbulletin->GPC['type'])


isnt like this between foreach ($threadcache AS $thread)

and

switch($vbulletin->GPC['type'])[/code]

there is a text ..... so may be i edited wrong or something like this !!

so try 2 mk ur psts a liddle ez 2 read
 
ok here it is


in install instructions
editing external.php

they ask 2 find

Code:
foreach ($threadcache AS $thread)
		{
			switch($vbulletin->GPC['type'])


but what i find is this !! so what should i do with all the text between
Code:
foreach ($threadcache AS $thread)
and
Code:
{
			switch($vbulletin->GPC['type'])




Code:
foreach ($threadcache AS $thread)
                {
                        $xml->add_group('thread', array('id' => $thread['threadid']));
                                $xml->add_tag('title', unhtmlspecialchars($thread['title']));
                                $xml->add_tag('author', unhtmlspecialchars($thread['postusername']));
                                $xml->add_tag('date', vbdate($vbulletin->options['dateformat'], $thread['dateline']));
                                $xml->add_tag('time', vbdate($vbulletin->options['timeformat'], $thread['dateline']));
                        $xml->close_group('thread');
                }
        }
        $xml->close_group('source');
        $output .= $xml->output();
        unset($xml);
}
else if (in_array($vbulletin->GPC['type'], array('RSS', 'RSS1', 'RSS2')))
{ // RSS output
        // setup the board title

        if (empty($title))
        { // just show board title
                $rsstitle = $vbulletin->options['bbtitle'];
        }
        else
        { // show board title plus selection
                $rsstitle = $vbulletin->options['bbtitle'] . " - $title";
        }
        $rssicon = create_full_url($stylevar['imgdir_misc'] . '/rss.jpg');

        $headers[] = 'Cache-control: max-age=' . $expires;
        $headers[] = 'Expires: ' . gmdate("D, d M Y H:i:s", $expires) . ' GMT';
        $headers[] = 'Last-Modified: ' . gmdate('D, d M Y H:i:s', $lastmodified) . ' GMT';
        $headers[] = 'ETag: "' . $cachehash . '"';
        $headers[] = 'Content-Type: text/xml' . ($stylevar['charset'] != '' ? '; charset=' .  $stylevar['charset'] : '');

        $output = '<?xml version="1.0" encoding="' . $stylevar['charset'] . '"?>' . "\r\n\r\n";

        # Each specs shared code is entered in full (duplicated) to make it easier to read
        switch($vbulletin->GPC['type'])
        {
 
Back
Top