Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Posts gone missing
Ok this is really wierd.
I made a post on my forum last night. I check it this morning, and it's not there. One of my users reported this has happened before and I said i'd keep an eye out and well now i've seen it for myself.
Now the really wierd part is that in the cleanup extension are currently 6 posts and 1 discussion reported as hidden. I'm certain that I havn't hidden any of these! I have my forum preferences set to view hidden comments and discussions and the post that is missing is definitely not displaying.
I'm not even sure if these are linked but either way something funky is going on. Anyone else had similar symptoms or know what might be causing this? I really don't know where to begin.
I made a post on my forum last night. I check it this morning, and it's not there. One of my users reported this has happened before and I said i'd keep an eye out and well now i've seen it for myself.
Now the really wierd part is that in the cleanup extension are currently 6 posts and 1 discussion reported as hidden. I'm certain that I havn't hidden any of these! I have my forum preferences set to view hidden comments and discussions and the post that is missing is definitely not displaying.
I'm not even sure if these are linked but either way something funky is going on. Anyone else had similar symptoms or know what might be causing this? I really don't know where to begin.
0
This discussion has been closed.
Comments
2. (as giginger said) have you looked at the database directly for it?
select * from LUM_Discussion where Active <> '1';
select c.* from LUM_Comment c inner join LUM_Discussion d on c.DiscussionID = d.DiscussionID where d.Active <> '1';
For individually hidden comments:
select * from LUM_Comment where Deleted = '1';