[Support]SEO Zero Duplicate & Gallery

Zero duplicate support forum. Personalized HTTP 301 dynamic redirections for phpBB.

Moderator: Moderators

[Support]SEO Zero Duplicate & Gallery

Postby Ally » Mon Mar 07, 2011 8:56 pm

I installed the Zero Duplicate but it seems I have problems with the gallery by nickvergessen:
http://rpgmkr.net/forum/gallery/screen-contest-a2/

Here the my .htacces:
Code: Select all
        # Lines That should already be in your .htacess
        <Files "config.php">
        Order Allow,Deny
        Deny from All
        </Files>
        <Files "common.php">
        Order Allow,Deny
        Deny from All
        </Files>

        # 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
        # Uncomment the statement below if you want to make use of
        # HTTP authentication and it does not already work.
        # This could be required if you are for example using PHP via Apache CGI.
        # RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
        # REWRITE BASE
        RewriteBase /
        # HERE IS A GOOD PLACE TO FORCE CANONICAL DOMAIN
        # RewriteCond %{HTTP_HOST} !^rpgmkr\.net$ [NC]
        # RewriteRule ^(.*)$ http://rpgmkr.net/$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]
        # 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 ALL MODES WITH ID
        RewriteRule ^forum/(member|[a-z0-9_-]*-u)([0-9]+)\.html$ /forum/memberlist.php?mode=viewprofile&u=$2 [QSA,L,NC]
        # USER MESSAGES ALL MODES WITH ID
        RewriteRule ^forum/(member|[a-z0-9_-]*-u)([0-9]+)-(topics|posts)(-([0-9]+))?\.html$ /forum/search.php?author_id=$2&sr=$3&start=$5 [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]
        # UNREAD POSTS
        RewriteRule ^forum/unreadposts(-([0-9]+))?\.html$ /forum/search.php?search_id=unreadposts&start=$2 [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
        # 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]
        # FIX RELATIVE PATHS : FILES
        RewriteRule ^forum/.+/(style\.php|ucp\.php|mcp\.php|faq\.php|download/file.php)$ /forum/$1 [QSA,L,NC,R=301]
        # FIX RELATIVE PATHS : IMAGES
        RewriteRule ^forum/.+/(styles/.*|images/.*)/$ /forum/$1 [QSA,L,NC,R=301]
        # END PHPBB PAGES
        #####################################################

        #####################################################
        # PHPBB GALLERY REWRITE RULES
        # AUTHOR : dcz http://www.phpbb-seo.com/
        # STARTED : 2009/01/15
        # ALBUM INDEX
        RewriteRule ^forum/gallery/$ /forum/gallery/index.php [QSA,L,NC]
        # ALBUM
        RewriteRule ^forum/gallery/[a-z0-9_-]*{DELIM_ALBUM}([0-9]+){ALBUM_PAGINATION}$ /forum/gallery/album.php?album_id=$1&start=$3 [QSA,L,NC]
        # PERSONAL ALBUMS
        RewriteRule ^forum/gallery/{STATIC_ALBUM_USER}{ALBUM_USER_PAGINATION}$ /forum/gallery/index.php?mode=personal&start=$2 [QSA,L,NC]
        # PIC PAGE
        RewriteRule ^forum/gallery/[a-z0-9_-]*({DELIM_ALBUM}([0-9]+)/)?[a-z0-9_-]*{DELIM_PIC}([0-9]+){PIC_PAGINATION}$ /forum/gallery/image_page.php?album_id=$2&image_id=$3&start=$5 [QSA,L,NC]
        # JGP
        RewriteRule ^forum/gallery/[a-z0-9_-]*({DELIM_ALBUM}([0-9]+)/)?[a-z0-9_-]*{DELIM_IPIC}([0-9]+){EXT_IPIC}$ /forum/gallery/image.php?album_id=$2&image_id=$3 [QSA,L,NC]
        # JGP THUMBNAILS
        RewriteRule ^forum/gallery/[a-z0-9_-]*({DELIM_ALBUM}([0-9]+)/)?[a-z0-9_-]*{DELIM_ITHUMB}([0-9]+){EXT_IPIC}$ /forum/gallery/image.php?mode=thumbnail&album_id=$2&image_id=$3 [QSA,L,NC]
        # JGP MEDIUM
        RewriteRule ^forum/gallery/[a-z0-9_-]*({DELIM_ALBUM}([0-9]+)/)?[a-z0-9_-]*{DELIM_IMED}([0-9]+){EXT_IPIC}$ /forum/gallery/image.php?mode=medium&album_id=$2&image_id=$3 [QSA,L,NC]
        # END PHPBB GALLERY
        #####################################################


        #####################################################
        # 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,2}([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,2})([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
        #####################################################


It's really urgent, thanks for your support. ;)
Ally
 
Posts: 31
Joined: Sun Sep 05, 2010 7:12 pm

Advertisement

Re: [Support]SEO Zero Duplicate & Gallery

Postby dcz » Wed Mar 09, 2011 7:53 am

What is not working exactly ? Cause now, everything seems in order.
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: [Support]SEO Zero Duplicate & Gallery

Postby Posluzitelj » Tue Apr 19, 2011 7:09 pm

Hi
I'm using seo ultimate and I was instaled zero duplicate on my forum...forum works without problem, but not redirecting :(
And I can't find "Zero duplicate" mod in ACP phpBB SEO => phpbb seo class settings
If I understand well,
http://goo.gl/i5sHJ
should be redirecting to
http://goo.gl/wEtvM
but it's not happening...
before install I was respect advice about robot txt (undo step about robots.txt recomended when installing ultimate SEO)
And now I was obligated to put robots.txt back.
Anyone can tell me what I did wrong?
Thank you!
User avatar
Posluzitelj
 
Posts: 19
Joined: Fri Apr 08, 2011 1:11 am
Location: Spain

Re: [Support]SEO Zero Duplicate & Gallery

Postby dcz » Thu Apr 21, 2011 2:41 pm

If you can't find the setting in acp, then you cannot activate it, so it cannot work.

Go through the install again, make sure all your files are up to date, and it should work.
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: [Support]SEO Zero Duplicate & Gallery

Postby Posluzitelj » Thu Apr 21, 2011 4:37 pm

Thank you dcz
I was forget to make changes in phpbb_seo/includes/setup_phpbb_seo.php
Now everything works fine
User avatar
Posluzitelj
 
Posts: 19
Joined: Fri Apr 08, 2011 1:11 am
Location: Spain


Return to Zero duplicate

 


  • Related topics
    Replies
    Views
    Last post

Who is online

Users browsing this forum: No registered users and 5 guests