Google sitemap goes blank

The GYM Sitemaps & RSS module for phpBB. Sitemaps and RSS feeds for Google Yahoo! and MSN Live, support, add ons etc ...

Moderator: Moderators

Google sitemap goes blank

Postby NTH08 » Thu Jun 11, 2009 4:06 pm

Hi guys, I have a problem here. After install gyms itemap & rss, i can't access the google site map. When i click on the link to site map, it goes blank. I don't know why. Please help me :?:
Code: Select all
http://thcsthanhda.info/forum/sitemapindex.xml.gz


My .htaccess (i install phpbb in a subfolder)
Code: Select all
# You may need to un-comment the following lines
Options +FollowSymlinks
# To make sure that rewritten dir or file (/|.html) will not load dir.php in case it exist
Options -MultiViews
# REMEBER YOU ONLY NEED TO STARD MOD REWRITE ONCE
RewriteEngine On
# REWRITE BASE
RewriteBase /
# HERE IS A GOOD PLACE TO FORCE CANONICAL DOMAIN
# RewriteCond %{HTTP_HOST} !^thcsthanhda\.info$ [NC]
# RewriteRule ^(.*)$ http://thcsthanhda.info/$1 [QSA,L,R=301]

# DO NOT GO FURTHER IF THE REQUESTED FILE / DIR DOES EXISTS
RewriteCond %{REQUEST_FILENAME} -f
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule . - [L]
#####################################################
# PHPBB SEO REWRITE RULES ALL MODES
#####################################################
# AUTHOR : dcz www.phpbb-seo.com
# STARTED : 01/2006
#################################
# FORUMS PAGES
###############
# FORUM INDEX REWRITERULE WOULD STAND HERE IF USED. "forum" REQUIRES TO BE SET AS FORUM INDEX
# RewriteRule ^forum/forum\.html$ /forum/index.php [QSA,L,NC]
# FORUM ALL MODES
RewriteRule ^forum/(forum|[a-z0-9_-]*-f)([0-9]+)/?(page([0-9]+)\.html)?$ /forum/viewforum.php?f=$2&start=$4 [QSA,L,NC]
# TOPIC WITH VIRTUAL FOLDER ALL MODES
RewriteRule ^forum/(forum|[a-z0-9_-]*-f)([0-9]+)/(topic|[a-z0-9_-]*-t)([0-9]+)(-([0-9]+))?\.html$ /forum/viewtopic.php?f=$2&t=$4&start=$6 [QSA,L,NC]
# GLOBAL ANNOUNCES WITH VIRTUAL FOLDER ALL MODES
RewriteRule ^forum/announces/(topic|[a-z0-9_-]*-t)([0-9]+)(-([0-9]+))?\.html$ /forum/viewtopic.php?t=$2&start=$4 [QSA,L,NC]
# TOPIC WITHOUT FORUM ID & DELIM ALL MODES
RewriteRule ^forum/([a-z0-9_-]*)/?(topic|[a-z0-9_-]*-t)([0-9]+)(-([0-9]+))?\.html$ /forum/viewtopic.php?forum_uri=$1&t=$3&start=$5 [QSA,L,NC]
# PHPBB FILES ALL MODES
RewriteRule ^forum/resources/[a-z0-9_-]+/(thumb/)?([0-9]+)$ /forum/download/file.php?id=$2&t=$1 [QSA,L,NC]
# PROFILES THROUGH USERNAME
RewriteRule ^forum/member/([^/]+)/?$ /forum/memberlist.php?mode=viewprofile&un=$1 [QSA,L,NC]
# USER MESSAGES THROUGH USERNAME
RewriteRule ^forum/member/([^/]+)/(topics|posts)/?(page([0-9]+)\.html)?$ /forum/search.php?author=$1&sr=$2&start=$4 [QSA,L,NC]
# GROUPS ALL MODES
RewriteRule ^forum/(group|[a-z0-9_-]*-g)([0-9]+)(-([0-9]+))?\.html$ /forum/memberlist.php?mode=group&g=$2&start=$4 [QSA,L,NC]
# POST
RewriteRule ^forum/post([0-9]+)\.html$ /forum/viewtopic.php?p=$1 [QSA,L,NC]
# ACTIVE TOPICS
RewriteRule ^forum/active-topics(-([0-9]+))?\.html$ /forum/search.php?search_id=active_topics&start=$2&sr=topics [QSA,L,NC]
# UNANSWERED TOPICS
RewriteRule ^forum/unanswered(-([0-9]+))?\.html$ /forum/search.php?search_id=unanswered&start=$2&sr=topics [QSA,L,NC]
# NEW POSTS
RewriteRule ^forum/newposts(-([0-9]+))?\.html$ /forum/search.php?search_id=newposts&start=$2&sr=topics [QSA,L,NC]
# THE TEAM
RewriteRule ^forum/the-team\.html$ /forum/memberlist.php?mode=leaders [QSA,L,NC]
# HERE IS A GOOD PLACE TO ADD OTHER PHPBB RELATED REWRITERULES

#####################################################
# GYM Sitemaps & RSS
# Global channels
RewriteRule ^forum/rss(/(news)+)?(/(digest)+)?(/(short|long)+)?/?$ /forum/gymrss.php?channels&$2&$4&$6 [QSA,L,NC]
# HTML Global news & maps
RewriteRule ^forum/(news|maps)/?(page([0-9]+)\.html)?$ /forum/map.php?$1&start=$3 [QSA,L,NC]
# END GYM Sitemaps & RSS
#####################################################

# FORUM WITHOUT ID & DELIM ALL MODES (SAME DELIM)
# THESE THREE LINES MUST BE LOCATED AT THE END OF YOUR HTACCESS TO WORK PROPERLY
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^forum/([a-z0-9_-]+)/?(page([0-9]+)\.html)?$ /forum/viewforum.php?forum_uri=$1&start=$3 [QSA,L,NC]
# END PHPBB PAGES
#####################################################

#####################################################
# GYM Sitemaps & RSS
# HTML Module additional modes
RewriteRule ^forum/(news|maps)/([a-z0-9_-]+)(/([a-z0-9_-]+))?/?(page([0-9]+)\.html)?$ /forum/map.php?$2=$4&$1&start=$6 [QSA,L,NC]
# Main feeds & channels
RewriteRule ^forum/rss(/(news)+)?(/(digest)+)?(/(short|long)+)?(/([a-z0-9_-]+))?/([a-z0-9_]+)\.xml(\.gz)?$ /forum/gymrss.php?$9=$8&$2&$4&$6&gzip=$10 [QSA,L,NC]
# Module feeds
RewriteRule ^forum/[a-z0-9_-]*-[a-z]{1}([0-9]+)(/(news)+)?(/(digest)+)?(/(short|long)+)?/([a-z0-9_]+)\.xml(\.gz)?$ /forum/gymrss.php?$8=$1&$3&$5&$7&gzip=$9 [QSA,L,NC]
# Module feeds without ids
RewriteRule ^forum/([a-z0-9_-]+)(/(news)+)?(/(digest)+)?(/(short|long)+)?/([a-z0-9_]+)\.xml(\.gz)?$ /forum/gymrss.php?nametoid=$1&$3&$5&$7&modulename=$8&gzip=$9 [QSA,L,NC]
# Google SitemapIndex
RewriteRule ^forum/sitemapindex\.xml(\.gz)?$ /forum/sitemap.php?gzip=$1 [QSA,L,NC]
# Module cat sitemaps
RewriteRule ^forum/[a-z0-9_-]+-([a-z]{1})([0-9]+)\.xml(\.gz)?$ /forum/sitemap.php?module_sep=$1&module_sub=$2&gzip=$3 [QSA,L,NC]
# Module sitemaps
RewriteRule ^forum/([a-z0-9_]+)-([a-z0-9_-]+)\.xml(\.gz)?$ /forum/sitemap.php?$1=$2&gzip=$3 [QSA,L,NC]
# END GYM Sitemaps & RSS
#####################################################

<Files ~ "^.(htaccess|htpasswd)$">
deny from all
</Files>
ErrorDocument 400 /400.shtml
ErrorDocument 401 /401.shtml
ErrorDocument 403 /403.shtml
ErrorDocument 404 /404.shtml
ErrorDocument 500 /500.shtml
order deny,allow


P.s: this one is fine. I don't understand :|
Code: Select all
http://thcsthanhda.info/forum/maps/
NTH08
 
Posts: 8
Joined: Sun Jan 25, 2009 4:56 am

Advertisement

Re: Google sitemap goes blank

Postby dcz » Fri Jun 12, 2009 8:18 am

And rss feeds to by the way. hum.

Try to activate debugg in your config.php to see if you get any error message, just replace :
Code: Select all
// @define('DEBUG', true);
// @define('DEBUG_EXTRA', true);

with :
Code: Select all
@define('DEBUG', true);
@define('DEBUG_EXTRA', true);


When did you download the mod ?
Because if you did it before this post : GYM Sitemaps & RSS module 2.0.RC5
There might be an issue related to what was fixed, but I kind of doubt it.

++
Useful links :
SEO Forum || SEO Directory || SEO phpBB || Search
____________________

Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Recherche
dcz
Admin
Admin
 
Posts: 21291
Joined: Fri Apr 28, 2006 9:03 pm

Re: Google sitemap goes blank

Postby NTH08 » Fri Jun 12, 2009 8:44 am

i got these lines when activate debug mode, but it's not from gym (ABBC3 actually :oops: )
Code: Select all
[phpBB Debug] PHP Notice: in file /language/vi/mods/abbcode.php on line 163: Undefined index: CODE
[phpBB Debug] PHP Notice: in file /language/vi/mods/abbcode.php on line 446: Undefined variable: user
[phpBB Debug] PHP Notice: in file /language/vi/mods/abbcode.php on line 446: Trying to get property of non-object
[phpBB Debug] PHP Notice: in file /language/vi/mods/abbcode.php on line 488: Undefined variable: config
[phpBB Debug] PHP Notice: in file /index.php on line 231: Undefined variable: last_registered_users
[phpBB Debug] PHP Notice: in file /language/vi/mods/abbcode.php on line 446: Undefined variable: user
[phpBB Debug] PHP Notice: in file /language/vi/mods/abbcode.php on line 446: Trying to get property of non-object
[phpBB Debug] PHP Notice: in file /language/vi/mods/abbcode.php on line 488: Undefined variable: config
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3900: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3279)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3902: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3279)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3903: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3279)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3904: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3279)


btw, i use GYM Sitemaps & RSS module 2.0.RC5
NTH08
 
Posts: 8
Joined: Sun Jan 25, 2009 4:56 am

Re: Google sitemap goes blank

Postby dcz » Fri Jun 12, 2009 8:57 am

mm, that's weird, because gymrss.php and map.php do start the phpBB sessions the same way.

Do you have a link to where the abbcode.php can be seen ? Because it's an issue with that file.

++
Useful links :
SEO Forum || SEO Directory || SEO phpBB || Search
____________________

Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Recherche
dcz
Admin
Admin
 
Posts: 21291
Joined: Fri Apr 28, 2006 9:03 pm

Re: Google sitemap goes blank

Postby NTH08 » Fri Jun 12, 2009 12:49 pm

the ABBC3's author said that it wasn't fully compatible with 3.0.5 and he was working on it :wink:
Anyway, here it is
http://thcsthanhda.info/abbcode.txt
NTH08
 
Posts: 8
Joined: Sun Jan 25, 2009 4:56 am

Re: Google sitemap goes blank

Postby dcz » Fri Jun 12, 2009 1:53 pm

Oh, i see, he's assuming that pretty much all language files are loaded, and besides, must be loading it language file in all case, even when it's not necessary, like in sitemaps.

Quick fix, replace all :
Code: Select all
$lang

with :
Code: Select all
@$user->lang['CODE']

since the $lang array is not to be used, and then all :
Code: Select all
$user->

with :
Code: Select all
@$user->

and all :
Code: Select all
$config

with :
Code: Select all
@$config


Should do the trick until the mods gets fixed for 3.0.5.

++
Useful links :
SEO Forum || SEO Directory || SEO phpBB || Search
____________________

Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Recherche
dcz
Admin
Admin
 
Posts: 21291
Joined: Fri Apr 28, 2006 9:03 pm

Re: Google sitemap goes blank

Postby NTH08 » Sat Jun 13, 2009 12:46 pm

I fixed the sitemap. File was corrupped in transfer ( what ashame :oops: )
I'll try your trick :D
NTH08
 
Posts: 8
Joined: Sun Jan 25, 2009 4:56 am


Return to GYM Sitemaps & RSS

 


  • Related topics
    Replies
    Views
    Last post

Who is online

Users browsing this forum: No registered users and 4 guests