vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   vB Easy Archive - Search Engine Spiderable Hack! (https://vborg.vbsupport.ru/showthread.php?t=83439)

wisam74us 10-06-2005 12:27 PM

I finished my tests on my back up server and every thing working good .. but yesterday when I moved the staff to the main server .. the hack stop working and I get a strange message (not english language)
would u take a look
http://zaidal.com/229/vba/forum/15-1.html

noppid 10-06-2005 01:56 PM

Quote:

Originally Posted by wisam74us
I finished my tests on my back up server and every thing working good .. but yesterday when I moved the staff to the main server .. the hack stop working and I get a strange message (not english language)
would u take a look
http://zaidal.com/229/vba/forum/15-1.html

Did you adjust the config.php for the live board? I'm guessing the URL's in there are to your test board and not your live board.

wisam74us 10-06-2005 04:23 PM

No it s for the live on .. it is working now thanks for the replay
I change the way to get the forum ID through the url ..

dutchbb 10-07-2005 08:31 PM

i get this sometimes

"Invalid thread! "

mindfrost82 10-09-2005 07:51 PM

I keep getting "Page Cannot Be Found"

It tries to go to www.domain.com/search/forum/something.html.

My forums are not in a /forum subdirectory, and I do not have that in the config.php.

Any ideas?

xtreme-mobile 10-09-2005 08:36 PM

Quote:

Originally Posted by Triple_T
i get this sometimes

"Invalid thread! "


see reply number 34 :D

Sal Collaziano 10-18-2005 11:50 AM

Could anyone take on the challenge to get this archive to work with the CoOp Ad Network?

HUMMERh3 10-18-2005 10:02 PM

Is Mod-mime a file that you actually download...or is it a piece of code you copy and paste? I went to http://httpd.apache.org/docs/mod/mod_mime.html
and I couldn't figure out how to install mod-mime. Can anybody please tell me how to dowload or what to look for?
THANKS!

HUMMERh3 10-18-2005 11:25 PM

Question on the two parts of installation:

Quote:

[Step 2] Open up config.php and edit the variables inside it. Be sure not to include trailing slashes on any of the URL's.
What varibles should I look for? I'm new to this so any information is helpful.

Quote:

[Step 3] Upload all 8 files (.htaccess, archive_functions.php config.php, footer.php, forum, header.php, index.php and topic) in ASCII mode to the new directory you created in Step 1.
Where do I get these 8 files...Do I simply make them up or copy them from the actual Forum??

Omranic 10-22-2005 02:20 AM

thnx very much
it works good at all EXEPT one issue which when you clicked (Click here to view the original thread with full colors/images) you have the domain.ext/showthread.php?threadid=$threadinfo[threadid]

knowing that i'm installing forums in sub directory called vb & i have edited the variable ($archive_options['forumurl']) in config.php file to the correct URL (domain.com/vb) without TRAILING SLASH

thouth i think that hack catching the domain name only in linking operation for topics & discard any thing after .ext (ie: .com)

Need to clear this Issue to fix it

I Can Fix It through topic file by putting forums directory after $forumurl & before showthread.php?threadid=$threadinfo[threadid] @ line 86

I know that this is a silly fix but its temporary till you tell us the solve .

Regards

noppid 10-22-2005 11:06 AM

Quote:

Originally Posted by Sal Collaziano
Could anyone take on the challenge to get this archive to work with the CoOp Ad Network?


Yes Sal, it's done within the fetch_footer function in the archive_functions.php file, not the footer.php.

In archive_functions.php locate:
PHP Code:

function fetch_footer()
{
    global 
$archive_options;
    
ob_start();
    include(
'./' str_replace($archive_options['forumurl'], ''$archive_options['archiveurl']) . '/footer.php');
    
$footer ob_get_contents();
    
ob_end_clean();
    
$footer .= '
        <p align="center">
            <br /><br />
            <font size="1" color="#999999">
                vBulletin Copyright &copy;2000 - ' 
date('Y') . ',
                Jelsoft Enterprises Limited.<br />
                <b>vB Easy Archive Final</b> &copy;2000 - ' 
date('Y') . '
                - Created by <a href="http://www.xenon-shacuros.de/">Stefan &quot;Xenon&quot; Kaeser</a>
                <br />
            </font>
        </p>
    </body>
    </html>    '
;

    return 
$footer;


Replace with:
PHP Code:

function fetch_footer()
{
    global 
$archive_options,$ad_network;
    
ob_start();
    include(
'./' str_replace($archive_options['forumurl'], ''$archive_options['archiveurl']) . '/footer.php');
    
$footer ob_get_contents();
    
ob_end_clean();
    
$footer .= '
        <p align="center">
            <br /><br />
            <font size="1" color="#999999">
                vBulletin Copyright &copy;2000 - ' 
date('Y') . ',
                Jelsoft Enterprises Limited.<br />
                <b>vB Easy Archive Final</b> &copy;2000 - ' 
date('Y') . '
                - Created by <a href="http://www.xenon-shacuros.de/">Stefan &quot;Xenon&quot; Kaeser</a>
                <br />
            </font>
        </p>

<center>
<br />'
.$ad_network.'</center>
                
                
    </body>
    </html>
    '
;

    return 
$footer;


At least that's how I did it. There's more then one way to skin a cat.

rossco_2005 11-04-2005 03:29 PM

Has anyone been able to get this to work with the No Content option? It just lets you view the thread but it shouldn't. :(

Sal Collaziano 11-04-2005 04:03 PM

THANK YOU!!!

Quote:

Originally Posted by noppid
Yes Sal, it's done within the fetch_footer function in the archive_functions.php file, not the footer.php.

In archive_functions.php locate:
PHP Code:

function fetch_footer()
{
    global 
$archive_options;
    
ob_start();
    include(
'./' str_replace($archive_options['forumurl'], ''$archive_options['archiveurl']) . '/footer.php');
    
$footer ob_get_contents();
    
ob_end_clean();
    
$footer .= '
        <p align="center">
            <br /><br />
            <font size="1" color="#999999">
                vBulletin Copyright &copy;2000 - ' 
date('Y') . ',
                Jelsoft Enterprises Limited.<br />
                <b>vB Easy Archive Final</b> &copy;2000 - ' 
date('Y') . '
                - Created by <a href="http://www.xenon-shacuros.de/">Stefan &quot;Xenon&quot; Kaeser</a>
                <br />
            </font>
        </p>
    </body>
    </html>    '
;

    return 
$footer;


Replace with:
PHP Code:

function fetch_footer()
{
    global 
$archive_options,$ad_network;
    
ob_start();
    include(
'./' str_replace($archive_options['forumurl'], ''$archive_options['archiveurl']) . '/footer.php');
    
$footer ob_get_contents();
    
ob_end_clean();
    
$footer .= '
        <p align="center">
            <br /><br />
            <font size="1" color="#999999">
                vBulletin Copyright &copy;2000 - ' 
date('Y') . ',
                Jelsoft Enterprises Limited.<br />
                <b>vB Easy Archive Final</b> &copy;2000 - ' 
date('Y') . '
                - Created by <a href="http://www.xenon-shacuros.de/">Stefan &quot;Xenon&quot; Kaeser</a>
                <br />
            </font>
        </p>

<center>
<br />'
.$ad_network.'</center>
                
                
    </body>
    </html>
    '
;

    return 
$footer;


At least that's how I did it. There's more then one way to skin a cat.


Smitty 12-10-2005 12:35 PM

Anyone tried this with 3.5.2 yet?

Brandon Sheley 12-16-2005 05:20 AM

hmm, when i try and click on a forum it shows as /forum/5-1.html

http://www.locoforum.com/forums/search/
? i've looked thu this thread and see fixes for topic, but don't even see the topics

Brandon Sheley 12-18-2005 04:01 AM

anyone ?
guess i wont use it untill someone replys :disappointed:

rossco_2005 01-31-2006 05:13 PM

Quote:

Originally Posted by rossco_2005
Has anyone been able to get this to work with the No Content option? It just lets you view the thread but it shouldn't. :(

Anyone?
We're now having a lot of private info seen my spiders and other people that shouldnt see it, and getting in trouble for it. :(

rossco_2005 01-31-2006 05:30 PM

Ah, fixed it myself.

Here is what to do if anyone else has problems: :)

Open the file 'forum' and replace:

PHP Code:

$threadbits .= "<li /><a href=\"$archive_options[archiveurl]/$archive_options[topicfile]/$thread[threadid]-1.html\">$thread[title]</a></li>\n"

with
PHP Code:

if (!($forumperms $vbulletin->bf_ugp_forumpermissions['canviewthreads']))
    {
        
$threadbits .= "<li />$thread[title]</li>\n";
    }
    else
    {
        
$threadbits .= "<li /><a href=\"$archive_options[archiveurl]/$archive_options[topicfile]/$thread[threadid]-1.html\">$thread[title]</a></li>\n";
    } 


icare 02-13-2006 02:27 AM

How do i check that mod_mime is installed on my server?

David_R 02-14-2006 11:30 AM

Quote:

Originally Posted by icare
How do i check that mod_mime is installed on my server?

email your hosting provider about installing mod_mime module to your apache server.

I have a question:
I got the mod, installed and running perfectly fine, I want to implement following changes.
When a user clicks on the threads in archive, it should get re-directed to the default forum threads.
How this can be acheived ?

Thanks.

Zia 02-19-2006 04:42 AM

hmm going to impliment this one...

but same probs as locom

does it works with vb3.5.3 ?

Zia 02-19-2006 07:08 AM

finally there are lotts porbs here...when we can accpet an update of it fro vb3.5.3

Lexserv 04-14-2006 05:47 AM

Will this work with the latest version of vBulletin 3.5.x?

Xenon, can you confirm this? I really liked the old 3.x hack and it worked great.

Holler!

SaN-DeeP 04-14-2006 10:16 PM

is it possible to re-direct the thread listings on forum pages to original thread = showthread ?

thanks

cd1986 04-14-2006 10:43 PM

Quote:

Originally Posted by Lexserv
Will this work with the latest version of vBulletin 3.5.x?

Yep, just download the files and make the following changes:

Invalid thread error:

https://vborg.vbsupport.ru/showpost....5&postcount=22

Private forums error:

https://vborg.vbsupport.ru/showpost....4&postcount=34

Bad URL Error:

https://vborg.vbsupport.ru/showpost....3&postcount=37

No content error:

https://vborg.vbsupport.ru/showpost....7&postcount=58

julius 06-24-2006 05:53 AM

How can I show a banner in easy archive after the first post in a thread page (topic)?

Like in showthread here?

http://www.vbulletin.com/forum/showthread.php?t=123281

Thanks

Prince 07-20-2006 10:41 PM

Is it possible to get this to run on a different domain? (they are on the same server using the same sql server)

letsjoy 07-26-2006 05:41 AM

haha demo also not working

jyajay 11-03-2006 09:54 PM

This would be perfect if: You can grant access to all threads and forums only to google which are readable by every registered member and produce this output without images, smiles etc. Then if you follow the google link you will get redirected to a message that says something like "if you want to see this page please register", of course you could just use the normal vbulletin message. There are severeal reasons why this is helpful for some people. In my case it is mostly the fact that I want to get more active members at my board but still have the control over who reads the actual threads because it is a lot easier to just leech the threads than create one by yourself.

For phpBB I had a sitemap hack that produced just a complete list of all threads that are at the forum with the names of the threads and links included, no matter if guests could read them - that is a good alternative for me also but maybe not achievable with this hack.

Now, that would be my christmas wish :P

jyajay 11-16-2006 02:14 PM

Ok I got another question: How can I stop the archive from giving output on "invalid thread" and "invalid forum" in the case that something was removed or moved?

Currently the path of this error messages is totally wrong although I want to simply get a 404 error if a forum or thread does not exist:

normal forum: http://foobar.com/forum
archive: http://foobar.com/forum/archive

wrong path: http://foobar.com/forum/archive/forum

Khashyar 11-04-2008 09:21 PM

Hi Everyone,

Thank you for your comments and code change suggestions...

I am trying to make this hack work with VB 3.6.x...

I applied all four changes listed above:

It was installed correctly, and I can see the archive index page fine, but receive a VB "invalid link" error when I click on forums.....

Also, I receive the "forum" dir in the URL...

Any ideas as to how this would work with VB 3.6.x?

Thanks for your suggestions....

KD


All times are GMT. The time now is 04:17 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01342 seconds
  • Memory Usage 1,850KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (6)bbcode_php_printable
  • (9)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (31)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete