Users Home Page don't exists
When a user join to my dolphin site (ex. new registartion username "john") the system in "automatic" create a link to not exists page like http://mydolphinsite/john ("
my profile" page). It's possible to disable this feature? or where it's possible to customize users home page? thk's a lot
Got a similar problem but happens when I select the "Member Login" page.
I get an error 404 (member.php not found).
Have confirmed the member.php file, it`s in my root and seems to be fine...
dammit.
www.mysite/theadmiralgeek
what is happening is MOD RE_WRITE is changing the links to friendly ones. You can sort this by adding this to the htaccess in your root folder
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule .+ - [L]
RewriteRule ^([A-Za-z0-9_-]+)$ profile.php?ID=$1 see more
I am also having the same problem. If anybody solves it then plz. post the solution here. ON clicking to the members page, it shows ERROR 404
My .htaccess file is as follows:
# Mod Rewrite #
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond see more