Hi
I have recently installed Dolphin with intention of creating/testing an online community website.My domain is isimix(dot)com
The problem I have at the moment is that we created 3 profiles for testing purposes.
My profile for example has 2 images, that show in the homepage. This is perfect.
The 3 profiles show up in the right side of the page (without images).
When I select/click on an image to view the profile, I get an error that the requested URL was not found.
Would you please help me in assisting this problem as I have searched but found nothing that helps resolve this error.
My site: www (dot) isimix (dot) com
Thanks in advance
To anyone that might have the same issue in future, this is how I "fixed" the problem:
Edit .htaccess in root, remove the first line:
php_flag register_globals Off
That`s it, problem solved.
Only thing I did was to remove the first line in .htaccess in root, that solved the problem.
Thanks
I think this fonction replace URL like http://yourdomain.com/profile.php?id=1234 with http://yourdomain.com/UserName
The URL rewriting rules could be different for your hosting. In this case the .htaccess file needs to be edited. Often the URL rewriting rules can be found in the FAQ of your hosting provider...
Yes - http://www.domain.net/profile.php?ID=1is working but
http://www.domain.net/username not working
because i uncheck the enble friendly profile permalinks...
I try with .htaccess file
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule .+ - [L]
RewriteRule ^([A-Za-z0-9_-]+)$ http://www.yoursite.com/profile.php?ID=$1 [QSA,L]
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine on
...
RewriteRule ^([A-Za-z0-9_-]+)$ ../profile.php?ID=$1 [QSA,L]
</IfModule>
but i have the script like an alias on another folder so i don't know if this work for everyone.