Issues with ipbseo 0.2.2 |
This topic is about Issues with ipbseo 0.2.2, the author, bilalghouri, wrote about: okay it is installed , but just one little bug .. when i click on a forum ( main forum category) , it redirects me to my forum homepage.. but thread urls are working fine . please fix forum bug ... To read more just scroll down
As we have soo much small queries and big bugs its hard for us to go through all of them, so we installed IP.Tracker.
Please use that module to report any bug found on our system.
Create New Bug entry
![]() ![]() |
Issues with ipbseo 0.2.2 |
Mar 26 2008, 07:00 PM
Post
#1
|
|
|
Advanced Member ![]() ![]() ![]() Group: Banned Posts: 32 Joined: 31-October 07 Member No.: 95 |
okay it is installed , but just one little bug .. when i click on a forum ( main forum category) , it redirects me to my forum homepage..
but thread urls are working fine . please fix forum bug -------------------- I USED A NULLED IPB BOARD AND ASKED FOR SUPPORT WHILE REMOVING THE MINERVASEO COPYRIGHT
|
|
|
|
Mar 26 2008, 07:05 PM
Post
#2
|
|
|
Advanced Member ![]() ![]() ![]() Group: Banned Posts: 32 Joined: 31-October 07 Member No.: 95 |
and profile links arent working too.. gives same redirection
-------------------- I USED A NULLED IPB BOARD AND ASKED FOR SUPPORT WHILE REMOVING THE MINERVASEO COPYRIGHT
|
|
|
|
Mar 26 2008, 07:09 PM
Post
#3
|
|
|
Advanced Member ![]() ![]() ![]() Group: Banned Posts: 32 Joined: 31-October 07 Member No.: 95 |
tags cloud page doesnt work..
gives : Warning: ksort() expects parameter 1 to be array, null given in ***/modules/mod_minerva.php on line 431 -------------------- I USED A NULLED IPB BOARD AND ASKED FOR SUPPORT WHILE REMOVING THE MINERVASEO COPYRIGHT
|
|
|
|
Mar 26 2008, 09:06 PM
Post
#4
|
|
![]() Administrator ![]() ![]() ![]() Group: Root Admin Posts: 905 Joined: 25-June 07 From: London Member No.: 1 |
try using this furl or one from the furl generator:
http://minervaseo.com/furl_form.php or CODE <?php /** * @package Minerva SEO (minervaseo.com) * @author Bhavesh Ramburn, icelabz.net <nitr021@icelabz.net> * @copyright 2007 icelabz.net, this is not an opensource software. Please see license section on minervaseo.com * */ /** * topic rule */ $topic_rule = array( 'content/(.*?)/([0-9]+)/(.*?)/$', 'content/$forum_title/$topic_id/$topic_title/', 'showtopic=$matches[2]' ); /** * topic multi page rule */ $topic_multipage_rule = array( 'content-page/(.*?)/(.*?)/page/(.*?)/$', 'content-page/$topic_id/$topic_title/page/$topic_st/', 'showtopic=$matches[1]&st=$matches[3]' ); /** * forum page rule */ $forum_rule = array( 'category/([0-9]+)/(.*?)/$', 'category/$forum_id/$forum_title/', 'showforum=$matches[1]' ); /** * forum multi page rule */ $forum_multipage_rule = array( 'category-page/(.*?)/(.*?)/page/(.*?)/$', 'category-page/$forum_id/$forum_title/page/$forum_st/', 'showforum=$matches[1]&st=$matches[3]' ); /** * user profile rules */ $showuser_rule = array( 'user/([0-9]+)/(.*?)/$', 'user/$user_id/$user_title/', 'showuser=$matches[1]' ); $topic_view_getnewpost = array( 'content/(.*?)/([0-9]+)/(.*?)/getnewpost/$', 'content/$forum_title/$topic_id/$topic_title/getnewpost/', 'showtopic=$matches[2]&view=getnewpost' ); $topic_view_getlastpost = array( 'content/(.*?)/([0-9]+)/(.*?)/getlastpost/$', 'content/$forum_title/$topic_id/$topic_title/getlastpost/', 'showtopic=$matches[2]&view=getlastpost' ); ?> then save it in seo_settings.php -------------------- Remember to please use the bug tracker for all bugs and errors, it is more organised that way.
Support in french and english If I reply in French please excuse my spelling & grammar, i haven't written in french for a long time. DO NOT PM ME TO ASK ME TO GO ON MSN, post the query on the support forums! |
|
|
|
Mar 27 2008, 10:10 AM
Post
#5
|
|
|
Advanced Member ![]() ![]() ![]() Group: Banned Posts: 32 Joined: 31-October 07 Member No.: 95 |
already done the form thingy , and i dont want default urls, they suck, i created my custm by the form, but it isnt working
-------------------- I USED A NULLED IPB BOARD AND ASKED FOR SUPPORT WHILE REMOVING THE MINERVASEO COPYRIGHT
|
|
|
|
Mar 27 2008, 10:12 AM
Post
#6
|
|
![]() Administrator ![]() ![]() ![]() Group: Root Admin Posts: 905 Joined: 25-June 07 From: London Member No.: 1 |
can you paste the full page here?
-------------------- Remember to please use the bug tracker for all bugs and errors, it is more organised that way.
Support in french and english If I reply in French please excuse my spelling & grammar, i haven't written in french for a long time. DO NOT PM ME TO ASK ME TO GO ON MSN, post the query on the support forums! |
|
|
|
Mar 27 2008, 02:09 PM
Post
#7
|
|
|
Advanced Member ![]() ![]() ![]() Group: Banned Posts: 32 Joined: 31-October 07 Member No.: 95 |
sure, here it is :
CODE <?php $forum_rule = array( '(.*?).html$', '$forum_title.html', 'showforum=$matches[1]' ); $topic_rule = array( '(.*?)/(.*?)-([0-9]+).html$', '$forum_title/$topic_title-$topic_id.html', 'showtopic=$matches[3]' ); $showuser_rule = array( '(.*?).html$', '$user_title.html', 'showuser=$matches[1]' ); $topic_view_getlastpost = array( '(.*?)/(.*?)-([0-9]+)-Last.html$', '$forum_title/$topic_title-$topic_id-Last.html', 'showtopic=$matches[3]&view=getlastpost' ); $topic_view_getnewpost = array( '(.*?)/(.*?)-([0-9]+)-New.html$', '$forum_title/$topic_title-$topic_id-New.html', 'showtopic=$matches[3]&view=getnewpost' ); $topic_multipage_rule = array( '(.*?)/(.*?)-([0-9]+)/Page([0-9]+).html$', '$forum_title/$topic_title-$topic_id/Page$topic_st.html', 'showtopic=$matches[3]&st=$matches[4]' ); $forum_multipage_rule = array( '(.*?)/Page([0-9]+).html$', '$forum_title/Page$topic_st.html', 'showforum=$matches[2]&st=$matches[2]' ); ?> Thanks for great support/help -------------------- I USED A NULLED IPB BOARD AND ASKED FOR SUPPORT WHILE REMOVING THE MINERVASEO COPYRIGHT
|
|
|
|
Mar 27 2008, 02:19 PM
Post
#8
|
|
![]() Administrator ![]() ![]() ![]() Group: Root Admin Posts: 905 Joined: 25-June 07 From: London Member No.: 1 |
CODE <?php $forum_rule = array( '(.*?)-t([0-9]+).html$', '$forum_title-t$forum_id.html', 'showforum=$matches[2]' ); $topic_rule = array( '(.*?)/(.*?)-([0-9]+).html$', '$forum_title/$topic_title-$topic_id.html', 'showtopic=$matches[3]' ); $showuser_rule = array( '(.*?)-u([0-9]+).html$', '$user_title-u$user_id.html', 'showuser=$matches[2]' ); $topic_view_getlastpost = array( '(.*?)/(.*?)-([0-9]+)-Last.html$', '$forum_title/$topic_title-$topic_id-Last.html', 'showtopic=$matches[3]&view=getlastpost' ); $topic_view_getnewpost = array( '(.*?)/(.*?)-([0-9]+)-New.html$', '$forum_title/$topic_title-$topic_id-New.html', 'showtopic=$matches[3]&view=getnewpost' ); $topic_multipage_rule = array( '(.*?)/(.*?)-([0-9]+)/Page([0-9]+).html$', '$forum_title/$topic_title-$topic_id/Page$topic_st.html', 'showtopic=$matches[3]&st=$matches[4]' ); $forum_multipage_rule = array( '(.*?)-t([0-9]+)/Page([0-9]+).html$', '$forum_title-t$forum_id/Page$topic_st.html', 'showforum=$matches[2]&st=$matches[3]' ); ?> try that -------------------- Remember to please use the bug tracker for all bugs and errors, it is more organised that way.
Support in french and english If I reply in French please excuse my spelling & grammar, i haven't written in french for a long time. DO NOT PM ME TO ASK ME TO GO ON MSN, post the query on the support forums! |
|
|
|
Mar 27 2008, 05:54 PM
Post
#9
|
|
|
Advanced Member ![]() ![]() ![]() Group: Banned Posts: 32 Joined: 31-October 07 Member No.: 95 |
CODE <?php $forum_rule = array( '(.*?)-t([0-9]+).html, '$forum_title-t$forum_id.html', 'showforum=$matches[2]' ); $topic_rule = array( '(.*?)/(.*?)-([0-9]+).html, '$forum_title/$topic_title-$topic_id.html', 'showtopic=$matches[3]' ); $showuser_rule = array( '(.*?)-u([0-9]+).html, '$user_title-u$user_id.html', 'showuser=$matches[2]' ); $topic_view_getlastpost = array( '(.*?)/(.*?)-([0-9]+)-Last.html, '$forum_title/$topic_title-$topic_id-Last.html', 'showtopic=$matches[3]&view=getlastpost' ); $topic_view_getnewpost = array( '(.*?)/(.*?)-([0-9]+)-New.html, '$forum_title/$topic_title-$topic_id-New.html', 'showtopic=$matches[3]&view=getnewpost' ); $topic_multipage_rule = array( '(.*?)/(.*?)-([0-9]+)/Page([0-9]+).html, '$forum_title/$topic_title-$topic_id/Page$topic_st.html', 'showtopic=$matches[3]&st=$matches[4]' ); $forum_multipage_rule = array( '(.*?)-t([0-9]+)/Page([0-9]+).html, '$forum_title-t$forum_id/Page$topic_st.html', 'showforum=$matches[2]&st=$matches[3]' ); ?> try that NO ! i dont want forumname-forumid.html , i just want forumname/ -------------------- I USED A NULLED IPB BOARD AND ASKED FOR SUPPORT WHILE REMOVING THE MINERVASEO COPYRIGHT
|
|
|
|
Mar 27 2008, 06:00 PM
Post
#10
|
|
|
Advanced Member ![]() ![]() ![]() Group: Banned Posts: 32 Joined: 31-October 07 Member No.: 95 |
tags doesnt works too. and how to add fast reply button ?
tags cloud also doesnt work, member profile page doesnt work either.. it is full of bugs -------------------- I USED A NULLED IPB BOARD AND ASKED FOR SUPPORT WHILE REMOVING THE MINERVASEO COPYRIGHT
|
|
|
|
Mar 27 2008, 08:07 PM
Post
#11
|
|
![]() Administrator ![]() ![]() ![]() Group: Root Admin Posts: 905 Joined: 25-June 07 From: London Member No.: 1 |
NO ! i dont want forumname-forumid.html , i just want forumname/ sorry u can't do it on this version, on version 0.0.2 you could have done it, but not anymore. -------------------- Remember to please use the bug tracker for all bugs and errors, it is more organised that way.
Support in french and english If I reply in French please excuse my spelling & grammar, i haven't written in french for a long time. DO NOT PM ME TO ASK ME TO GO ON MSN, post the query on the support forums! |
|
|
|
Mar 27 2008, 08:10 PM
Post
#12
|
|
![]() Administrator ![]() ![]() ![]() Group: Root Admin Posts: 905 Joined: 25-June 07 From: London Member No.: 1 |
tags doesnt works too. and how to add fast reply button ? tags cloud also doesnt work, member profile page doesnt work either.. it is full of bugs they aint going to work if you use the custom profile you made. not my fault if you do not want to use the standard, you'll just have to wait until I bring the old rules back. tag cloud should be working, but you'll have to be more specific, on what is not working. -------------------- Remember to please use the bug tracker for all bugs and errors, it is more organised that way.
Support in french and english If I reply in French please excuse my spelling & grammar, i haven't written in french for a long time. DO NOT PM ME TO ASK ME TO GO ON MSN, post the query on the support forums! |
|
|
|
Mar 28 2008, 09:11 AM
Post
#13
|
|
|
Advanced Member ![]() ![]() ![]() Group: Banned Posts: 32 Joined: 31-October 07 Member No.: 95 |
well can you make member profile like this :
memberid-membername.html ?? and forum url as that : forumname.html ?? please? in this version ? -------------------- I USED A NULLED IPB BOARD AND ASKED FOR SUPPORT WHILE REMOVING THE MINERVASEO COPYRIGHT
|
|
|
|
Mar 28 2008, 09:30 AM
Post
#14
|
|
![]() Administrator ![]() ![]() ![]() Group: Root Admin Posts: 905 Joined: 25-June 07 From: London Member No.: 1 |
you'll have to be patient, as I got a few assignments to hand in on tuesday next week, so not a lot of development this weekend. Unless someone here provides me with the patches to do so and I will put it.
It seems you are asking too much in so little time, i can't deliver that. use the non-furl version at the moment until I get it sorted so that you don't lose pagerank if you switch from furl to furl. -------------------- Remember to please use the bug tracker for all bugs and errors, it is more organised that way.
Support in french and english If I reply in French please excuse my spelling & grammar, i haven't written in french for a long time. DO NOT PM ME TO ASK ME TO GO ON MSN, post the query on the support forums! |
|
|
|
Mar 28 2008, 09:35 AM
Post
#15
|
|
![]() Administrator ![]() ![]() ![]() Group: Root Admin Posts: 905 Joined: 25-June 07 From: London Member No.: 1 |
BTW it seems you are using an illegal copy of IPB, and by good nature I am not going to give much support to you until you provide proof of purchase by either contacting me on ipsbeyond.com via private message to nitr021
-------------------- Remember to please use the bug tracker for all bugs and errors, it is more organised that way.
Support in french and english If I reply in French please excuse my spelling & grammar, i haven't written in french for a long time. DO NOT PM ME TO ASK ME TO GO ON MSN, post the query on the support forums! |
|
|
|
Mar 28 2008, 09:38 AM
Post
#16
|
|
|
Advanced Member ![]() ![]() ![]() Group: Banned Posts: 32 Joined: 31-October 07 Member No.: 95 |
how to enable fast reply button ???
-------------------- I USED A NULLED IPB BOARD AND ASKED FOR SUPPORT WHILE REMOVING THE MINERVASEO COPYRIGHT
|
|
|
|
![]() ![]() |
|
Lo-Fi Version | Sitemap | SEO by MinervaSEO © Icelabz.net | Time is now: 21st November 2008 - 01:09 AM |