duplicate sites

Basti

Administrator
Staff member
Well, there should be none, but if someone slipped through, just search for the url in admin -> manage members
 

Mark

Administrator
Staff member
use phpmyadmin (or your favorite method to work on MySQL databases) and run this query to identify duplicates

PHP:
SELECT short_url
FROM VL_sites
GROUP BY short_url
HAVING count(*) > 1;
 
Top