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

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

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.