Set Gold Membership for all Member at once!

Is there a way to give all members a Gold Membership at once!

I have reinstalled one of my old site which has over 1400 members and I want to give them all a Gold Membership.

Can this be done?

Diddy is not greedy and has time. Dolphin is cool and its not just mine :-)
Quote · 18 Sep 2010

It was a bit tricky but I made it :-)

Since those member with Standard membership are not inside "sys_acl_levels_members" at phpMyAdmin you will have to create them. I did it with Excel and imported it to the table.

Since all values are set to 0 except the memberID if you import that excel, I did export them as sql and edit the 0 Value sections with notepad++. They have now all the same date but who cares they got a better membership.

To make sure the members also have the membership you will have to add them at your "Profiles" table as well. Which is a bit more easy.

Just run the folowing command at your phpMyAdmin SQL:

UPDATE Profiles SET membership_id = 'new_membership_ID' WHERE membership_id = 'old_membership_ID';


Thats it, my members are happy and me too cos I learned something Innocent

Enjoy :-)

Diddy is not greedy and has time. Dolphin is cool and its not just mine :-)
Quote · 19 Sep 2010

There was a faster way to copy all the members to that table.

First make sure sys_acl_levels_members is empty. Then run this SQL Query to copy all the members to it.

INSERT INTO `sys_acl_levels_members` (`IDMember`,`IDLevel`,`DateStarts`) SELECT `ID`,membership_ID,NOW() FROM `Profiles`;

https://www.deanbassett.com
Quote · 19 Sep 2010

I also can't find this membership_id field in the profiles table on either of my dolphin sites. One running 7.0.1 the other 7.0.2

Normally all that is needed to for the member to exist in the sys_acl_levels_members table.


https://www.deanbassett.com
Quote · 19 Sep 2010

Hi

Diddy is not greedy and has time. Dolphin is cool and its not just mine :-)
Quote · 19 Sep 2010
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.