phpBB2 by Przemo
Support forów phpBB2 modified by Przemo

FAQFAQ - PIERWSZA POMOC!!  regulaminREGULAMIN  SzukajSZUKAJ  UżytkownicyUżytkownicy  GrupyGrupy  StatystykiStatystyki
RejestracjaRejestracja  ZalogujZaloguj  DownloadDownload  katalog Forów DyskusyjnychKatalog Forów   FAQ Video tutoriale

Poprzedni temat «» Następny temat
Google and others
Autor Wiadomość
knnknn


Posty: 56
Wysłany: 31-05-2004, 01:58   Google and others

Can I ask you a question? If you applied the Google mod correctly (= Google can spider your site) then why isn't http://www.przemo.org/phpBB2/forum spidered yet?

I personally would implement a mod to get rid of any and all session ids (?sid=). Is there such a mod?

Able2Know.com talks about it:
http://www.able2know.com/...pic.php?t=15132
_________________
http://www.ebooks-download.com
http://www.in-my-opinion.org
Ostatnio zmieniony przez knnknn 03-06-2004, 11:36, w całości zmieniany 1 raz  
 
     
Gadatliwa Kasia 

   
Przemo



Pomógł: 210 razy
Posty: 3148
Wysłany: 31-05-2004, 02:03   

Here is implemented early google mod which is weak... It is verry difficult problem with google and other search engines. Maybe in the future I will add in my package full and right google mod.
 
     
knnknn


Posty: 56
Wysłany: 09-06-2004, 20:27   

Why don't you implement
http://www.phpbb.com/phpBB/viewtopic.php?t=32328
or
http://www.phpbb.com/phpBB/viewtopic.php?t=150631
_________________
http://www.ebooks-download.com
http://www.in-my-opinion.org
 
     
Przemo



Pomógł: 210 razy
Posty: 3148
Wysłany: 09-06-2004, 22:41   

It is implemented but it doesn't work correctly. I plane to implement full google/bots "compatibility" but it is a trouble.
 
     
knnknn


Posty: 56
Wysłany: 10-06-2004, 00:59   

Why trouble? I change that line and google spiders all of my forums
_________________
http://www.ebooks-download.com
http://www.in-my-opinion.org
 
     
Przemo



Pomógł: 210 razy
Posty: 3148
Wysłany: 10-06-2004, 01:43   

No, to google spiders all forums you have to do many many hard changes, you must reduce links etc.
 
     
knnknn


Posty: 56
Wysłany: 10-06-2004, 02:32   Works in my forum

Cytat:
No, to google spiders all forums you have to do many many hard changes, you must reduce links

Where do you have this from?

Just check in Google how many page are spidered of my forum matrix-explained.com:
http://www.google.com/sea...x-explained.com

I have just changed this 1 line in sessions.php
_________________
http://www.ebooks-download.com
http://www.in-my-opinion.org
 
     
leking


Posty: 76
Wysłany: 11-07-2004, 01:56   

still doesn't spider all my pages
 
     
knnknn


Posty: 56
Wysłany: 11-07-2004, 02:12   

Cytat:
still doesn't spider all my pages


This is my forum where I implemented the fix:
http://www.google.com/sea...um=100&filter=0
Google spidered fast. These are not all pages of my forum, but since the last spidering I implemented another fix to make google spider more
_________________
http://www.ebooks-download.com
http://www.in-my-opinion.org
 
     
leking


Posty: 76
Wysłany: 11-07-2004, 02:16   

but for instance check mine

http://www.google.com/sea...um=100&filter=0

nothing

i don't know why

this is right i assume?

Cytat:
function append_sid($url, $non_html_amp = false)
{
global $SID, $HTTP_SERVER_VARS;

if ( !empty($SID) && !eregi('sid=', $url) && !strstr($HTTP_SERVER_VARS['HTTP_USER_AGENT'] ,'Googlebot') && !strstr($HTTP_SERVER_VARS['HTTP_USER_AGENT'] ,'slurp@inktomi.com;'))
{
$url .= ( ( strpos($url, '?') != false ) ? ( ( $non_html_amp ) ? '&' : '&' ) : '?' ) . $SID;
}

return $url;
}
 
     
knnknn


Posty: 56
Wysłany: 11-07-2004, 02:39   

When did you install it?

I have by the way a better one:

Kod:
        global $SID, $HTTP_SERVER_VARS;
        if ( !empty($SID) && !preg_match('#sid=#', $url)
                &&
                (
                   stristr($HTTP_SERVER_VARS['HTTP_USER_AGENT'] ,'mozilla')
                || stristr($HTTP_SERVER_VARS['HTTP_USER_AGENT'] ,'msie')
                || stristr($HTTP_SERVER_VARS['HTTP_USER_AGENT'] ,'opera')
                || stristr($HTTP_SERVER_VARS['HTTP_USER_AGENT'] ,'netscape')
                || stristr($HTTP_SERVER_VARS['HTTP_USER_AGENT'] ,'internet explorer')
                || stristr($HTTP_SERVER_VARS['HTTP_USER_AGENT'] ,'gecko')
                || stristr($HTTP_SERVER_VARS['HTTP_USER_AGENT'] ,'nav')
                || stristr($HTTP_SERVER_VARS['HTTP_USER_AGENT'] ,'konqueror')
                )
           )

    {
        $url .= ( ( strpos($url, '?') != false ) ?  ( ( $non_html_amp ) ? '&' : '&' ) : '?' ) . $SID;
    }


[ Added: 11-07-2004, 03:41 ]
In other words: Instead of allowing only Google and Inktomi to spider, you allow all search engines to spider

[ Added: 11-07-2004, 03:43 ]
I also added the able2know MOD, that changed the "viewtopic.php?p=6789#6789" to "post-6789.html"
_________________
http://www.ebooks-download.com
http://www.in-my-opinion.org
 
     
leking


Posty: 76
Wysłany: 11-07-2004, 02:55   

thanks, well done. i'll report back soon

[ Added: 11-07-2004, 22:41 ]
still nothing, do you think its because i have guest posting set as off?
 
     
lekingg
Gość
Wysłany: 12-07-2004, 21:21   

damn you przemo, and your added to post!

anyhow, still no other pages of my site have been spidered?
 
     
knnknn


Posty: 56
Wysłany: 12-07-2004, 21:58   

Cytat:
anyhow, still no other pages of my site have been spidered?
Google doesn't spider every day. Google spiders several times per month. Sometimes less.
_________________
http://www.ebooks-download.com
http://www.in-my-opinion.org
 
     
Gadatliwa Kasia 

   
leking


Posty: 76
Wysłany: 16-07-2004, 17:32   

the number of pages keeps reducing if anything!!!
 
     
Wyświetl posty z ostatnich:   
Odpowiedz do tematu
Nie możesz pisać nowych tematów
Nie możesz odpowiadać w tematach
Nie możesz zmieniać swoich postów
Nie możesz usuwać swoich postów
Nie możesz głosować w ankietach
Możesz załączać pliki na tym forum
Możesz ściągać załączniki na tym forum
Dodaj temat do Ulubionych
Wersja do druku

Skocz do:  

Kopiowanie wszelkich treści zawartych na forum, modyfikacji oraz instrukcji bez zgody administracji i autorów tematów/postów zabronione!

Powered by phpBB modified by Przemo © 2003 phpBB
Strona wygenerowana w 0,07 sekundy. Zapytań do SQL: 11
Polecane serwisy

Najlepsze oprogramowanie do prowadzenia sklepu internetowegoNajlepszy program do sklepu firmowany przez Przem'a

Sklep z gadżetami

serwis laptopów

phpbb

Polisy Ubezpieczeniowe TU Europa

Design Cart - Tworzenie sklepu internetowego

dnirozwoju.pl

Ranking Hostingów HostingOnline.pl

• Zamów reklamę