![]() |
Quote:
Sounds like a problem with the .htaccess file. Assuming your Apache configuration includes ForceType, make sure that the code on the uploaded .htaccess (upload as txt then, rename to .htaccess) contains the arguments + expression + exact destination URL as indicated (the latter--URL--if incorrect would produce a 500 error, so it's likely not that). |
As soon as I put .htaccess file under the forum directory, nobody can access the directory. it shows forbidden error message on the browser. (Even an empty .htaccess file)
I think i have to add some directive or change apache conf file, but i don't know which one. Need help please. |
Ok, i use for 3 days google adsense
What i must write for adsense? Mediapartners-Google* or Mediapartners-Google (no *) ? I need this for Who's online hack and session hash stripping 10x |
Quote:
I have the same problem. |
We've got this great hack installed (thanks Teck!), and it works well except:
We have only four forums on our board, and they are all at the root level. That is, their "Forum Parent", as set in the admin, is "No one". (This is intentional, since we don't have enough forums to justify categorization.) The problem is that on the archive page, the forum names aren't hyperlinked. It seems that this hack doesn't hyperlink forums at the root level because it assumes that they are not actually forums but categories. Is there a way around this? See http://www.rfidtalk.com/archive You'll notice that RFID Forum and RFID Industry News are NOT hyperlinked even though they are actual forums, while Greater Impact of RFID and RFID Technology are (because they are children of test). |
Quote:
http://forums.beyond.ca/archive |
I installed this script a few months back, had no problems and very fast install
I am currently running my board in the root dir so archive is /archive , what files do i need to change if i want to move my board into another directory so the the archive would be /forum/archive? |
The .htaccess file if my memory serves me correctly :)
|
Quote:
|
Hi TECK, just wanted to say thanks for the excellent hack. We've had this installed for a few months now, (it's actually the add on to vBhome Lite), and although Google has been hitting our site nicely, we have yet to make a real dent in the Google index.
Everything seems to be synching up just fine, but I still don't understand if the "Unknown Location" issue is a bug or just a consmetic annoyance. 1. If a spider is hitting a page from the archive, and the Who's Online shows the "Unknown Location," is that a problem in terms of getting our site into google? 2. What/where is the varible to change the table content background color, width, centering of the archive? (It shows up as orange 90% and left justified on our board.) Here's the link to our archive: http://www.thedigitalreview.com/archive.html Thanks for any help, and thanks for the work on putting this hack together! We really do appreciate it! |
I wish this archive thing would work on zeus servers!!! grr
I know zeus has mod_rewrite and so on I guess its just a matter of time until one of you guys figures out a way to make it work...... *sigh* |
Quote:
1. Install ISAPI Rewrite Free Version (works great if you only host 1 site on IIS) 2. In ISAPI Rewrite's httpd.ini, add the following entries: Code:
RewriteRule /archive /archive.php 3. In forumdisplay.txt and showthread.txt, replace the line : Code:
$endbit = strrchr( $_SERVER['PHP_SELF'] , '/' ); Code:
$endbit = strrchr( $HTTP_GET_VARS['param'] , '/' ); 4. Rename archive.txt to archive.php, forumdisplay.txt to forumdisplay2.php, and showthread.txt to showthread2.php, and copy to your live upload directory. |
Quote:
if ( $forumperms['canview'] ) { if ( empty( $forum['description'] ) ) { $forum['description'] = 'No description available.'; } eval( '$forumtitle = "' . gettemplate( 'archive_categorytitle' ) . '";' ); // COMMENTED OUT TO FORCE HYPERLINKING OF FORUMS WITH NO PARENT: if ( $forum['parentid'] != '-1' ) // COMMENTED OUT TO FORCE HYPERLINKING OF FORUMS WITH NO PARENT: { eval( '$forumtitle = "' . gettemplate( 'archive_forumtitle' ) . '";' ); // COMMENTED OUT TO FORCE HYPERLINKING OF FORUMS WITH NO PARENT: } eval( '$forumbits .= "' . gettemplate( 'archive_forumbit' ) . '";' ); $forumbits .= showforums( $forum['forumid'] , $spacer . ' ' , $forumperms ); } |
Finally got spidered, and all I can say is WOW.
Guest usercount went from avg of 20 to avg of 90. And we only have 8500 pages spidered (should be about 28,000). |
Is my hosting co the only co that uses zeus instead of apache or isapi?
|
This addon really does work very well.
Our site www.webhostingtalk.nl has more then 11.000 results in google. :) It is recommended for everybody! |
Quote:
Regards, Floren. |
Oh, I will add that info as soon as I have time for it. Sorry, I don't remember me removing it as I normally hate when people do such things.
Anyways, is this addon final or do you see any 'improvements' or 'extra functionality' in the near future? |
Quote:
Man, I PMed you a week ago. I need this script to be installed on 2 of my forums for a fee. Can you do it please? Let me know either way. Thanks. |
Can someome please install this for me been at it all week with no luck trying to install it on www.tsxclub.com
messege me on AIM : FerrariG2 |
I keep getting this error :
<?php // +-------------------------------------------------------------- // | Search Engine Indexer for vBulletin (Script by TECK) // | http://www.teckwizards.com/ // | + archive // +-------------------------------------------------------------- error_reporting( E_ALL & ~E_NOTICE ); $templatesused = 'archive,archive_homekeytag,archive_forumbit,archi ve_categorytitle,archive_forumtitle,archive_homein fo'; require_once( './global.php' ); if ( !$permissions['canview'] ) { archive_nopermission(); } // +-------------------------------------------------------------- // | Forums // +-------------------------------------------------------------- function showforums( $forumid=-1 , $spacer='' , $permission='' ) { global $DB_site,$bburl,$bbuserinfo,$session,$enableaccess ,$iforumcache,$ipermcache,$iaccesscache,$usergroup def,$noperms; if ( !is_array( $permission ) ) { $permission = getpermissions( 0 , -1 , $bbuserinfo['usergroupid'] ); $usergroupdef = $permission; } if ( !isset( $iforumcache ) ) { $iforums = $DB_site->query(" SELECT forumid,parentid,displayorder,threadcount,replycou nt,title,description FROM forum WHERE displayorder<>0 AND active=1 ORDER BY parentid,displayorder,forumid "); while ( $iforum = $DB_site->fetch_array( $iforums ) ) { $iforumcache["$iforum[parentid]"]["$iforum[displayorder]"]["$iforum[forumid]"] = $iforum; } $DB_site->free_result( $iforums ); unset( $iforum ); $iforumperms = $DB_site->query(" SELECT forumid,canview FROM forumpermission WHERE usergroupid='$bbuserinfo[usergroupid]' "); while ( $iforumperm = $DB_site->fetch_array( $iforumperms ) ) { $ipermcache["$iforumperm[forumid]"] = $iforumperm; } $DB_site->free_result( $iforumperms ); unset( $iforumperm ); $noperms['canview'] = 0; if ( $bbuserinfo['userid'] != 0 and $enableaccess == 1 ) { $iaccessperms = $DB_site->query(" SELECT forumid,accessmask FROM access WHERE userid='$bbuserinfo[userid]' "); while ( $iaccessperm = $DB_site->fetch_array( $iaccessperms ) ) { $iaccesscache["$iaccessperm[forumid]"] = $iaccessperm; } unset( $iaccessperm ); $DB_site->free_result( $iaccessperms ); } else { $iaccesscache = ''; } } if ( !is_array( $iforumcache["$forumid"] ) ) { return; } while ( list( $key1 , $val1 ) = each( $iforumcache["$forumid"] ) ) { while ( list( $key2 , $forum ) = each( $val1 ) ) { if ( is_array( $iaccesscache["$forum[forumid]"] ) ) { if ( $iaccesscache["$forum[forumid]"]['accessmask'] == 1 ) { $forumperms = $usergroupdef; } else { $forumperms = $noperms; } } elseif ( is_array( $ipermcache["$forum[forumid]"] ) ) { $forumperms = $ipermcache["$forum[forumid]"]; } else { $forumperms = $permission; } if ( $forumperms['canview'] ) { if ( empty( $forum['description'] ) ) { $forum['description'] = 'No description available.'; } eval( '$forumtitle = "' . gettemplate( 'archive_categorytitle' ) . '";' ); if ( $forum['parentid'] != '-1' ) { eval( '$forumtitle = "' . gettemplate( 'archive_forumtitle' ) . '";' ); } eval( '$forumbits .= "' . gettemplate( 'archive_forumbit' ) . '";' ); $forumbits .= showforums( $forum['forumid'] , $spacer . ' ' , $forumperms ); } } } return $forumbits; } $showforumbits = showforums(); $showthreadbits = ''; $showpostbits = ''; $username = 'visitor'; if ( $bbuserinfo['userid'] != 0 ) { $username = $bbuserinfo['username']; } $headertitle = 'Home'; eval( '$metakeytags = "' . gettemplate( 'archive_homekeytag' ) . '";' ); $navbar = $bbtitle . ' Archive'; $pagenav = ' '; eval( '$pagetitle = "' . gettemplate( 'archive_homeinfo' ) . '";' ); eval( 'dooutput( "' . gettemplate( 'archive' ) . '" );' ); ?> |
<a href="http://www.tsxclub.com/forums/archive" target="_blank">http://www.tsxclub.com/forums/archive</a> is it a problem if we have "s" forums instead of forum? what is causing this error and how can it be fixed! Thanks! Getting same error on both of my forums
|
This is not an error ! Your Webserver just open the complete archive file and show you the syntax.
I think you have a problem with Apache's ForceType directive. Just try to copy archive to archive.php and try to open this file. But first look at this CHANGES |
Thx for the reply buddy!!
Now I get this http://www.tsxclub.com/forums/archive.php The page opens but the links dont work any help is appriciated! |
yep, your Server has a problem with Apache's ForceType directive !
Please check the syntax of your .htaccess file For me the following CHANGE fix the problem. If not ask your Webspaceprovider or administrator of the server how to handle the ForceType syntax. |
i have a problem .
this hack haven't index.php file ! index.php isn't in attachment zip file ! I do all works that written in readme file !but it dosen't work ! |
Quote:
|
i have a problem .
this hack haven't index.php file ! index.php isn't in attachment zip file ! I do all works that written in readme file !but it dosen't work ! |
Quote:
you don't need index.php file. you need to make .htaccess works. see my site. http://tarantulas.us/forums/archive/ |
Thank you TECK...I installed this, let's see where I get with it!
-obs |
Hi guys...
I have used vbarchive with very good results... HOWEVER, I just upgraded from VB 2.30 (where vbarchive worked fine), to VB 2.34, where installing vbarchive creates an error in my forum... Have others found that vbarchive does NOT work with the new VB 2.34??? Thanks for your feedback and help... Khashyar |
If you use the upgrade script to update to 2.3.4 you have to install the hack again because the templates will be lost.
Therefore I update to newer version by hand without using the updatescript;) I use also vB 2.3.4 with vBArchive and it works |
thanks for the reply, Tom...
I discovered the problem... I was trying to use the same edited functions.php file that I used with my 2.30 VB..... I needed to take the new 2.34 functions.php file and reinsert the ad-on code from the VBArchive hack.... Now it seems to work... Thanks for your reply.... Khashyar |
Is this script good for vBulletin Version 2.3.3 ?
|
big daddy....
I'm sure that it also works with 2.3.3 |
work perfect http://www.gamerzplanet.net/forums/archive
|
i type http://www.animationation.net/community/archive/ and i get errors:(
|
Anyone know what's wrong with this? Followed instructions, and when I try to open vbarchive.php I get the following:
Warning: main(./global.php): failed to open stream: No such file or directory in /home/aimforum/public_html/archive/admin/vbarchive.php on line 8 Warning: main(): Failed opening './global.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/aimforum/public_html/archive/admin/vbarchive.php on line 8 Fatal error: Call to undefined function: cpheader() in /home/aimforum/public_html/archive/admin/vbarchive.php on line 165 Any help would be appreciated, thanks! Dan |
i get page cannot be viewed error when going to http://www.precisionmuscle.org/archive/ i followed the instructions to a T. the only thing is that i am running vb 2.3.4. am i missing something?
|
nevermind i got it. thanks anyway :D
|
All times are GMT. The time now is 12:16 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 | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|