May 23, 2012, 11:18:08 *
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
News: Add your links to our directory. Click here to add your links.
 
  Home   Forum   Help Search Directory Calendar Login Register    RSS 2.0 feedAtom feed


News
Add your links to our directory. Click here to add your links.
Pages: 1 [2]
  Print  
Author Topic:

not redirecting correctly after saving a post

 (Read 6441 times)
0 Members and 2 Guests are viewing this topic.
lilounec
Jr. Member
**

Points: 0
Offline Offline

Posts: 5


« Reply #15 on: December 20, 2006, 11:18:46 »

http://www.fzr.fr
Logged


TheGodFather
Administrator
Hero Member
*****

Points: 202
Offline Offline

Posts: 2570



WWW
« Reply #16 on: December 20, 2006, 12:45:04 »

Post here your htaccess. I think is a problem from there.

Regards
Logged

lilounec
Jr. Member
**

Points: 0
Offline Offline

Posts: 5


« Reply #17 on: December 21, 2006, 07:12:08 »

Ok

Code:
#Options +FollowSymlinks
RewriteEngine On
RewriteBase /

RewriteRule ^topic-([^/]+)[/]?$ /index.php?topic=$1 [L]
RewriteRule ^board-([^/]+)[/]?$ /index.php?board=$1 [L]

RewriteCond %{QUERY_STRING} ^topic=([0-9]*).([0-9]*)
RewriteRule  ^(.*)$ seo4smf-redirect.php?t=%1 [R=301,L]

RewriteCond %{QUERY_STRING} ^board=([0-9]*).([0-9]*)
RewriteRule  ^(.*)$ seo4smf-redirect.php?b=%1 [R=301,L]

RewriteCond %{QUERY_STRING} ^action=profile;u=([0-9]*)
RewriteRule  ^(.*)$ seo4smf-redirect.php?u=%1 [R=301,L]

RewriteCond %{QUERY_STRING} ^page=([0-9]*)
RewriteRule  ^(.*)$ seo4smf-redirect.php?p=%1 [R=301,L]

#Rewrite Old urls
RewriteRule  ^index.php/board,(.*).html seo4smf-redirect.php?b=$1 [R=301,L]
RewriteRule  ^index.php/board,(.*).html;(.*) seo4smf-redirect.php?b=$1&o=$2 [R=301,L]

RewriteRule  ^index.php/topic,(.*).html seo4smf-redirect.php?t=$1 [R=301,L]
RewriteRule  ^index.php/topic,(.*).html;(.*) seo4smf-redirect.php?t=$1&o=$2 [R=301,L]

#Bad Url's
#RewriteRule  ^(.*)/-t(.*).html seo4smf-redirect.php?t=$2 [R=301,L]
#RewriteRule  ^-b(.*)/$ seo4smf-redirect.php?b=$1 [R=301,L]

#New board URL's
RewriteRule ^(.*)-b([0-9]*).([0-9]*)/;(.*) index.php?dummy=1&board=$2.$3&$4 [L]
RewriteRule ^(.*)-b([0-9]*).([0-9]*)/ index.php?dummy=1&board=$2.$3 [L]
RewriteRule ^(.*)-b([0-9]*).([0-9]) index.php?dummy=1&board=$2.$3 [L]

#New topic URL's
RewriteRule ^(.*)-t([0-9]*).([0-9]*).html;((\?:from|msg|new)[0-9]*);(.*)$ index.php?dummy=1&topic=$2.$4&$5 [L]
RewriteRule ^(.*)-t([0-9]*).([0-9]*).html;((\?:from|msg|new)[0-9]*) index.php?dummy=1&topic=$2.$4 [L]
RewriteRule ^(.*)-t([0-9]*).([0-9]*).html;(.*)$ index.php?dummy=1&topic=$2.$3&$4 [L]
RewriteRule ^(.*)-t([0-9]*).([0-9]*).html index.php?dummy=1&topic=$2.$3 [L]

#New profiles URL's
RewriteRule ^(.*)-u([0-9]*).html;sa,(.*);start,([0-9]*);delete,([0-9]*);sesc,([a-z0-9]*)$ index.php?dummy=1&action=profile;u=$2;sa=$3;start=$4;delete=$5;sesc=$6 [L]
RewriteRule ^(.*)-u([0-9]*).html;sa,(.*);start,([0-9]*)$ index.php?dummy=1&action=profile;u=$2;sa=$3;start=$4 [L]
RewriteRule ^(.*)-u([0-9]*).html;sa,(.*)$ index.php?dummy=1&action=profile;u=$2;sa=$3 [L]
RewriteRule ^(.*)-u([0-9]*).html index.php?dummy=1&action=profile;u=$2 [L]

#New Tinyportal Articles URL's
RewriteRule ^(.*)-p([0-9]*).html index.php?dummy=1&page=$2 [L]

RewriteRule sitemap.xml sitemaps.php [L]
RewriteRule urllist.txt urllist.php [L]

thanks Wink
Logged
TheGodFather
Administrator
Hero Member
*****

Points: 202
Offline Offline

Posts: 2570



WWW
« Reply #18 on: December 21, 2006, 07:39:37 »

Did you changed the theme ? I think is from theme.
Logged

lilounec
Jr. Member
**

Points: 0
Offline Offline

Posts: 5


« Reply #19 on: December 21, 2006, 11:21:32 »

i build the theme from de default one of the 1.1RC2 release ... but i've just test with the default one of the 1.1 final release and it the same  problem Undecided
Logged
TheGodFather
Administrator
Hero Member
*****

Points: 202
Offline Offline

Posts: 2570



WWW
« Reply #20 on: December 21, 2006, 12:13:41 »

hmmm .... I will look at that again ... is strange because is working on my site. Anyway what version of seo4smf do you have ? the latest ?

Regards
Logged

lilounec
Jr. Member
**

Points: 0
Offline Offline

Posts: 5


« Reply #21 on: December 21, 2006, 12:39:47 »

yes got the latest one, the 0.2 release
Logged
TheGodFather
Administrator
Hero Member
*****

Points: 202
Offline Offline

Posts: 2570



WWW
« Reply #22 on: December 22, 2006, 01:31:00 »

I will look closer in this afternoon. Anyway we can chat at 18 your hour ?

Regards
Logged

Nite
Jr. Member
**

Points: 0
Offline Offline

Posts: 55



WWW
« Reply #23 on: December 23, 2006, 07:37:02 »

You have :

#Options +FollowSymlinks

And

#Bad Url's
#RewriteRule  ^(.*)/-t(.*).html seo4smf-redirect.php?t=$2 [R=301,L]
#RewriteRule  ^-b(.*)/$ seo4smf-redirect.php?b=$1 [R=301,L]

...

Have you tried :

Options +FollowSymlinks

And

#Bad Url's
RewriteRule  ^(.*)/-t(.*).html seo4smf-redirect.php?t=$2 [R=301,L]
RewriteRule  ^-b(.*)/$ seo4smf-redirect.php?b=$1 [R=301,L]
Logged

TheGodFather
Administrator
Hero Member
*****

Points: 202
Offline Offline

Posts: 2570



WWW
« Reply #24 on: December 23, 2006, 08:16:45 »

No ... I don't tried ... but Options +Follow symlinks is from other guy conf. it's not from seo4smf standard ... Smiley
Regards
Logged

TheGodFather
Administrator
Hero Member
*****

Points: 202
Offline Offline

Posts: 2570



WWW
« Reply #25 on: December 27, 2006, 03:25:12 »

You have the same problem with msg0. You need to run a sql query on your database to regenerate smf_log_boards table. I read about this problem a  lot in simplemachines forum. Just follow this post: http://www.webmasterstalks.com/seo-4-smf/bug-unread-topics-even-when-read-t877.0.html;msg5299#msg5299

Regards
Logged

TheGodFather
Administrator
Hero Member
*****

Points: 202
Offline Offline

Posts: 2570



WWW
« Reply #26 on: December 28, 2006, 03:00:34 »

HI,

 Get the new version of seo4smf (0.2.0.1) it will solve the problem ...

Regards
Logged

Pages: 1 [2]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.7 | SMF © 2006-2008, Simple Machines LLC
TinyPortal v0.9.7 © Bloc
Valid XHTML 1.0! Valid CSS!