I discovered the download file in my spam folder, thank you for your service.PM me your paypal email address or transaction ID
That could be done only with another addon.is there any feature to hide post/attachment by using these rating
Yes. It is set in Options -> Post Ratings. It is also shown in a screenshot on the Overview page.is there any feature to hide post/attachment by using these rating
Yes. It is set in Options -> Post Ratings. It is also shown in a screenshot on the Overview page.
#1054 - Unknown column 'THANKS_RATING_ID' in 'field list'
I'm trying to use the above query to import the Post Thanks data, but there's no content_userid field in my vB_post_thanks table. How do I get this imported?Post Thank You Hack import:
Code:insert ignore into XENFORO_DB_NAME.dark_postrating select null, postid, userid, content_userid, THANKS_RATING_ID, date from VBULLETIN_DB_NAME.post_thanks
For both queries you must import keeping source IDs and replace the bits in caps with the relevant values. Once done, run Recount Ratings in your Admin CP.
I'm trying to use the above query to import the Post Thanks data, but there's no content_userid field in my vB_post_thanks table. How do I get this imported?
I disabled signatures for my users.. and the post ratings disappeared on me. I'd like to keep them in the same spot, but not have signatures.. what can I do?
Where do I write this in order to remove a negative rating?
delete pr
from dark_postrating pr
left join dark_postrating_ratings r on pr.rating = r.id
where pr.rated_user_id = x and r.type = -1
Thanks!
Can this add on be integrated into the Resource Manager and Media Gallery? I already bought licenses for my sites, but it seems I can only use them on posts, not resource/media comments. Is that planned at some point?
is there any feature to hide post/attachment by using these rating
Maybe a bug.
When I rate a post, then click on the "List" and hover on ratings and click on "Delete rating" next to my own rating, then the rating will be deleted. But I can't re-rate the post until I refresh the page (the rating bar gets hidden until I refresh the page):
Also, isn't it possible to use phrases in rating's name? (so that be able to define phrase and use it. In multiple language sites would be useful and also needed)
What fields are there for you?
I have:
id (int 10, auto increment)
userid (int 10)
username (varchar 50)
date (int 10)
postid (int 10)
And some sample data:
INSERT INTO `vB_post_thanks` (`id`, `userid`, `username`, `date`, `postid`) VALUES
(20, 3674, 'Gladman', 1170026161, 12448),
(21, 3499, 'stitches', 1170092935, 12447);
insert ignore into XENFORO_DB_NAME.dark_postrating select null, postid, userid, null, THANKS_RATING_ID, date from VBULLETIN_DB_NAME.post_thanks
update dark_postrating r set r.rated_user_id = (select p.user_id from xf_post p where p.post_id = r.post_id) where r.rated_user_id is null
I had to add a LIMIT to get that second statement to run, but I eventually got all the ids added. Unfortunately, when I ran the recount in the admin panel, it seemed to work at first, but after a few minutes gave me this error:
An exception occurred: Mysqli prepare error: MySQL server has gone away in /home/forum/public_html/library/Zend/Db/Statement/Mysqli.php on line 77
I did take a backup before running it, but if I have to restore and do it over again how do I prevent this from happening again?
- Zend_Db_Statement_Mysqli->_prepare() in Zend/Db/Statement.php at line 115
- Zend_Db_Statement->__construct() in Zend/Db/Adapter/Mysqli.php at line 381
- Zend_Db_Adapter_Mysqli->prepare() in Zend/Db/Adapter/Abstract.php at line 478
- Zend_Db_Adapter_Abstract->query() in XenForo/Model.php at line 219
- XenForo_Model->fetchAllKeyed() in XenForo/Model/RoutePrefix.php at line 41
- XenForo_Model_RoutePrefix->getPrefixesByRouteType() in XenForo/Model/RoutePrefix.php at line 54
- XenForo_Model_RoutePrefix->getPrefixesForRouteCache() in XenForo/Link.php at line 487
- XenForo_Link::_loadHandlerInfoForGroup() in XenForo/Link.php at line 404
- XenForo_Link::_getPrefixHandler() in XenForo/Link.php at line 370
- XenForo_Link::_buildLink() in XenForo/Link.php at line 97
- XenForo_Link::buildPublicLink() in XenForo/Dependencies/Admin.php at line 197
- XenForo_Dependencies_Admin->getEffectiveContainerParams() in XenForo/FrontController.php at line 635
- XenForo_FrontController->renderView() in XenForo/FrontController.php at line 158
- XenForo_FrontController->run() in /home/forum/public_html/admin.php at line 13
(It did seem to partially work; some of my members are now showing some Likes (well, on my forum, Thanks) in their profile totals. It does seem to be only a fraction of the actual number of Thanks they received before the forum change, so I guess it stopped part way through.)
We use essential cookies to make this site work, and optional cookies to enhance your experience.