| :: |
| Author |
Message |
slickdf
Joined: 13 Feb 2008 Posts: 16
|
|
| Back to top |
|
 |
|
 |
slickdf
Joined: 13 Feb 2008 Posts: 16
|
Posted: Fri Feb 15, 2008 2:39 am Post subject: Re: URL REQRITE NEED HELP QUICK!! |
|
|
I disabled it for now so heres a screenshot:
 |
|
|
| Back to top |
|
 |
SeO Administrateur - Site Admin

Joined: 15 Mar 2006 Posts: 3482
|
Posted: Fri Feb 15, 2008 1:36 pm Post subject: Re: URL REQRITE NEED HELP QUICK!! |
|
|
It's either because you did not perform the tpl code change for the template your are using or that you did not cleared phpBB's cache after you did.
You theme looks like based on prosilver, the prosilver code change should be easy to use with it. |
_________________ 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 |
|
 |
slickdf
Joined: 13 Feb 2008 Posts: 16
|
Posted: Fri Feb 15, 2008 6:21 pm Post subject: Re: URL REQRITE NEED HELP QUICK!! |
|
|
Also, what mod you using so that the images stretch the content page instead of being cut off?
Ok right, refreshed cache and that works thanks!. Only problem now is when i try and send pm's or sometimes post look!
 |
|
|
| Back to top |
|
 |
SeO Administrateur - Site Admin

Joined: 15 Mar 2006 Posts: 3482
|
|
| Back to top |
|
 |
slickdf
Joined: 13 Feb 2008 Posts: 16
|
Posted: Sat Feb 16, 2008 10:50 am Post subject: Re: URL REQRITE NEED HELP QUICK!! |
|
|
not sure, i just installed optimal titles, dynamic meta tags (no problems with either of them ever), advanced url rewrite and no duplicate for it.
apart from that i had no errors on the board up to the url rewrite. |
|
|
| Back to top |
|
 |
slickdf
Joined: 13 Feb 2008 Posts: 16
|
Posted: Sun Feb 17, 2008 3:37 pm Post subject: Re: URL REQRITE NEED HELP QUICK!! |
|
|
| Any response SeO? |
|
|
| Back to top |
|
 |
SeO Administrateur - Site Admin

Joined: 15 Mar 2006 Posts: 3482
|
Posted: Tue Feb 19, 2008 9:17 am Post subject: Re: URL REQRITE NEED HELP QUICK!! |
|
|
Well me neither
As said, this bit does not looks like from the regular phpBB3 package.
The wrong format must only come from a mod not fully using append_sid to build urls, simple to fix, but we need to know where to look at.
Please tell me more about this, and better if you find the guilty bit of code in your phpBB3 files. |
_________________ 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 |
|
 |
slickdf
Joined: 13 Feb 2008 Posts: 16
|
Posted: Tue Feb 19, 2008 1:33 pm Post subject: Re: URL REQRITE NEED HELP QUICK!! |
|
|
| thanks for help. not sure where im looking. is there a way to disable it from rewriting the most page? or that not good... im not really good with php... thanks alot up to now though! |
|
|
| Back to top |
|
 |
SeO Administrateur - Site Admin

Joined: 15 Mar 2006 Posts: 3482
|
|
| Back to top |
|
 |
slickdf
Joined: 13 Feb 2008 Posts: 16
|
Posted: Thu Feb 21, 2008 3:32 pm Post subject: Re: URL REQRITE NEED HELP QUICK!! |
|
|
Just going to check my edits in viewtopic.php but thisi s what i found:
| Code: | // ipr_p
if (isset($_GET['ipr_p']))
{
$ipr_p = request_var('ipr_p', 0);
redirect("{$phpbb_root_path}viewtopic.$phpEx?p=$ipr_p#p$ipr_p");
} |
It includes the "p=" and viewtopic whats being rewritten. |
|
|
| Back to top |
|
 |
slickdf
Joined: 13 Feb 2008 Posts: 16
|
Posted: Thu Feb 21, 2008 3:37 pm Post subject: Re: URL REQRITE NEED HELP QUICK!! |
|
|
| Just check my edits with no dupe and advanced rewrite and all are as they should be. |
|
|
| Back to top |
|
 |
HB phpBB SEO Team

Joined: 16 Oct 2006 Posts: 809
|
Posted: Thu Feb 21, 2008 3:49 pm Post subject: Re: URL REQRITE NEED HELP QUICK!! |
|
|
I googled "ipr_p"; it looks like you've installed the alternate version of Instant Post Redirect (the one that lets users select whether they want to redirect in the UCP).
An easy fix is back it out and go for the simple version (one line of code in posting.php).
| Code: | | meta_refresh(3, $redirect_url); |
Add after:
| Code: | //-- mod : Instant Post Redirect ------------------------------------------------------------
//-- add
redirect($redirect_url);
//-- fin mod : Instant Post Redirect -------------------------------------------------------- |
That's what I did and it works. |
_________________ Dan Kehn |
|
| Back to top |
|
 |
slickdf
Joined: 13 Feb 2008 Posts: 16
|
Posted: Thu Feb 21, 2008 5:11 pm Post subject: Re: URL REQRITE NEED HELP QUICK!! |
|
|
| Thanks, it worked your a legend! |
|
|
| Back to top |
|
 |
|
|