phpBB SEO
Boards
Directory  
SEO  
Downloads
  phpBB SEO : Search Engine Optimization, Directory, Forums  
Index
Forums
Annuaire
Référencement
Télécharger
 
  Search Rechercher
    Register
Username :  Password :  Log me on automatically each visit  
S'enregistrer  
 
   
Error Styles in phpBB3 SEO

 
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB3 mod Rewrite  » Advanced SEO URL
::  
Author Message
FaCh1T4



Joined: 01 Jul 2008
Posts: 3

Error Styles in phpBB3 SEOPosted: Tue Jul 01, 2008 12:13 am    Post subject: Error Styles in phpBB3 SEO

Installed succesfully but .. when i active the URL rewriting ... this is the problem with the style.
Look

http://img356.imageshack.us/img356/319/phpseo3no3.gif
http://img84.imageshack.us/img84/6259/phpseo32ik6.gif

Thanks...
fede


Last edited by FaCh1T4 on Tue Jul 01, 2008 9:48 pm; edited 1 time in total
Back to top
SeO
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 15 Mar 2006
Posts: 3477

Error Styles in phpBB3 SEOPosted: Tue Jul 01, 2008 6:48 am    Post subject: Re: Error Styles in phpBB3 SEO

You just need to apply the code change on you theme, either prosilver or subseilver2 ones, depending on which one yours is the closest to, and clear phpBB's cache once done Wink

_________________
phpBB SEO || SEO Forum || Forum Référencement
GYM Sitemap & RSS for phpBB3 has been released ! || GYM Sitemap & RSS for phpBB3 est disponible !
Back to top
FaCh1T4



Joined: 01 Jul 2008
Posts: 3

Error Styles in phpBB3 SEOPosted: Tue Jul 01, 2008 8:48 pm    Post subject: Re: Error Styles in phpBB3 SEO

What I must edit in my Arrow style?



this??
Code:
#-----[ OPEN ]------------------------------------------
#

styles/prosilver/template/viewtopic_body.html

#
#-----[ FIND ]------------------------------------------
#

<a href="#p{postrow.POST_ID}">

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

<a href="{U_VIEW_TOPIC}#p{postrow.POST_ID}">

#
#-----[ FIND ]------------------------------------------
#

<a href="#wrap" class="top" title="{L_BACK_TO_TOP}">

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

<a href="{U_VIEW_TOPIC}#wrap" class="top" title="{L_BACK_TO_TOP}">

#
#-----[ OPEN ]------------------------------------------
#

styles/subsilver2/template/overall_header.html

#
#-----[ FIND ]------------------------------------------
#

<head>

#
#-----[ AFTER, ADD ]------------------------------------------
#

{SEO_BASE_HREF}

#
#-----[ FIND ]------------------------------------------
#

function jumpto()
{
   var page = prompt('{LA_JUMP_PAGE}:', '{ON_PAGE}');
   var perpage = '{PER_PAGE}';
   var base_url = '{A_BASE_URL}';

   if (page !== null && !isNaN(page) && page > 0)
   {
      document.location.href = base_url.replace(/&amp;/g, '&') + '&start=' + ((page - 1) * perpage);
   }
}

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

// www.phpBB-SEO.com SEO TOOLKIT BEGIN
function jumpto()
{
   var page = prompt('{LA_JUMP_PAGE}:', '{ON_PAGE}');
   var perpage = '{PER_PAGE}';
   var base_url = '{A_BASE_URL}';
   var seo_delim_start = '{SEO_START_DELIM}';
   var seo_static_pagination = '{SEO_SATIC_PAGE}';
   var seo_ext_pagination = '{SEO_EXT_PAGE}';

   if (page !== null && !isNaN(page) && page > 0) {
      var seo_page = (page - 1) * per_page;
      if ( base_url.indexOf('?') >= 0 ) {
         document.location.href = base_url.replace(/&amp;/g, '&') + '&start=' + seo_page;
      } else if ( seo_page > 0 ) {
         var seo_type1 = base_url.match(/\.[a-z0-9]+$/i);
         if (seo_type1 !== null) {
            document.location.href = base_url.replace(/\.[a-z0-9]+$/i, '') + seo_delim_start + seo_page + seo_type1;
         }
         var seo_type2 = base_url.match(/\/$/);
         if (seo_type2 !== null) {
            document.location.href = base_url + seo_static_pagination + seo_page + seo_ext_pagination;
         }
      } else {
         document.location.href = base_url;
      }
   }
}
// www.phpBB-SEO.com SEO TOOLKIT END

#
#-----[ OPEN ]------------------------------------------
#

styles/subsilver2/template/viewtopic_body.html

#
#-----[ FIND ]------------------------------------------
#

<a href="#wrapheader">

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

<a href="{U_VIEW_TOPIC}#wrapheader">


what i need edit?
Back to top
FaCh1T4



Joined: 01 Jul 2008
Posts: 3

Error Styles in phpBB3 SEOPosted: Tue Jul 01, 2008 9:37 pm    Post subject: Re: Error Styles in phpBB3 SEO

PROBLEM SOLVED!

Thanks for all!!!
Back to top
subnaught



Joined: 03 Jul 2008
Posts: 6

Error Styles in phpBB3 SEOPosted: Thu Jul 03, 2008 1:25 pm    Post subject: Re: Error Styles in phpBB3 SEO

How did you solve it? I am having the same problem and I used the pre_mod.
Back to top
SeO
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 15 Mar 2006
Posts: 3477

Error Styles in phpBB3 SEOPosted: Thu Jul 03, 2008 1:39 pm    Post subject: Re: Error Styles in phpBB3 SEO

For the SEO premod, you'll find the full code changes here : Prosilver / subsilver2 code changes.

_________________
phpBB SEO || SEO Forum || Forum Référencement
GYM Sitemap & RSS for phpBB3 has been released ! || GYM Sitemap & RSS for phpBB3 est disponible !
Back to top
subnaught



Joined: 03 Jul 2008
Posts: 6

Error Styles in phpBB3 SEOPosted: Thu Jul 03, 2008 2:10 pm    Post subject: Re: Error Styles in phpBB3 SEO

I saw the code changes and compared them to my files and they are all as they should be, but I keep having the same problem. It is just like the original post:

http://img356.imageshack.us/img356/319/phpseo3no3.gif
http://img84.imageshack.us/img84/6259/phpseo32ik6.gif
Back to top
SeO
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 15 Mar 2006
Posts: 3477

Error Styles in phpBB3 SEOPosted: Thu Jul 03, 2008 2:20 pm    Post subject: Re: Error Styles in phpBB3 SEO

Have you cleared both theme and template's cache in phpBB style ACP ?

_________________
phpBB SEO || SEO Forum || Forum Référencement
GYM Sitemap & RSS for phpBB3 has been released ! || GYM Sitemap & RSS for phpBB3 est disponible !
Back to top
subnaught



Joined: 03 Jul 2008
Posts: 6

Error Styles in phpBB3 SEOPosted: Thu Jul 03, 2008 2:48 pm    Post subject: Re: Error Styles in phpBB3 SEO

OK. SOLVED!

Just cleared out the cache folder that was in my forum root

Thank you very much for your help
Back to top
bellzebu



Joined: 06 Jul 2008
Posts: 3

Error Styles in phpBB3 SEOPosted: Sun Jul 06, 2008 10:50 pm    Post subject: Re: Error Styles in phpBB3 SEO

I got the same error.

Xampp on localhost/web/forum and works perfect.

I did upload the mod to my real domain without configuring PHPBB SEO, no .htaccess code and no Rewriting URL active.

forum.mydomain.com on folder /public_html/forum

I have the master domain

-www.mydomain.com on folder /public_html

Problem #1

-http://forum.mydomain.com shows the forum perfectly but if i make a click on -http://forum.mydomain.com/viewforum.php?f=x no styles are applied, no images... clean the cache on ACP, clean the cache on disk, reload templates, themes, images but no luck.

Problem #2

-http://forum.mydomain.com/viewforum.php?f=x shows the forum without styles images... etc and all links refers to -http://forum.mydomain.com/forum/viewtopic.php?f=32&t=16426

What the problem is?

Thank you.

Cheers.
Back to top
SeO
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 15 Mar 2006
Posts: 3477

Error Styles in phpBB3 SEOPosted: Mon Jul 07, 2008 12:44 pm    Post subject: Re: Error Styles in phpBB3 SEO

Looks like you just need to update your phpBB config, and set "/" instead of "forum/" for the phpBB path, in the server settings in acp.

You'll most likely need to update your .htaccess accordingly.

_________________
phpBB SEO || SEO Forum || Forum Référencement
GYM Sitemap & RSS for phpBB3 has been released ! || GYM Sitemap & RSS for phpBB3 est disponible !
Back to top
bellzebu



Joined: 06 Jul 2008
Posts: 3

Error Styles in phpBB3 SEOPosted: Mon Jul 07, 2008 1:06 pm    Post subject: Re: Error Styles in phpBB3 SEO

Thank you a lot for the answer Smile

So... foce url parameters on Server congifuration is needed, true?

I will test later and post the results.

Cheers.
Back to top
SeO
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 15 Mar 2006
Posts: 3477

Error Styles in phpBB3 SEOPosted: Mon Jul 07, 2008 1:09 pm    Post subject: Re: Error Styles in phpBB3 SEO

bellzebu wrote:

So... foce url parameters on Server congifuration is needed, true?

Not really, but the phpbb_seo class will only consider, and thus force, the settings retrieved from the db. So they must be up to date.

_________________
phpBB SEO || SEO Forum || Forum Référencement
GYM Sitemap & RSS for phpBB3 has been released ! || GYM Sitemap & RSS for phpBB3 est disponible !
Back to top
bellzebu



Joined: 06 Jul 2008
Posts: 3

Error Styles in phpBB3 SEOPosted: Mon Jul 07, 2008 1:13 pm    Post subject: Re: Error Styles in phpBB3 SEO

SeO wrote:
bellzebu wrote:

So... foce url parameters on Server congifuration is needed, true?

Not really, but the phpbb_seo class will only consider, and thus force, the settings retrieved from the db. So they must be up to date.


Thank you again, results later ^^

Cheers.
Back to top
Display posts from previous:   
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB3 mod Rewrite  » Advanced SEO URL
Page 1 of 1

Navigation Similar Topics

Jump to: