phpBB SEO
Boards
Directory  
SEO  
Downloads
  phpBB SEO : Search Engine Optimization, Directory, Forums  
Index
Forums
Annuaire
Référencement
Télécharger
 
  Search Rechercher
    Register
Username :  Password :  Log me on automatically each visit  
S'enregistrer  
 
   
The requested user does not exist
Goto page 1, 2  Next
 
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB3 SEO TooLKit  » phpBB SEO Premod
::  
Author Message
Fynnon



Joined: 15 Jul 2008
Posts: 4

The requested user does not existPosted: Sun Jul 27, 2008 11:25 pm    Post subject: The requested user does not exist

Hi, i`m using phpBB 3.0.2 SEO Premod

I`m using the advance mode, everything seems to work ok except some urls from the index page issues:

1. the View your posts link form the index page takes me to
-http://forum.com/member//posts/?search_id=egosearch

and gives me the message: The requested user does not exist.

2. the Advanced search link takes me to
-http://forum.com/member//posts/

and gives me the message: The requested user does not exist.

3. the View unanswered posts link takes me to
-http://forum.com/member//posts/?search_id=unanswered

and gives me the message: The requested user does not exist.

here is my htaccess code:

Code:
<Files "config.php">
Order Allow,Deny
Deny from All
</Files>
<Files "common.php">
Order Allow,Deny
Deny from All
</Files>

# You may need to un-comment the following line
# Options +FollowSymlinks
# REMEBER YOU ONLY NEED TO STARD MOD REWRITE ONCE
RewriteEngine On
# REWRITE BASE
RewriteBase /
# HERE IS A GOOD PLACE TO ADD THE WWW PREFIXE REDIRECTION

#####################################################
# PHPBB SEO REWRITE RULES - ADVANCED
#####################################################
# AUTHOR : dcz www.phpbb-seo.com
# STARTED : 01/2006
#################################
# FORUMS PAGES
###############
# FORUM INDEX REWRITERULE WOULD STAND HERE IF USED. "forum" REQUIRES TO BE SET AS FORUM INDEX
# RewriteRule ^forum\.html$ /index.php [QSA,L,NC]
# FORUM
RewriteRule ^[a-z0-9_-]*-f([0-9]+)/?(page([0-9]+)\.html)?$ /viewforum.php?f=$1&start=$3 [QSA,L,NC]
# TOPIC WITH VIRTUAL FOLDER
RewriteRule ^[a-z0-9_-]*-f([0-9]+)/[a-z0-9_-]*-t([0-9]+)(-([0-9]+))?\.html$ /viewtopic.php?f=$1&t=$2&start=$4 [QSA,L,NC]
# GLOBAL ANNOUNCES WITH VIRTUAL FOLDER
RewriteRule ^announces/[a-z0-9_-]*-t([0-9]+)(-([0-9]+))?\.html$ /viewtopic.php?t=$1&start=$3 [QSA,L,NC]
# TOPIC WITHOUT FORUM ID & DELIM
RewriteRule ^([a-z0-9_-]*)/?[a-z0-9_-]*-t([0-9]+)(-([0-9]+))?\.html$ /viewtopic.php?forum_uri=$1&t=$2&start=$4 [QSA,L,NC]
# PROFILES THROUGH USERNAME
RewriteRule ^member/([^/]+)/?$ /memberlist.php?mode=viewprofile&un=$1 [QSA,L,NC]
# USER MESSAGES THROUGH USERNAME
RewriteRule ^member/([^/]+)/(topics|posts)/?(page([0-9]+)\.html)?$ /search.php?author=$1&sr=$2&start=$4 [QSA,L,NC]
# GROUPS ADVANCED
RewriteRule ^[a-z0-9_-]*-g([0-9]+)(-([0-9]+))?\.html$ /memberlist.php?mode=group&g=$1&start=$3 [QSA,L,NC]
# POST
RewriteRule ^post([0-9]+)\.html$ /viewtopic.php?p=$1 [QSA,L,NC]
# ACTIVE TOPICS
RewriteRule ^active-topics(-([0-9]+))?\.html$ /search.php?search_id=active_topics&start=$2&sr=topics [QSA,L,NC]
# UNANSWERED TOPICS
RewriteRule ^unanswered(-([0-9]+))?\.html$ /search.php?search_id=unanswered&start=$2&sr=topics [QSA,L,NC]
# NEW POSTS
RewriteRule ^newposts(-([0-9]+))?\.html$ /search.php?search_id=newposts&start=$2&sr=topics [QSA,L,NC]
# THE TEAM
RewriteRule ^the-team\.html$ /memberlist.php?mode=leaders [QSA,L,NC]
# HERE IS A GOOD PLACE TO ADD OTHER PHPBB RELATED REWRITERULES

# FORUM WITHOUT ID & DELIM
# THESE THREE LINES MUST BE LOCATED AT THE END OF YOUR HTACCESS TO WORK PROPERLY
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([a-z0-9_-]+)/?(page([0-9]+)\.html)?$ /viewforum.php?forum_uri=$1&start=$3 [QSA,L,NC]


10x
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15135

The requested user does not existPosted: Mon Jul 28, 2008 8:08 am    Post subject: Re: The requested user does not exist

It does not seem to be related to your .htaccess.

I don't know exactly what could cause the links to be broken like this, but your example urls misses the user info. I could not reproduce the bug.

-http://forum.com/member//posts/ should be -http://forum.com/member/nickname/posts/

Could you post here the url of the link you see for a profile on index ?

Have you installed any additional mods ?

_________________
Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________

Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche
Back to top
Visit poster's website
Fynnon



Joined: 15 Jul 2008
Posts: 4

The requested user does not existPosted: Mon Jul 28, 2008 11:17 am    Post subject: Re: The requested user does not exist

The links to users profile from index are ok but from inside the forums the
users profile are ok only mine is like this: /member//

I`ve sent you a PM with the adress of my forum and the login!

I have 10-15 mods installed:

Flags Mod
Activity Stats
Prime Trash Bin
AJAX Registration Checks
Mood
LastRss Agregator
phpBB Arcade
Topic Tags Mod
IP Country Flag Olympus
Solved Topics

...i might forgot some

Thank You!
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15135

The requested user does not existPosted: Tue Jul 29, 2008 6:58 am    Post subject: Re: The requested user does not exist

mm, I assume one of this mod altered the profile links then.

Won't be this easy to investigate, the best would be if you could set up a local test board to work on this one without messing the online one.

A quick test you could make would be to deactivate url rewriting for a second and then post here the url of a profile that does not work in it's non rewritten state. Could help to understand.

++

_________________
Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________

Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche
Back to top
Visit poster's website
yatinbhatt



Joined: 20 Aug 2008
Posts: 15

The requested user does not existPosted: Wed Aug 27, 2008 4:54 am    Post subject: Re: The requested user does not exist

Hi,

I have similar issue. I have a vanilla installation of pbpBB 3.0.2 and SEO advanced mod applied with GYM. I use URL rewriting.

When I click a user, http://www.sapgeeksquad.com/forum/member2.html

but I get message The requested user does not exist.

But If I see the address bar at this time, I see the URL,

http://www.sapgeeksquad.com/forum/memberlist.php?mode=viewprofile

The additional parameter &u=xxx seems missing

Thanks
YB
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15135

The requested user does not existPosted: Thu Aug 28, 2008 7:17 am    Post subject: Re: The requested user does not exist

In your case, it looks like you need to generate a new .htaccess, because you probably did some set up about user's urls after you first did.

++

_________________
Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________

Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche
Back to top
Visit poster's website
yatinbhatt



Joined: 20 Aug 2008
Posts: 15

The requested user does not existPosted: Thu Aug 28, 2008 7:47 am    Post subject: Re: The requested user does not exist

Hi dcz,

My .htaccess file has entry for members,

# PROFILES SIMPLE
RewriteRule ^forum/member([0-9]+)\.html$ /forum/memberlist.php?mode=viewprofile&u=$1 [QSA,L,NC]

Is there anything missing in this ? or you need some more information ?

Thanks
YB
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15135

The requested user does not existPosted: Thu Aug 28, 2008 8:59 am    Post subject: Re: The requested user does not exist

It's the correct rewriterule, I don't know how this one only could fail, have you installed any mod ?

If you installed the standalone version of our mod, you may did something wrong upon install, please make sure about this.

++

_________________
Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________

Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche
Back to top
Visit poster's website
yatinbhatt



Joined: 20 Aug 2008
Posts: 15

The requested user does not existPosted: Thu Aug 28, 2008 10:00 am    Post subject: Re: The requested user does not exist

Hi dcz,

I have installed below mods,

1. SEO Advanced Rewrite 0.4.4
2. GYM Sitemap v2.0.B3
3. SEO Zero Dup v0.4.4 and now
4. Dynamic META Tag v0.2.4

Nothing else

Thanks
YB
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15135

The requested user does not existPosted: Mon Sep 01, 2008 7:32 am    Post subject: Re: The requested user does not exist

The rewriterule actually works since -http://www.sapgeeksquad.com/forum/member2.html is not a 404.

So if you installed the mods by hand, please make sure you did it well, especially for the zero duplicate mod.

++

_________________
Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________

Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche
Back to top
Visit poster's website
yatinbhatt



Joined: 20 Aug 2008
Posts: 15

The requested user does not existPosted: Tue Sep 02, 2008 4:15 pm    Post subject: Re: The requested user does not exist

I have used the premod files.
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15135

The requested user does not existPosted: Sat Sep 06, 2008 8:48 am    Post subject: Re: The requested user does not exist

Well, after I created a test account, I get :

Code:
You are not authorised to view the member list or profiles.


I could not reproduce the bug on a test forum either.

Maybe you could grant Testseo (my test account) with enough rights to see profiles so I can check.

++

_________________
Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________

Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche
Back to top
Visit poster's website
yatinbhatt



Joined: 20 Aug 2008
Posts: 15

The requested user does not existPosted: Sun Sep 07, 2008 8:57 am    Post subject: Re: The requested user does not exist

Hi dcz,

I have assigned post viewing rights to your Testseo account.

Please let me know if there any problem

Thanks
YB
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15135

The requested user does not existPosted: Sat Sep 13, 2008 8:39 am    Post subject: Re: The requested user does not exist

Ok, so it could be normal if your .htaccess is not consistent with your settings, try to generate a new one without changing your settings.

++

_________________
Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________

Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche
Back to top
Visit poster's website
yatinbhatt



Joined: 20 Aug 2008
Posts: 15

The requested user does not existPosted: Sun Sep 14, 2008 11:20 am    Post subject: Re: The requested user does not exist

From where ? PHPBB SEO module in the ACP ?
Back to top
Display posts from previous:   
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB3 SEO TooLKit  » phpBB SEO Premod
Page 1 of 2 Goto page 1, 2  Next

Navigation Similar Topics

Jump to: