PhotoPost Community

PhotoPost Community (http://www.photopost.com/forum/)
-   Photopost Pro How Do I...? (http://www.photopost.com/forum/photopost-pro-how-do-i/)
-   -   vBulletin/PhotoPost Question (http://www.photopost.com/forum/photopost-pro-how-do-i/122693-vbulletin-photopost-question.html)

ghinton January 31st, 2006 07:42 PM

vBulletin/PhotoPost Question
 
Is there a way to pull the membergroupids column from the user table like you are able to pull usergroupid (which is $usergroups). If so, how can I do this. I don't quite understand how usergroupsid translates into $usergroups anyways.

Chuck S February 1st, 2006 09:35 AM

we pull membergroupid's and authentication them in the usergroups array already

ghinton February 2nd, 2006 04:43 PM

I seem to be having some troubles here...

If usergroup 6 is the primary group and usergroup 10 is the seconday group, then if I said:

Code:

Content visible to verified customers only.
Then this should work?

What I am running into is that if a member is part of 2 groups, then they are treated the same as if they were part of the single one (the one without permissions)

Chuck S February 2nd, 2006 04:50 PM

No we do a pass on the users usergroups for each one and we assign permissions for the best case scenerio on each.

Now we do not define $usergroup anywhere as previously discussed.

If this is a mod your doing you might want to post in the mods forum

Also just a quick note $usergroups is going to be an array so you will need to do a loop

Chuck S February 2nd, 2006 05:04 PM

Here if you look at our vb3.php file you will see we do a pass for each one

Code:

Content visible to verified customers only.


All times are GMT -5. The time now is 12:16 AM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97