Page 34 of 77
Re: SEO MOD
Posted: Tue Jun 03, 2008 9:49 pm
by GrinGEO2
is there any way to have seo url withouth the .html at the End and having the kategories included.... just like Wordpress?
Example as is
http://www.miniero.com/miniero-ist-onli ... &sk=t&sd=a
Example how should
http://www.miniero.com/minitechnet-de-f ... ewinnspiel
Would be glad for any help
Re: SEO MOD
Posted: Tue Jun 03, 2008 10:17 pm
by jauhari
jauhari wrote:How to Install this Mods?
I was found the solutions. thanks

Re: SEO MOD
Posted: Wed Jun 04, 2008 11:20 am
by rwap01
I have installed this mod successfully on my forum at
http://www.rwapservices.co.uk/ZX80_ZX81/forums
However, a couple of users have spotted problems, where the topic of a forum contains non-html characters (eg. quotation marks or asterisk).
Any suggestions ?
Re: SEO MOD
Posted: Wed Jun 04, 2008 8:05 pm
by atrhick
Hello guys and girls,
I have a problem on my forum after installing this mod. When ever the post spill over to page 2
(meaning that the post was too long so it made another page for it).
I can’t get to the page 2 if I click on the number outside of the topic. it works fine if I am inside but its not working outside...the link below is an example of this please help me.
http://www.amazingsigns.org/ASForum/bib ... 5463afde78
Re: SEO MOD
Posted: Wed Jun 04, 2008 8:53 pm
by rwap01
atrhick wrote:Hello guys and girls,
I have a problem on my forum after installing this mod. When ever the post spill over to page 2
(meaning that the post was too long so it made another page for it).
I can’t get to the page 2 if I click on the number outside of the topic. it works fine if I am inside but its not working outside...the link below is an example of this please help me.
http://www.amazingsigns.org/ASForum/bib ... 5463afde78
Yes, this appears to be a bug - it also happens on my forums.
Re: SEO MOD
Posted: Wed Jun 04, 2008 9:18 pm
by rwap01
atrhick wrote:Hello guys and girls,
I have a problem on my forum after installing this mod. When ever the post spill over to page 2
(meaning that the post was too long so it made another page for it).
I can’t get to the page 2 if I click on the number outside of the topic. it works fine if I am inside but its not working outside...the link below is an example of this please help me.
http://www.amazingsigns.org/ASForum/bib ... 5463afde78
I have now fixed this issue (hopefully it will not affect anything else).
The problem is in includes\functions_seo.php in the lines
Code: Select all
function topic_generate_seo_pagination($replies, $url)
{
global $config, $user, $phpEx;
$append = '.' . $phpEx;
if (isset($config['seo_append']))
{
$append = '.' . $config['seo_append'];
}
This should read (or at least I think it should):
Code: Select all
function topic_generate_seo_pagination($replies, $url)
{
global $config, $user, $phpEx;
$append = '.html';
if (isset($config['seo_ext']))
{
$append = '.' . $config['seo_ext'];
}
Re: SEO MOD
Posted: Wed Jun 04, 2008 11:00 pm
by Tob76
I am still getting errors
1.
When you are reading a tiopic as guest and you want to login, you will get logged in but the redirect back to the topic you have been reading does not work, it wants you to redirect to
http://www.youdomain.com/viewtopic.php? ... 8da30765c3 what is not working and giving the following error
Code: Select all
General Error
SQL ERROR [ mysql4 ]
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'phpbb_topics t WHERE t.topic_id = p.topic_id AND t.topic_id = 38392' at line 3 [1064]
SQL
SELECT t.topic_title FROM phpbb_posts p phpbb_topics t WHERE t.topic_id = p.topic_id AND t.topic_id = 38392
BACKTRACE
FILE: includes/db/mysql.php
LINE: 158
CALL: dbal->sql_error()
FILE: includes/functions_seo.php
LINE: 164
CALL: dbal_mysql->sql_query()
FILE: viewtopic.php
LINE: 57
CALL: moved_topic()
when replacing at line 157 in functions_seo.php
Code: Select all
$sql = 'SELECT t.topic_title
FROM ' . POSTS_TABLE . ' p
' . TOPICS_TABLE . " t
WHERE t.topic_id = p.topic_id
AND t.topic_id = $id";
$newid = "p$id";
with
Code: Select all
$sql = 'SELECT t.topic_title
FROM ' . POSTS_TABLE . ' p,
' . TOPICS_TABLE . " t
WHERE t.topic_id = p.topic_id
AND t.topic_id = $id";
$newid = "p$id";
instead of the error above I get another error:
(it still wants to redirect to
http://www.yourdomain.com/viewtopic.php ... 1b10f13df6 but ends up at
http://www.yourdomain.com/-p38311.html#p38311 )
the whole is the same after reporting a topic (like flycker or someone else already posted)
2. In the Notification E-Mail the link to the newest topic is being ignored, which means that you are redirected to the first post...link in email is
http://www.yourdomain.com/viewtopic.php ... 88&e=38388 for example...
I have already read the whole thread now, its really hard, I fixed 3-4 bugs thanks to this thread...hopefully you can help me further more with this..
Re: SEO MOD
Posted: Thu Jun 05, 2008 12:52 am
by atrhick
rwap01 wrote:atrhick wrote:Hello guys and girls,
I have a problem on my forum after installing this mod. When ever the post spill over to page 2
(meaning that the post was too long so it made another page for it).
I can’t get to the page 2 if I click on the number outside of the topic. it works fine if I am inside but its not working outside...the link below is an example of this please help me.
http://www.amazingsigns.org/ASForum/bib ... 5463afde78
I have now fixed this issue (hopefully it will not affect anything else).
The problem is in includes\functions_seo.php in the lines
Code: Select all
function topic_generate_seo_pagination($replies, $url)
{
global $config, $user, $phpEx;
$append = '.' . $phpEx;
if (isset($config['seo_append']))
{
$append = '.' . $config['seo_append'];
}
This should read (or at least I think it should):
Code: Select all
function topic_generate_seo_pagination($replies, $url)
{
global $config, $user, $phpEx;
$append = '.html';
if (isset($config['seo_ext']))
{
$append = '.' . $config['seo_ext'];
}
COOL!! this methord worked for me .. I ma back on track now that you guys and my the Lord Jesus Christ Belss you

Re: SEO MOD
Posted: Thu Jun 05, 2008 8:18 am
by rwap01
Can the SEO_MOD author incorporate this change in the release version please (if it is indeed the correct fix).
We could do with a list of known bugs as a sticky on this forum
Re: SEO MOD
Posted: Thu Jun 05, 2008 11:43 am
by kilateszone
kilateszone wrote:hey nice mod. i have installed MOD SEO and everything seems to be alright and is working fine and just how i lke it, i have fixed all the bugs i have found but i have a problem everytime mi users recibe a confirmation that one of the topics has been replied to since their las t visit it still comes out with the old format example viewtopic.php=?12547 and they cant go in... any solutions for this, is this a new BUG?
how can i fix it ?
THANKS
______________________--
PD, Sorry for my english.. i spaek spanish and italian

Help me !

Essential Fixes to the SEO_MOD
Posted: Thu Jun 05, 2008 6:55 pm
by rwap01
It might help newbies if there was a sticky at the top to show essential updates to this MOD. Reading through the 34 pages, it is hard to find which ones were fixed in the proper release. However, from issues with my own forums, I have identified the following as the main problems which need to be corrected once you install the MOD.
Mark all forums read:
http://www.phpbb.com/community/viewtopi ... 5#p4099045
Clean URL to ensure characters such as "!" work in topic titles:
http://www.phpbb.com/community/viewtopi ... 5#p6009335 (updated 30th June 2008)
Sort out pagination errors on list of topics:
http://www.phpbb.com/community/viewtopi ... 5#p5705125
Sort out pagination when viewing a topic:
http://www.phpbb.com/community/viewtopi ... 5#p5274095
Correct the link in email notification of a new post:
http://www.phpbb.com/community/viewtopi ... 0#p5733555
Correct the javascript pop up when you click on Page 1 of 4 to enable you to jump directly to a page number:
http://www.phpbb.com/community/viewtopi ... 5#p5784105
Correct the go to new posts in a topic using the orange icon before the start of the topic name:
http://www.phpbb.com/community/viewtopi ... 5#p5784105
Correct Link to First Unread Post when you are in a topic so that it works:
http://www.phpbb.com/community/viewtopi ... 5#p5851575
Correct error in SQL statement in functions_seo.php (shown particularly if you implement the RSS MOD):
http://www.phpbb.com/community/viewtopi ... 5#p5497265
Correct the link to a topic when you email a link to a friend:
http://www.phpbb.com/community/viewtopi ... 5#p5915295
Correct the use of foreign letters in a title:
http://www.phpbb.com/community/viewtopi ... 5#p4863705
(Added 7th July 2008)
Fix polls and Return to forums:
http://www.phpbb.com/community/viewtopi ... 5#p4222945
(Added 14th July 2008)
Anyone got any others??
Re: SEO MOD
Posted: Thu Jun 05, 2008 8:16 pm
by Damien Boyle
Anyone got the print fix? still cant get this sorted.
Re: SEO MOD
Posted: Thu Jun 05, 2008 8:24 pm
by rwap01
Damien Boyle wrote:Anyone got the print fix? still cant get this sorted.
Hmm not sure what the print problem is - it seems to work on my forum -
http://www.rwapservices.co.uk/ZX80_ZX81/forums/
Can you check it and see?
I don't have any other mods installed at the moment.
Re: SEO MOD
Posted: Thu Jun 05, 2008 8:36 pm
by Damien Boyle
rwap01 wrote:Damien Boyle wrote:Anyone got the print fix? still cant get this sorted.
Hmm not sure what the print problem is - it seems to work on my forum -
http://www.rwapservices.co.uk/ZX80_ZX81/forums/
Can you check it and see?
I don't have any other mods installed at the moment.
This is the error im getting
Code: Select all
General Error
SQL ERROR [ mysql4 ]
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'FROM phpbb_topics WHERE topic_id = 143' at line 2 [1064]
An sql error occurred while fetching this page. Please contact an administrator if this problem persists.
Re: SEO MOD
Posted: Fri Jun 06, 2008 8:03 am
by enesbil
hello
i get the following eroor when i want to write an answer:
Code: Select all
Parse error: syntax error, unexpected ')' in /users/xxxx/www/xxxx/posting.php on line 85
Code: Select all
{
$redirect = append_sid($phpbb_root_path);
} 'f=' . $forum_id) : append_sid("{$phpbb_root_path}index.$phpEx")));
redirect($redirect);
}
line 85:
Code: Select all
} 'f=' . $forum_id) : append_sid("{$phpbb_root_path}index.$phpEx")));
and when i wants to see the memberlist:
Code: Select all
Parse error: syntax error, unexpected ']' in /users/xxx/www/xxxxx/memberlist.php on line 844
Code: Select all
meta_refresh(3, append_sid("{$phpbb_root_path}index.$phpEx"));
$message = ($user_id) ? sprintf($user->lang['RETURN_INDEX'], '<a href="' . append_sid($phpbb_root_path) . '">', '</a>') : sprintf($user->lang['RETURN_TOPIC'], '<a href="' . format_url($row['topic_title'], "t$topic_id") . '">', '</a>');}&t=$topic_id" . '">', '</a>';
trigger_error($user->lang['EMAIL_SENT'] . '<br /><br />' . $message);
line 844:
Code: Select all
$message = ($user_id) ? sprintf($user->lang['RETURN_INDEX'], '<a href="' . append_sid($phpbb_root_path) . '">', '</a>') : sprintf($user->lang['RETURN_TOPIC'], '<a href="' . format_url($row['topic_title'], "t$topic_id") . '">', '</a>');}&t=$topic_id" . '">', '</a>';
please help me