[SOLVED] aeroblue style problem

phpBB3 SEO Advanced mod Rewrite support forum.
This mods performs URL rewriting for phpBB, injecting forums and topic titles in their URLs.

Moderator: Moderators

[SOLVED] aeroblue style problem

Postby kNiiz » Fri Jun 26, 2009 10:24 pm

Well, I have installed phpBB SEO Ultimate 0.6.0 in Advanced mode on a phpBB 3.0.5 forum. All is ok in subsilver2 style and prosilver style BUT not in my Aeroblue style (based on subsilver2). I have applied aeroblue code changes correctly... but the result is this: http://i41.tinypic.com/14mw6r8.png

I'm going crazy. I have deleted template cache and ALL. I have refresh my own cache. I don't understand this :|

Thanks.
Last edited by kNiiz on Sun Jun 28, 2009 4:25 pm, edited 2 times in total.
kNiiz
 
Posts: 4
Joined: Fri Jun 26, 2009 10:14 pm

Advertisement

Re: Big problem with Aeroblue style

Postby kNiiz » Sat Jun 27, 2009 1:04 pm

Ok... Today, when I'm going to login ACP, I see this in Styles -> Aeroblue details:

Template: prosilver
Theme: Aeroblue
Imageset: Aeroblue

I don't know why that is set to prosilver template... but all is ok now, so FIXED.
kNiiz
 
Posts: 4
Joined: Fri Jun 26, 2009 10:14 pm

Re: Big problem with Aeroblue style

Postby kNiiz » Sat Jun 27, 2009 1:43 pm

Now I've another problem... :?

When I'm going to post I receive something like that :www.myforum.com/topicXX.html but I plugged on the option "topic-title-tXX.html" instead of topic. And It's curious when I save my .htaccess in phpbb seo cache directory and move to root directory... because ALL directories in my host become in forbidden pages lol, so I need to copy-paste .htaccess from ACP > Phpbb seo rewritting settings.

My .htaccess:

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
    # REWRITE BASE
    RewriteBase /
    # HERE IS A GOOD PLACE TO FORCE CANONICAL DOMAIN
    # RewriteCond %{HTTP_HOST} !^sims3descargas\.com$ [NC]
    # RewriteRule ^(.*)$ http://sims3descargas.com/$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 ^forum\.html$ /foro/index.php [QSA,L,NC]
    # FORUM ALL MODES
    RewriteRule ^(forum|[a-z0-9_-]*-f)([0-9]+)(-([0-9]+))?\.html$ /foro/viewforum.php?f=$2&start=$4 [QSA,L,NC]
    # TOPIC WITH VIRTUAL FOLDER ALL MODES
    RewriteRule ^(forum|[a-z0-9_-]*-f)([0-9]+)/(topic|[a-z0-9_-]*-t)([0-9]+)(-([0-9]+))?\.html$ /foro/viewtopic.php?f=$2&t=$4&start=$6 [QSA,L,NC]
    # GLOBAL ANNOUNCES WITH VIRTUAL FOLDER ALL MODES
    RewriteRule ^announces/(topic|[a-z0-9_-]*-t)([0-9]+)(-([0-9]+))?\.html$ /foro/viewtopic.php?t=$2&start=$4 [QSA,L,NC]
    # TOPIC WITHOUT FORUM ID & DELIM ALL MODES
    RewriteRule ^([a-z0-9_-]*)/?(topic|[a-z0-9_-]*-t)([0-9]+)(-([0-9]+))?\.html$ /foro/viewtopic.php?forum_uri=$1&t=$3&start=$5 [QSA,L,NC]
    # PHPBB FILES ALL MODES
    RewriteRule ^resources/[a-z0-9_-]+/(thumb/)?([0-9]+)$ /foro/download/file.php?id=$2&t=$1 [QSA,L,NC]
    # PROFILES THROUGH USERNAME
    RewriteRule ^member/([^/]+)/?$ /foro/memberlist.php?mode=viewprofile&un=$1 [QSA,L,NC]
    # USER MESSAGES THROUGH USERNAME
    RewriteRule ^member/([^/]+)/(topics|posts)/?(page([0-9]+)\.html)?$ /foro/search.php?author=$1&sr=$2&start=$4 [QSA,L,NC]
    # GROUPS ALL MODES
    RewriteRule ^(group|[a-z0-9_-]*-g)([0-9]+)(-([0-9]+))?\.html$ /foro/memberlist.php?mode=group&g=$2&start=$4 [QSA,L,NC]
    # POST
    RewriteRule ^post([0-9]+)\.html$ /foro/viewtopic.php?p=$1 [QSA,L,NC]
    # ACTIVE TOPICS
    RewriteRule ^active-topics(-([0-9]+))?\.html$ /foro/search.php?search_id=active_topics&start=$2&sr=topics [QSA,L,NC]
    # UNANSWERED TOPICS
    RewriteRule ^unanswered(-([0-9]+))?\.html$ /foro/search.php?search_id=unanswered&start=$2&sr=topics [QSA,L,NC]
    # NEW POSTS
    RewriteRule ^newposts(-([0-9]+))?\.html$ /foro/search.php?search_id=newposts&start=$2&sr=topics [QSA,L,NC]
    # THE TEAM
    RewriteRule ^the-team\.html$ /foro/memberlist.php?mode=leaders [QSA,L,NC]
    # HERE IS A GOOD PLACE TO ADD OTHER PHPBB RELATED REWRITERULES

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



Thanks.
kNiiz
 
Posts: 4
Joined: Fri Jun 26, 2009 10:14 pm

Re: ._. problem 1 fixed, problem 2 not fixed :(

Postby dcz » Sun Jun 28, 2009 8:45 am

Did you select the advanced mode in acp ?
If you did, and did activate SQL rewriting, it is possible that you just synchronized your urls before the advanced mode was activated, in such case, you need to use the phpbb_seo/sync_url.php script again to a) empty the topic_url field and b) re-synchronize.

++
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: 21219
Joined: Fri Apr 28, 2006 9:03 pm

Re: ._. problem 1 fixed, problem 2 not fixed :(

Postby kNiiz » Sun Jun 28, 2009 4:25 pm

I don't made any change, today the problem was fixed itself =s.

All is ok now. Thanks for the reply :D
kNiiz
 
Posts: 4
Joined: Fri Jun 26, 2009 10:14 pm


Return to Advanced SEO URL

 


  • Related topics
    Replies
    Views
    Last post

Who is online

Users browsing this forum: No registered users and 2 guests