|
|
Re:Creating a CUSTOM URL for users/members
|
|
Date: 2006/02/07 10:45
|
By: TUSE
|
Status: User
|
|
|
Karma: 13  
|
|
Junior Joomlapolitan  | Posts: 45 |   | |
|
Thought I posted earlier.. not sure what happend.. ok, here is the deal..
I setup the .htacess and that part is working fine.. I can go to mydomain.com/mambo/username and view there profile..
The problem now is that when I click on the memberlist, it gives me a 404 error and I cannot view any profiles on the list. What am I doing wrong?
Tim
Also when I click on Myprofile it gives me a 404.. but I guess that would be expected
Post edited by: TUSE, at: 2006/02/07 04:47
|
|
The topic has been locked. |
|
|
|
|
Re:Creating a CUSTOM URL for users/members
|
|
Date: 2006/02/07 11:03
|
By: philt
|
Status: User
|
|
|
Karma: 0  
|
|
Fresh Joomlapolitan  | Posts: 3 |   | |
|
I am also having toruble getting this working. I am using 404 sef; it seems to work with everything except user profile pages. The URLs for the user profile pages look like this:
mambo/userprofile.html mamob/userprofile-2.html
|
|
The topic has been locked. |
|
|
|
Re:Creating a CUSTOM URL for users/members
|
|
Date: 2006/02/07 15:18
|
By: hedingsi
|
Status: User
|
|
|
Karma: 19  
|
|
Expert Joomlapolitan  | Posts: 111 |   | |
|
Hi Tuse
I had the same problem. thats the matter why i disabled the Search Engine Friendly URLs under SEO. without sef it worked for me. Just let the htaccess file working 
@SIGHUP
You need to have an apache for this (not IIS, IIS dont can handle with htaccess files!)
Post edited by: hedingsi, at: 2006/02/07 09:20 CB3PD (Community Builder 3rd Party Developer) -*-*-*-*-*-*-*Current Projects*-*-*-*-*-*-*-*-*-*- Karmaplugin with Lennox Mood Pluding with avarage rate and statement function Watermark Upload Conrtibute -*-*-*-*-*-*-*Homepage*-*-*-*-*-*-*-*-*-*- http://www.soundofdream.com
|
|
The topic has been locked. |
|
|
|
Re:Creating a CUSTOM URL for users/members
|
|
Date: 2006/02/07 22:11
|
By: SIGHUP
|
Status:
|
|
|
Karma: -1  
|
|
Senior Joomlapolitan  | Posts: 51 |   | |
|
Your're english is fine dude.
Hmm, actually this is what's happening right now.
@hedingsi
I turned off SEO under the administrator/global configuration panel. Now it freaking works! Just like you said.
Aha! Now turned it back on with the corresponding RewriteEngine code and guess what? It doesn't work any more it gives a 404 when trying to access a users profile via mysite.com/viewprofile
Very interesting, we'll see what happens next.
I've seen this work on other sites with SEO turned on, hope it doesn't come to deciding between features.
Post edited by: sighup, at: 2006/02/07 16:14
|
|
The topic has been locked. |
|
|
|
Re:Creating a CUSTOM URL for users/members
|
|
Date: 2006/02/09 01:50
|
By: TUSE
|
Status: User
|
|
|
Karma: 13  
|
|
Junior Joomlapolitan  | Posts: 45 |   | |
|
Thanks a million hedingsi. That seemed to solve the issue perfectly... very much appreciated..
Tim
|
|
The topic has been locked. |
|
|
|
Re:Creating a CUSTOM URL for users/members
|
|
Date: 2006/02/09 03:17
|
By: mediaguru
|
Status:
|
|
|
Karma: 59  
|
|
Platinum Joomlapolitan  | Posts: 785 |   | |
|
It's not working for me. Here's my htaccess code:
| Code: | ##
# @version $Id: htaccess.txt 1005 2005-11-13 17:33:59Z stingrey $
# @package Joomla
# @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
# @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
# Joomla! is Free Software
##
Options +FollowSymLinks
#
# mod_rewrite in use
#
RewriteEngine On
# Uncomment following line if your webserver's URL
# is not directly related to physical file paths.
# Update YourJoomlaDirectory (just / for root)
# RewriteBase /YourJoomlaDirectory
#
# Rules
#
#
# ProfileRedirector V 1.3
#
# Make sure your host allows option override
# and has ModRewrite installed
# activate Rewrite enginge
RewriteEngine On
# RewriteBase /home/.sites/75/site1/web
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# RewriteRule ^(.*) index.php?cb_username=$1
RewriteCond %{REQUEST_FILENAME} !.(jpg|jpeg|gif|png|css|js|pl|txt)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)/?$ index.php?option=com_comprofiler&task=userProfile&user='$1' [L]
|
No matter what I type (www.mysite.com/username or mysite.com/anything) goes to the home or index page. CB WISHLIST
1. Contextual (member type) registration fields (business, personal, artist etc). 2. Photo gallery style search results (like myspace) 3. Comments on profile gallery photos. 4. Auto resize profile images in backend. 5. Customizable user web pages (see tagworld) 6. Images in CB fields/tabs.
My main CB site: http://www.thegolfspace.com Check out my newest CB site: http://www.themacspace.com My Karma (user rating) suite now in the CB Directory!
|
|
The topic has been locked. |
|
|