deleting members who have never logged in deleting members who have never logged in
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

deleting members who have never logged in

Started by kateheaven, September 14, 2006, 11:48:36 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

kateheaven

is there a way to mass delete members who have never logged in? i've tried doing it through the gallery usermgr.php (sorting members by last visit ascending) but this will still take ages because there are so many members.

Nibbler

You can do it via the database if you are comfortable with phpmyadmin

DELETE FROM cpg_users WHERE user_lastvisit = '0000-00-00 00:00:00'

Change cpg_ to the prefix you chose during installation and backup your users table before you run the query.

kateheaven


tjiepie

Members must on the gallery activation his account by mail.
if the account no activate after 7 days can you delete these?

Example:
Members make a account
If the member after 7 days no activation his account, delete the account auto?

Joachim Müller

There's no auto-delete feature built into coppermine. If you need such a feature, you'll have to code it.