Project Detail

Joomla 1.5 User Access Groups  

Joomla 1.5 User Access Groups is project number 476763
posted at Freelancer.com. Click here to post your own project.

 

| More Free Trial For New Buyers
 

Status: Cancelled

Selected Providers: -

Budget: $30-250

Created: 07/26/2009 at 21:40 EDT

Bid Count: 18

Average Bid:
$ 130

08/05/2009 at 21:40 EDT

Project Creator: Former
Employer Rating: (No Feedback Yet)

Bid On This Project
 

Description

I need to create custom user access groups for Joomla 1.5 .

Members which register need to be placed in different categories as opposed to the current setup where everyone has the same access level as a REGISTERED user.

Job Type

Messages Posted:0 View project clarification board Post message on project clarification board

Bid On This Project
 

If you are the project creator or one of the bidders Log In for more options

 

100

2 days

07-27-2009 06:21 EDT

Please check your PM box. Thanks

help

 

250

6 days

07-27-2009 02:39 EDT

Thank you for the opportunity to submit our proposal for your project. In reviewing your project description, I was excited to see that you are seeking someone experts to implement this project. In additional to our fifth years of designing&developing (joomla&virtuemart, Wordpress, magento, osc, zencart, …….) website experience, we see that we are meet to implement this project for you. For further detail, you can view PMB to see our profile&portfolio. If selected for the project, we make sure that you will satisfied with final results and a long term relationship with AHT. Sincerely, AHT Jsc.

help

 

90

3 days

07-28-2009 16:05 EDT

hi. i can help you out with this

help

 

150

2 days

07-27-2009 04:51 EDT

Hi, Please check PMB for detailed proposal. Thanks Regards, Creative Tech Solutions

help

 

100

3 days

07-27-2009 05:14 EDT

Please check your PMB.

help

 

150

2 days

07-27-2009 03:01 EDT

Hi there, I can get the access groups setup for you! Thanks!

help

 

120

2 days

07-27-2009 03:32 EDT

Can be done WELL

help

 

180

3 days

07-27-2009 11:53 EDT

Please see PMB.

help

 

150

4 days

07-27-2009 06:53 EDT

as quoted

help

 

200

4 days

07-27-2009 10:23 EDT

Please view PM.

help

 

150

2 days

07-28-2009 11:17 EDT

Let us know when to start? Check PM for proposal.

help

 

65

1 day

07-27-2009 07:11 EDT

Hi, Please check your PM, Thanks.

help

 

135

3 days

07-28-2009 04:23 EDT

We are ready to execute this work.

help

 

50

3 days

07-27-2009 17:17 EDT

Yes, you can do it by your self if you can learn joomla. If you are not interested Joomla right now and want to get this done by some professional who has best ratings and cheaper than please check your PM.

help

 

75

2 days

07-27-2009 03:17 EDT

Please check my PM.

help

 

100

1 day

07-29-2009 22:20 EDT

Hi - Please see PMB for our portfolio. Thanks!

help

 

180

5 days

07-27-2009 03:44 EDT

(No Feedback Yet)

Please see pmb..

help

 

100

3 days

07-27-2009 03:10 EDT

(No Feedback Yet)

Dear one,' if you can fallow this instructions, then you can add Ur own groups. ******************************** Joomla! - September 8, 2008 Joomla add Custom User Groups Joomla! come with default user groups, but sometimes to build a specific site, you may want to have custom user groups (user roles) within Joomla 1.5. For example under the registered users group, you may want to have several subgroups: myproject customers customer A admin product manager product manager admin etc… To use these groups within your extension to set the permissions, when you add the groups into the jos_core_acl_aro_groups database table and set the relations correctly, the groups in the user management will not be displayed correctly (e.g. the administrator groups disappear). To display the groups correctly you must change the code of : /administrator/components/com_users/admin.users.php line 285: ************************************************** view source print? 1.if ( $userGroupName == $myGroupName && $myGroupName == 'administrator' ) 2. { 3. // administrators can't change each other 4. $lists['gid'] = 'get('gid') .'" />'. JText::_( 'Administrator' ) .''; 5. } 6. else 7. { 8. $gtree = $acl->get_group_children_tree( null, 'USERS', false ); ************************************************** to ************************************************* view source print? 1.if ( $userGroupName == $myGroupName && $myGroupName == 'administrator' ) 2. { 3. // administrators can't change each other 4. $lists['gid'] = 'get('gid') .'" />'. JText::_( 'Administrator' ) .''; 5. } 6. else 7. { 8. $gtree = $acl->get_group_children_tree( null, 'USERS', true); ************************************************ If you like to add your self custom groups do the following: Edit the jos_core_acl_aro_groups table and add your custom groups (e.g. with phpMyAdmin). When you add a new group make sure that you assign the correct parent to the added group. For instance: the joomla registered group has the ID 19, when you assign a subgroup to it make sure that the parent_id is 19. Don’t assign the lft and rght fields yet but use the code below to rebuild the groups tree correctly: ************************************* 01. parent_id in Joomla this is the value of the parent_id field of the Root record 08. // 1-> start the left tree at 1 09. rebuild_tree ( 0 , 1); 10. 11. function rebuild_tree($parent_id, $left) { 12. 13. // the right value of this node is the left value + 1 14. $right = $left+1; 15. 16. // get all children of this node 17. $result = mysql_query('SELECT id FROM jos_core_acl_aro_groups '. 18. 'WHERE parent_id="'.$parent_id.'";'); 19. while ($row = mysql_fetch_array($result)) { 20. // recursive execution of this function for each 21. // child of this node 22. // $right is the current right value, which is 23. // incremented by the rebuild_tree function 24. $right = rebuild_tree($row['id'], $right); 25. } 26. 27. // we've got the left value, and now that we've processed 28. // the children of this node we also know the right value 29. mysql_query('UPDATE jos_core_acl_aro_groups SET lft='.$left.', rgt='. 30. $right.' WHERE id="'.$parent_id.'";'); 31. 32. // return the right value of this node + 1 33. return $right+1; 34. } 35. ?> **************************************************** If you want to use the custom groups to assign to your articles so that, for example, only the customers can view specific articles, you need to add these groups into the jos_groups, just assign the ID + name of the group whereby the name must be equal to the group name you added into the jos_core_acl_aro_groups database table. *************************** egards Isnaka If you want i will do i for you..........but tell me,whats your hoping bid.i just put some bid here..

help


    Bid on this Project