IPB

Welcome Guest ( Log In | Register )

Problem With Url's

This topic is about Problem With Url's, the author, kraker, wrote about: Hi, I've instaled minervaseo, everything is working but i have one problem. The url for a topic is looking like this: http://testforum/a-test-forum-f2-testing-t2.html but it should loo like this  ... To read more just scroll down

> Post all bugs on Bug Tracker

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

 
Reply to this topicStart new topic
Problem With Url's
kraker
post Apr 24 2008, 11:26 AM
Post #1


Newbie
*

Group: Members
Posts: 7
Joined: 24-April 08
Member No.: 253



Hi, I've instaled minervaseo, everything is working but i have one problem. The url for a topic is looking like this:
http://testforum/a-test-forum-f2-testing-t2.html but it should loo like this http://testforum/a-test-forum-f2/testing-t2, the slash between the category and the topic is missing, why is that ?
Another question, can id's be removed from the url's to have a clean url (f2, t2) ?
Thank you
Go to the top of the page
 
+Quote Post
bramburn
post Apr 24 2008, 12:02 PM
Post #2


Administrator
***

Group: Root Admin
Posts: 905
Joined: 25-June 07
From: London
Member No.: 1



first issue, it might have been because you have not uploaded seo_Settings.php properly

second one, please wait we are working on it


--------------------
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!
Go to the top of the page
 
+Quote Post
kraker
post Apr 24 2008, 12:24 PM
Post #3


Newbie
*

Group: Members
Posts: 7
Joined: 24-April 08
Member No.: 253



seo_Settings.php is in my root directory, where to upload ?
Go to the top of the page
 
+Quote Post
bramburn
post Apr 24 2008, 12:26 PM
Post #4


Administrator
***

Group: Root Admin
Posts: 905
Joined: 25-June 07
From: London
Member No.: 1



root of ur forum


--------------------
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!
Go to the top of the page
 
+Quote Post
kraker
post Apr 24 2008, 12:36 PM
Post #5


Newbie
*

Group: Members
Posts: 7
Joined: 24-April 08
Member No.: 253



Sorry it is in my root of the forum I think all the files are in the right place
Go to the top of the page
 
+Quote Post
bramburn
post Apr 24 2008, 12:38 PM
Post #6


Administrator
***

Group: Root Admin
Posts: 905
Joined: 25-June 07
From: London
Member No.: 1



is the seo_settings.php with a .dist or did you remove it?


--------------------
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!
Go to the top of the page
 
+Quote Post
kraker
post Apr 24 2008, 12:43 PM
Post #7


Newbie
*

Group: Members
Posts: 7
Joined: 24-April 08
Member No.: 253



I renamed all the files with .dist and then upload it again, currently there are no .dist files in my root of the forum (I deleted them recently)
Go to the top of the page
 
+Quote Post
kraker
post Apr 26 2008, 04:16 PM
Post #8


Newbie
*

Group: Members
Posts: 7
Joined: 24-April 08
Member No.: 253



I reinstalled all but the same thing anyone have an idea ? I can upload modifed files if necessarry but if there was a mistake it would not work at all. I 
tried different seo_settings.php, the same thing.
Go to the top of the page
 
+Quote Post
bramburn
post Apr 26 2008, 05:22 PM
Post #9


Administrator
***

Group: Root Admin
Posts: 905
Joined: 25-June 07
From: London
Member No.: 1



i believe you diddn't setup your seo_settings.php properly


--------------------
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!
Go to the top of the page
 
+Quote Post
kraker
post Apr 26 2008, 05:34 PM
Post #10


Newbie
*

Group: Members
Posts: 7
Joined: 24-April 08
Member No.: 253



Ok, but how to set it properly ? Can you give me a seo_settings.php file that works ? here is the content of the seo_settings.php:
CODE
<?php

$forum_rule = array(
'(.*?)-f([0-9]+).html$',
'$forum_title-f$forum_id.html',
'showforum=$matches[2]'
);

$topic_rule = array(
'(.*?)-f([0-9]+)-(.*?)-t([0-9]+).html$',
'$forum_title-f$forum_id-$topic_title-t$topic_id.html',
'showtopic=$matches[4]' );

$showuser_rule = array(
'(.*?)-u([0-9]+).html$',
'$user_title-u$user_id.html',
'showuser=$matches[2]' );

$topic_view_getlastpost = array(
'(.*?)-f([0-9]+)-(.*?)-t([0-9]+)-last.html$',
'$forum_title-f$forum_id-$topic_title-t$topic_id-last.html',
'showtopic=$matches[4]&view=getlastpost' );

$topic_view_getnewpost = array(
'(.*?)-f([0-9]+)-(.*?)-t([0-9]+)-new.html$',
'$forum_title-f$forum_id-$topic_title-t$topic_id-new.html',
'showtopic=$matches[4]&view=getnewpost' );

$topic_multipage_rule = array(
'(.*?)-f([0-9]+)-(.*?)-t([0-9]+)-st([0-9]+).html$',
'$forum_title-f$forum_id-$topic_title-t$topic_id-st$topic_st.html',
'showtopic=$matches[4]&st=$matches[5]'
);

$forum_multipage_rule = array(
'(.*?)-f([0-9]+)-st([0-9]+).html$',
'$forum_title-f$forum_id-st$forum_st.html',
'showforum=$matches[2]&st=$matches[3]'
);
?>
Go to the top of the page
 
+Quote Post
PBFreak817
post Apr 26 2008, 08:12 PM
Post #11


Advanced Member
***

Group: Members
Posts: 39
Joined: 19-April 08
Member No.: 241



Try mine:
CODE
<?php
$forum_rule = array(
'(.*?)-f([0-9]+)/$',
'$forum_title-f$forum_id/',
'showforum=$matches[2]'
);
  
$topic_rule = array(
'(.*?)/(.*?)-t([0-9]+).html$',
'$forum_title/$topic_title-t$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(
'(.*?)-f([0-9]+)-(.*?)-t([0-9]+)-last.html$',
'$forum_title-f$forum_id-$topic_title-t$topic_id-last.html',
'showtopic=$matches[4]&view=getlastpost' );

$topic_view_getnewpost = array(
'(.*?)-f([0-9]+)-(.*?)-t([0-9]+)-new.html$',
'$forum_title-f$forum_id-$topic_title-t$topic_id-new.html',
'showtopic=$matches[4]&view=getnewpost' );

$topic_multipage_rule = array(
'(.*?)/(.*?)-t([0-9]+)-p([0-9]+).html$',
'$forum_title/$topic_title-t$topic_id-p$topic_st.html',
'showtopic=$matches[3]&st=$matches[4]'
);
  
$forum_multipage_rule = array(
'(.*?)-f([0-9]+)-p([0-9]+)/$',
'$forum_title-f$forum_id-p$forum_st/',
'showforum=$matches[2]&st=$matches[3]'
);
?>

Go to the top of the page
 
+Quote Post
kraker
post Apr 26 2008, 09:57 PM
Post #12


Newbie
*

Group: Members
Posts: 7
Joined: 24-April 08
Member No.: 253



Now it's working fine, thank you very much wink.gif
Go to the top of the page
 
+Quote Post
PBFreak817
post Apr 26 2008, 10:50 PM
Post #13


Advanced Member
***

Group: Members
Posts: 39
Joined: 19-April 08
Member No.: 241



np
Go to the top of the page
 
+Quote Post

Reply to this topicStart new topic
Tags
No Tag inserted yet


 



RSS Lo-Fi Version | Sitemap  | SEO by MinervaSEO © Icelabz.net Time is now: 2nd December 2008 - 08:48 PM