| :: |
| Author |
Message |
FaCh1T4
Joined: 01 Jul 2008 Posts: 3
|
|
| Back to top |
|
 |
|
 |
SeO Administrateur - Site Admin

Joined: 15 Mar 2006 Posts: 3477
|
|
| Back to top |
|
 |
FaCh1T4
Joined: 01 Jul 2008 Posts: 3
|
Posted: 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(/&/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(/&/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
|
Posted: 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
|
Posted: 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

Joined: 15 Mar 2006 Posts: 3477
|
|
| Back to top |
|
 |
subnaught
Joined: 03 Jul 2008 Posts: 6
|
|
| Back to top |
|
 |
SeO Administrateur - Site Admin

Joined: 15 Mar 2006 Posts: 3477
|
|
| Back to top |
|
 |
subnaught
Joined: 03 Jul 2008 Posts: 6
|
Posted: 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
|
Posted: 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

Joined: 15 Mar 2006 Posts: 3477
|
|
| Back to top |
|
 |
bellzebu
Joined: 06 Jul 2008 Posts: 3
|
Posted: Mon Jul 07, 2008 1:06 pm Post subject: Re: Error Styles in phpBB3 SEO |
|
|
Thank you a lot for the answer
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

Joined: 15 Mar 2006 Posts: 3477
|
|
| Back to top |
|
 |
bellzebu
Joined: 06 Jul 2008 Posts: 3
|
Posted: 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 |
|
 |
|
|