V
vVv
Guest
not sure what happened with PC's on my site... but they're all showing as single PC's and most as "zero replies"... like..
hey man
Replies:
0
Participants:
2
re: hey man
Replies:
0
Participants:
2
re: hey man
Replies:
0
Participants:
2
re: hey man
Replies:
0
Participants:
2
re: hey man
Replies:
0
Participants:
2
and that's not just for my own PC's.. this is for everyone's.. how can I fix this? Once I get this fixed, then I'd like to prune out PCs with actually zero replies...Like running query, for example below here:
Basically, my PC's for my user ID, with PCs actually containing zero replies.
hey man
Replies:
0
Participants:
2
re: hey man
Replies:
0
Participants:
2
re: hey man
Replies:
0
Participants:
2
re: hey man
Replies:
0
Participants:
2
re: hey man
Replies:
0
Participants:
2
and that's not just for my own PC's.. this is for everyone's.. how can I fix this? Once I get this fixed, then I'd like to prune out PCs with actually zero replies...Like running query, for example below here:
Code:
DELETE
FROM xf_conversation_message
WHERE conversation_id IN (
SELECT conversation_id
FROM xf_conversation_master
WHERE user_id = 1
AND reply_count = 0
);
DELETE
FROM xf_conversation_recipient
WHERE conversation_id IN (
SELECT conversation_id
FROM xf_conversation_master
WHERE user_id = 1
AND reply_count = 0
);
DELETE
FROM xf_conversation_user
WHERE conversation_id IN (
SELECT conversation_id
FROM xf_conversation_master
WHERE user_id = 1
AND reply_count = 0
);
DELETE
FROM xf_conversation_master
WHERE user_id = 1;
Basically, my PC's for my user ID, with PCs actually containing zero replies.