Member Database

Temporary forum to obtain support while phpBB.com is offline.
Please use the support forum on phpBB.com
Forum rules
Temporary forum to obtain support while phpBB.com is offline.
Please use the support forum on phpBB.com
Locked
JohninLA
Registered User
Posts: 12
Joined: Sat Apr 10, 2004 2:21 pm

Member Database

Post by JohninLA »

Hi, is there a simple way that I can capture all my member's email addresses? I want to back this up just in case something happens to the board, I'll be able to contact the membership list.

I used to be able to do this with phpbb2, but am not sure if that was built in, or I did it with a mod.

I'd appreciate your help.

Thanks.

Gobby
Registered User
Posts: 19
Joined: Sun Feb 01, 2009 10:25 pm

Re: Member Database

Post by Gobby »

I too would be interested in this. As I have already lost a forum once and my entire memberlist this could be a godsend.

Mind you when you back up your forum does it save it in there? :?

User avatar
Noxwizard
Support Team Leader
Support Team Leader
Posts: 137
Joined: Sun Dec 18, 2005 5:44 pm
Location: Texas
Contact:

Re: Member Database

Post by Noxwizard »

You can run this query to get them:

Code: Select all

SELECT user_email FROM phpbb_users WHERE user_email <> ''

griffinmt
Registered User
Posts: 10
Joined: Mon Feb 02, 2009 12:26 am

Re: Member Database

Post by griffinmt »

You may also want to select the users name at the same time so you can better 'tailor' the messages sent to them.

Code: Select all

SELECT username,user_email FROM phpbb_users WHERE user_email <> ''
Martyn T. Griffin

User avatar
COD3M4ST3R-X
Registered User
Posts: 228
Joined: Wed Nov 05, 2008 7:52 am
Location: Lahore,Pakistan
Contact:

Re: Member Database

Post by COD3M4ST3R-X »

Well you could also use this mod.
AJAX Email List

Code: Select all

http://www.djchrisnet.de/phpbb3-f54/acp-user-email-list-t219.html
Image
Long Live PhpBB!

JohninLA
Registered User
Posts: 12
Joined: Sat Apr 10, 2004 2:21 pm

Re: Member Database

Post by JohninLA »

COD3M4ST3R-X wrote:Well you could also use this mod.
AJAX Email List

Code: Select all

http://www.djchrisnet.de/phpbb3-f54/acp-user-email-list-t219.html
Is there an English translation of this page? I looked around, but can't find where to download the mod, or the instructions. The links are to a page that can't be found.

Thanks.

Locked