vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=4)
-   -   vbArchive - Search Engine Indexer for vBulletin (https://vborg.vbsupport.ru/showthread.php?t=47667)

TECK 01-18-2003 03:38 PM

The difference are the meta tags. :)
You want dynamic meta tags, unique for each page, period.

codewebs 01-19-2003 03:37 AM

Quote:

Originally posted by TECK
To see if it's working, simply use:
no_sessionhash( 'mozilla' );

There is no more sessionhash displayed after.
Make sure you remove it, orelse all IE (or whatever browser you use) users will not have anymore sessions...

session hashes are still there when i do that....

codewebs 01-19-2003 03:43 AM

:tired: :angry: it would have been nice if you would have told all of us that installed the session hash thing right when you posted it,..... that you changed it.... it works right now :)

TECK 01-19-2003 05:34 AM

I thought is obvious... Btw, you are not using my archive but only my extras... What's the reason?

codewebs 01-19-2003 05:43 AM

i got to confused with taking out the template for the other one :-p i really didnt understand how to get rid of the one template that is used by both :(

and yes it should be obvious, but i didnt check that page after the thread got to this one.

TECK 01-19-2003 07:52 AM

That's not an excuse, it feels good to use my add-ons but not the code I made, huh?
The previous script comes with an un-installer (or the one you used for vbHome), simply run it and it will remove all templates you want, is explained. You don't care, in other words...
What template you want to remove?
Is really easy, revert all your templates you want to remove to original, then run this query for each template you want to drop:
[sql]DELETE FROM template WHERE title='yourtemplate' AND templatesetid=-1[/sql]
Of course, this was hard to ask. You see, people like you make me wonder why should I release any hacks?
Is a damn insult to me what you said above that you got confused, when the script is so easy to un-install or change it's options... at least be honest and tell me that you don't care what archive you run, but you rather ripp bits of code from others to obtain "the same" results.

Fersy 01-19-2003 10:19 AM

hi,

sorry fir my bad english...

i have a problem,

i have some hidden forums on my board, they don't displayed on searchengines..

how to exclude the hidden forums ???

codewebs 01-19-2003 02:04 PM

you know what teck im not going to install your hack now, i did ask how to do it before, and got no answer and gave up. I tryed to install your archive, and i just didnt know what to do... You really need to get anger management classes or just stop making hacks if you treat newbs like this! I really wanted to install this hack, but i got no responce when i asked how to delete the template, and if there was a uninstaller it wouldnt matter, because i deleted the zip.

You think your better than everyone, well your definately not!

codewebs 01-19-2003 02:27 PM

Quote:

Originally posted by TECK
Ok, another idea I came up with... If the crawler is goglebot.com, for example, and it's hitting the actual forum pages, not the archive, you could use this trick to remove the sessionhash from the templates:
This is the only addon i used, which you didnt even make first... Someone on vbulletin.com made this days before you did... it wasnt the same and i didnt trust them, so i didnt use it but....

(Ok, another idea I came up with) no you got this idea from vbulletin.com ......

TECK 01-19-2003 05:51 PM

Quote:

Originally posted by codewebs
This is the only addon i used, [high]which you didnt even make first...[/high] Someone on vbulletin.com made this days before you did... it wasnt the same and i didnt trust them, so i didnt use it but....

(Ok, another idea I came up with) no you got this idea from vbulletin.com ......

Heh, I didn't make it? Post the code to compare it.
You contradict yourself, you say that I didn't even make the code first... but that the code is not the same...
I don't ripp code from others. Use their code instead, since is not my own code, ok?

eva2000 01-19-2003 05:57 PM

what's the best way to turn off certain private forums from being viewed altogether regardless of usergroup permissions ?

Dean C 01-19-2003 06:00 PM

Wow fancty seeing you here eva :)

- miSt

TECK 01-19-2003 06:04 PM

George, you have 2 choices. Either add your forum info onto the robots.txt file (easiest way):
[high]Disallow: /forum/forumdisplay/f-32.html[/high]
Or change this onto your forumdisplay.txt (or archive.txt) file:
Code:

      if ( $forumperms['canview'] )
      {

To:
Code:

      if ( $forumperms['canview'] and !in_array( $forum['forumid'] , array( 15 , 23 , 48 ) ) )
      {

EDIT: what's the archive URL? so I add it in the first post...

eva2000 01-19-2003 06:18 PM

awesome works great http://animeboards.com/archive/?styleid=18 :)

TECK 01-19-2003 06:22 PM

There is something wrong there with your style, you are supposed to have an arrow in front of each forum...
Right click on the little arrow, on my archive to see the location...
What is your $bburl set at? It looks like it doesn't see the {imagesfolder} replacement variable.
Let me know please.

Also, remove the link to the forums front page, it was done in purpose this way (quote from first post):
Quote:

Important
Do NOT get "creative" and start adding crazy stuff and links to the actual templates. The script was optimized to perform at it's best the way it is now, so crawlers gravitate only onto the archives files, not outside, to the actual forums.
You can edit the archive_homekeytag to enter your web site key words.

eva2000 01-19-2003 06:28 PM

Quote:

Originally posted by TECK
There is something wrong there with your style, you are supposed to have an arrow in front of each forum...
Right click on the little arrow, on my archive to see the location...
What is your $bburl set at? It looks like it doesn't see the {imagesfolder} replacement variable.
Let me know please.

Also, remove the link to the forums front page, it was done in purpose this way (quote from first post):

all i had to do was upload arrow.gif to each styles image directories :)

TECK 01-19-2003 06:30 PM

Ok, now remove the link to the forums home page in the header. :p

eva2000 01-19-2003 06:31 PM

Quote:

Originally posted by TECK


Also, remove the link to the forums front page, it was done in purpose this way (quote from first post):

from what i understand, some search engines if they don't find a link back to the main site, might think it was spammed

but either way my whole forum is spider friendly via mod_rewrite, so doesn't matter which way they spider :D

TECK 01-19-2003 06:36 PM

Hmm really? That's interesting, where did you read this George?
Let me know please...

I added your link to the first post. :)

eva2000 01-19-2003 07:07 PM

Quote:

Originally posted by TECK
Hmm really? That's interesting, where did you read this George?
Let me know please...

I added your link to the first post. :)

i read it at http://searchengineforums.com/ - use to be a frequent member there :D

eva2000 01-19-2003 07:08 PM

i believe under the heading of doorway pages

http://searchengineforums.com/search...orum::Forum14/

TECK 01-19-2003 07:13 PM

Aha, they don't day nothing about linking to the front page?
I know for a fact that if you place a link to the front page the crawlers will spend less time on your archive.
Look the way he posted the explanation:
Quote:

You do not need to submit each page of your site to search engines. Instead spend more time in collecting links.
Link your doorway pages [high]from[/high] your home page.
In other words, you link your home page to archive page, not viceversa.

Floris 01-19-2003 08:09 PM

Ok, I have time now to upgrade to 1.2, but I no longer have the previous install script. So .. guess I am out of luck :) Unless you want to send it to me.

codewebs 01-19-2003 08:19 PM

Quote:

Originally posted by TECK

Heh, I didn't make it? Post the code to compare it.
You contradict yourself, you say that I didn't even make the code first... but that the code is not the same...
I don't ripp code from others. Use their code instead, since is not my own code, ok?

im saying it isnt your original idea! I didnt want to argue but your additude makes me so mad!

TECK 01-19-2003 08:25 PM

So? Is vBulletin software the first bulletin board released to the public? No.
And the idea was in my mind, I didn't borrow it from others, the same way like vBulletin did also with their software. Is the way you write your code that counts.

BTW, your attitude also made me mad, especially when you know I do help many people on my forums (including you) and I try to be useful to all.
Remarks like "is not your code", etc... are very unpleasant.

TECK 01-19-2003 08:26 PM

Floris, I don't have the old script.
However, the code changes can be performed easy.
Related to the templates, run this query for each template name you want removed (make sure you revert it to original BEFORE you run the query):[sql]DELETE FROM template WHERE title='yourtemplate' AND templatesetid=-1[/sql]

Floris 01-19-2003 08:27 PM

Can you girls stop +++++ing at eachother?

Floris 01-19-2003 08:28 PM

Quote:

Originally posted by TECK
Floris, I don't have the old script.
However, the code changes can be performed easy.
Related to the templates, run this query for each template name you want removed (make sure you revert it to original BEFORE you run the query):[sql]DELETE FROM template WHERE title='yourtemplate' AND templatesetid=-1[/sql]

Ah, so all uninstall did was remove those added templates? ok.

codewebs 01-19-2003 08:30 PM

:( I cant figure out how to:

DELETE FROM template WHERE title='home_archive' AND templatesetid=-1

i looked at how to run queries, but at the bottom of the right page is (in phpmyadmin:

Create new table on database codeweb_vbulletin :
Name :
Fields :

TECK 01-19-2003 08:31 PM

Ok, I'll make a script for you, hold on....

codewebs 01-19-2003 08:37 PM

eeks i got it :( so will the vbhome addon work like forums.site.com and www.site.com/forums? but not this one? i might be misunderstanding u

TECK 01-19-2003 08:41 PM

Create a file with the contents:
PHP Code:

<?php
error_reporting
E_ALL & ~E_NOTICE );
include_once( 
'./global.php' );

cpheader();

$DB_site->reporterror 1;

function 
killtemplate$title $templatesetid=-)
{
  global 
$DB_site;

  
$DB_site->query("
    DELETE FROM template
    WHERE title='" 
addslashes$title ) . "' AND templatesetid=-1
  "
);
  echo 
"Removing <font color='#006699'><tt>$title</tt></font> template... Done.<br>\n";
}

// Change the teplate names for the ones you want removed
// (make sure you revert them to original before that)

$tplname01 'home_archive';
$tplname02 'home_archiveforum';
// $tplname03 = 'home_archivethread'; // add in the same way other template names

killtemplate$tplname01 );
killtemplate$tplname02 );
// killtemplate( $tplname03 ); // add for each new template title a line, like this one

cpfooter();

?>

Make SURE you include in the file all templates you want to remove.
Also, make SURE they are reverted to original.

Save the file as removetemplate.php and run it onto your /admin folder.
Hope that helps.

TECK 01-19-2003 08:43 PM

Quote:

Originally posted by codewebs
eeks i got it :( so will the vbhome addon work like forums.site.com and www.site.com/forums? but not this one? i might be misunderstanding u
Both will, if you edit the code.
The vbHome one works as default because it has it's own global.php file.

In the vBulletin one, all you have to do is add, at the top of each archive file, the $bburl variable, unmasked.
Sort of like:
Code:

<?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,archive_categorytitle,archive_forumtitle,archive_homeinfo';
require_once( './global.php' );
$bburl = 'http://yoursite.com/forums';

If you search my forums, you will see why is better to use the vbHome add-on.

codewebs 01-19-2003 08:55 PM

i guess i just do everything wrong :(

http://www.codewebs.com/archive

no forums

TECK 01-19-2003 08:57 PM

This is an vbHome add-on, go over my forums, I will help you there. :)

VampireMan 01-19-2003 09:20 PM

I purchased Vb.29 yesterday , i must say there are a lot of hacks out there , but this is the first i have installed properly & full time...

Re-Setup the forum about 3 times so far just testing out various hacks and addons.

But by far this is the best i have installed & am impressed at the level of coding. Nice job ....

Now i have the wonderfull task of finding a portal to install :/

TECK 01-19-2003 11:46 PM

Glad you like it...
The hack was designed to be very user friendly, with very little code to be edited.

Btw, codeweb have a new shiny archive online now:
http://www.codewebs.com/archive/

Look how Inktomi is spidering my archive as we speak...

TECK 01-20-2003 05:26 AM

Hmmmmmm... I'm really pissed... you see the [high]crawler918.com[/high] in the pic above?
That's a spy. Read more here about it.

To block the scums, add onto htaccess.txt file, at the top, this information:
Code:

Order allow,deny
Allow from all
Deny from 12.148.196.
Deny from 12.148.209.

then upload the file and rename it to .htaccess
That will block them for good, damn crooks.

eva2000 01-20-2003 04:38 PM

Quote:

Originally posted by TECK
Hmmmmmm... I'm really pissed... you see the [high]crawler918.com[/high] in the pic above?
That's a spy. Read more here about it.

To block the scums, add onto htaccess.txt file, at the top, this information:
Code:

<limit GET>
order allow,deny
deny from 12.148.196.
deny from 12.148.209.
allow from all
</limit>

then upload the file and rename it to .htaccess
That will block them for good, damn crooks.

thanks for that :)

crocket 01-20-2003 07:53 PM

PHP Code:

Fatal errorCall to undefined function: archive_navbar() in /home/lcdmod/public_html/forums/forumdisplay on line 23 

Im getting that error when i click on a link :(

whats the problem :)


http://lcdmod.com/forums/archive

Thank You
Crocket


All times are GMT. The time now is 06:13 PM.

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.01693 seconds
  • Memory Usage 1,843KB
  • 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
  • (5)bbcode_code_printable
  • (2)bbcode_php_printable
  • (12)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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