9
   

phpBB Search Engine Optimization - Sessions, static ( SEO )

 
 
Craven de Kere
 
  1  
Fri 25 Feb, 2005 10:44 am
hony wrote:
Hi Craven, any compatibility issues with the mod and 2.0.12?



Works fine under 2.0.12, I have already done dozens of installs on the new phpBB version.
0 Replies
 
mwm
 
  1  
Fri 25 Feb, 2005 11:16 am
The page cannot be found
My forum not generate the page html

The page cannot be found
The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
0 Replies
 
mwm
 
  1  
Fri 25 Feb, 2005 11:17 am
The page cannot be found
My forum not generate the page html

The page cannot be found
The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
0 Replies
 
mwm
 
  1  
Fri 25 Feb, 2005 11:17 am
My forum not generate the page html

The page cannot be found
The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
0 Replies
 
mwm
 
  1  
Fri 25 Feb, 2005 11:17 am
My forum not generate the page html

The page cannot be found
The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
0 Replies
 
o2
 
  1  
Fri 25 Feb, 2005 03:31 pm
You didn't add stuff into htacess file.
0 Replies
 
hony
 
  1  
Fri 25 Feb, 2005 08:07 pm
Craven de Kere wrote:
Works fine under 2.0.12, I have already done dozens of installs on the new phpBB version.


Thank you Craven. Very Happy
0 Replies
 
Paulus
 
  1  
Sat 26 Feb, 2005 01:52 am
Since a couple of days I have the SEO mod installed with static html pages. Google has indexed the whole page with those static pages. But MSN is having big problems. MSN is getting session ids on the index page.

How is that possible?
0 Replies
 
VETTE
 
  1  
Tue 1 Mar, 2005 10:55 am
Does this mod work on 2.0.13?
Hi - I have been using the mod for some time with great appriciation. I recently upgraded to version 2.0.13 and it seemed to break some of the SEO. Does anyone have any comments about the performance of this mod using 2.0.13
0 Replies
 
Paulus
 
  1  
Tue 1 Mar, 2005 11:11 am
I am using it with 2.0.13 and it is working good with google. Google has indexed today more than 100 topics on my domain. Only msn is doing weird. It only visits my index.php and robots.txt
0 Replies
 
VETTE
 
  1  
Tue 1 Mar, 2005 02:24 pm
Paulus wrote:
I am using it with 2.0.13 and it is working good with google. Google has indexed today more than 100 topics on my domain. Only msn is doing weird. It only visits my index.php and robots.txt


Are you using the mod rewright portion of the mod? Is that working correctly?
0 Replies
 
Paulus
 
  1  
Tue 1 Mar, 2005 02:27 pm
VETTE wrote:
Paulus wrote:
I am using it with 2.0.13 and it is working good with google. Google has indexed today more than 100 topics on my domain. Only msn is doing weird. It only visits my index.php and robots.txt


Are you using the mod rewright portion of the mod? Is that working correctly?


The mod_rewrite?

Yes, I do.
0 Replies
 
Paulus
 
  1  
Wed 2 Mar, 2005 03:30 am
Nobody has the same problem with MSN as I do?

In my logfiles MSN is only visiting /robots.txt /index.php and:

207.46.98.77 - - [02/Mar/2005:03:51:48 +0100] "GET /index.php?sid=40ac100e100d2a73a83a553d1ead93ed HTTP/1.0" 200 21855 "-" "msnbot/1.0 (+http://search.msn.com/msnbot.htm)"

And google never visits a page with an session id.
0 Replies
 
VETTE
 
  1  
Wed 2 Mar, 2005 09:50 am
Craven de Kere wrote:
Works fine under 2.0.12, I have already done dozens of installs on the new phpBB version.


Craven - Have you had to make any other changes for 2.0.13? I seem to be getting errors on the mod_rewrite-
0 Replies
 
VETTE
 
  1  
Wed 2 Mar, 2005 09:52 am
Paulus wrote:
Nobody has the same problem with MSN as I do?



I am not having problems with msn over 600 crawls since update
0 Replies
 
993ti
 
  1  
Wed 2 Mar, 2005 04:55 pm
VETTE: You can use it with phpbb 2.0.13
No probs here :wink:
0 Replies
 
web-rover
 
  1  
Thu 3 Mar, 2005 04:48 pm
Does this work with integramod?
0 Replies
 
993ti
 
  1  
Fri 4 Mar, 2005 03:23 pm
It works with integramod with some minor tweaks.
0 Replies
 
on way to fame
 
  1  
Sun 6 Mar, 2005 02:45 pm
Hi Craven thanks for this great mod.

I have uploaded it and it works great..but i want to remove certain features, how can i possibly do this ?

1) Show avatars to guests as well.
2) Show Personal Info (Profile, msn, etc)
3) Show stats info to guests (very important)
4) how do i update the header ..it still shows the forum name..in front of the topic titles..

any help would be greatly appreciated
Thanks
Ashish
0 Replies
 
993ti
 
  1  
Tue 8 Mar, 2005 08:38 am
Skip this if you want to show:
Signatures
Code:#
#-----[ FIND ]------------------------------------------
#

$user_sig = ( $postrow[$i]['enable_sig'] && $postrow[$i]['user_sig'] != '' && $board_config['allow_sig'] ) ? $postrow[$i]['user_sig'] : '';


#
#-----[ REPLACE WITH ]------------------------------------
#

$user_sig = ( $postrow[$i]['enable_sig'] && $postrow[$i]['user_sig'] != '' && $board_config['allow_sig'] && $userdata['session_logged_in'] ) ? $postrow[$i]['user_sig'] : '';


Avatars
Code:#
#-----[ FIND ]------------------------------------------
#

if ( $postrow[$i]['user_avatar_type'] && $poster_id != ANONYMOUS && $postrow[$i]['user_allowavatar'] )

#
#-----[ REPLACE WITH ]------------------------------------
#

if ( $userdata['session_logged_in'] && $postrow[$i]['user_avatar_type'] && $poster_id != ANONYMOUS && $postrow[$i]['user_allowavatar'] )


guests able to see the profilepage
Code:
#
#-----[ FIND ]------------------------------------------
#

if ( $poster_id != ANONYMOUS )
{
$temp_url = append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=$poster_id");

#
#-----[ REPLACE WITH ]------------------------------------
#

if ( $poster_id != ANONYMOUS && $userdata['session_logged_in'] )
{
$temp_url = append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=$poster_id");


Didn't try the last one though, i only skipped the first 2 parts.
0 Replies
 
 

Related Topics

SEO - Going from 0 PR on up - Discussion by jespah
How Rich Pins work ??? - Question by OnceUponAtime
Need a bit of Google advice - Question by bible quizzer
Google Indexing Issue - Question by brainstudioz
Bing Search results - Discussion by iankyra
What is best way for Off-Page seo in 2017? - Question by honesttravel1
 
Copyright © 2024 MadLab, LLC :: Terms of Service :: Privacy Policy :: Page generated in 0.04 seconds on 05/18/2024 at 08:29:37