| |
| |
|
|
|
|
| |
|
| |
|
| :: |
| Author |
Message |
darkone
Joined: 12 Jul 2007 Posts: 12
|
Posted: Wed Aug 13, 2008 5:02 am Post subject: 0.4.2 - 0.4.4 upg issues |
|
|
I edited all the files and uploaded the new phpbb_seo files and when I copy over the phpbb_seo_class.php I loose all my links.
Before I put the file in they look like this:
http://<website_url>/viewforum.php?f=1
After I add new class file:
http://<website url>/viewforum.php?1
As far as I can see the mod is working fine with all the .4.4 changes but with the .4.2 class??? Did I miss something somewhere?
-D1- |
|
|
| Back to top |
|
 |
|
 |
darkone
Joined: 12 Jul 2007 Posts: 12
|
Posted: Wed Aug 13, 2008 12:10 pm Post subject: Re: 0.4.2 - 0.4.4 upg issues |
|
|
I will probably be going through all the steps for a fresh install of .4.4 this week sometime to make sure nothing was overwritten when I did my upg fro 3.01 - 3.02 phpbb.
Does anyone have any thoughts on where I should look for fixing my issue in the first post.
Thx |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 15242
|
|
| Back to top |
|
 |
darkone
Joined: 12 Jul 2007 Posts: 12
|
Posted: Thu Aug 14, 2008 3:26 am Post subject: Re: 0.4.2 - 0.4.4 upg issues |
|
|
I found the issue finally in the functions.php. This was from v0.4.2 and was not in the code changes for v0.4.4. Once I removed the changes and reverted back to the orginal code it worked fine.
| Code: |
#
#-----[ FIND ]------------------------------------------
#
return $url . (($append_url) ? $url_delim . $append_url : '') . $anchor;
#
#-----[ REPLACE WITH ]------------------------------------------
#
// www.phpBB-SEO.com SEO TOOLKIT BEGIN
$url .= (($append_url) ? $url_delim . $append_url : '') . $anchor;
return $phpbb_seo->url_rewrite($url, $is_amp);
// www.phpBB-SEO.com SEO TOOLKIT END
#
#-----[ FIND ]------------------------------------------
#
return $url . (($append_url) ? $url_delim . $append_url . $amp_delim : $url_delim) . 'sid=' . $session_id . $anchor;
#
#-----[ REPLACE WITH ]------------------------------------------
#
// www.phpBB-SEO.com SEO TOOLKIT BEGIN
$url .= (($append_url) ? $url_delim . $append_url . $amp_delim : $url_delim) . 'sid=' . $session_id . $anchor;
return $phpbb_seo->url_rewrite($url, $is_amp);
// www.phpBB-SEO.com SEO TOOLKIT END
|
|
|
|
| Back to top |
|
 |
|
| Navigation |
Similar Topics |
|
|
|
|
|
|
|
| |
|
|
|
|
| |
|
|
|
|
| |