vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Show Thread Enhancements - [AJAX] Post Thank You Hack (https://vborg.vbsupport.ru/showthread.php?t=165673)

BirdOPrey5 10-11-2011 07:18 PM

If you look at the date Darkness gave the Thank You's they were the exact same second. It's either a browser issue or a user issue- maybe they are double-clicking or something. I don't think there is anything you can do about it short of rewriting the mod code to prevent duplicates.

Scandal 10-14-2011 02:29 PM

Every vote has its own security token, I don't understand why it happens. :(

I hope that it's possible for someone to write a php script or a cron to fix the database data (remove the duplicates or remove all the double votes). :(


-petros

Scandal 10-16-2011 05:30 PM

Well, I made an inquiry and I find that users with Internet Explorer 9 gives double thanks (with same date/time but different thanks ID). I believe that someone should give us a solution/update! :o

djbaxter 10-16-2011 07:24 PM

Quote:

Originally Posted by philos2 (Post 2257835)
Well, I made an inquiry and I find that users with Internet Explorer 9 gives double thanks (with same date/time but different thanks ID). I believe that someone should give us a solution/update! :o

Then you have so9me sort of conflict with another add-on or possibly with a custom style. I have several members using IE9 and that's not happening on my forums (installed on two 4.1.7 forums and one 3.8x forum).

Scandal 10-17-2011 06:26 PM

Quote:

Originally Posted by djbaxter (Post 2257881)
Then you have so9me sort of conflict with another add-on or possibly with a custom style. I have several members using IE9 and that's not happening on my forums (installed on two 4.1.7 forums and one 3.8x forum).

You are right!

The problem was a javascript tooltip I had installed on my site for the viewing of "thanks" votes. I replace it with a simple css tooltip and now all is ok. I don't understand why it appears problems only on IE9 but anyway...
Sorry for the confusion :o:o

Now, I must find a solution to fix my database from the duplicate entries. :(

jl255 10-28-2011 05:22 AM

Quote:

Originally Posted by BirdOPrey5 (Post 2255539)
Are you on shared hosting? Maybe talk to your host to see if you can extend the timeout period.

Another option would be to shut off your forum and try during a time of day when the server has the least traffic, might work.

Final option might be to add the fields via phpmyadmin directly (or at last check to see if they were correctly made).

would you be able to give me the exact mysql statements to run to add in the fields via phpmyadmin? tks.

BirdOPrey5 10-28-2011 10:21 AM

If you open the product XML file, near the top of the file are the MySQL Statements:

PHP Code:

$vbulletin->db->query_write("CREATE TABLE IF NOT EXISTS`"TABLE_PREFIX ."post_thanks` (
    `id` INT(10) NOT NULL AUTO_INCREMENT PRIMARY KEY,
    `userid` INT(10) NOT NULL,
    `username` VARCHAR(50) NOT NULL,
    `date` INT(10) NOT NULL,
    `postid` INT(10) NOT NULL)
    "
);
$vbulletin->db->query_write("ALTER TABLE `"TABLE_PREFIX ."post_thanks` ADD INDEX ( `postid` )");

$vbulletin->db->query_write("ALTER TABLE `"TABLE_PREFIX ."user` ADD `post_thanks_user_amount` INT( 10 ) UNSIGNED DEFAULT '0' NOT NULL");
$vbulletin->db->query_write("ALTER TABLE `"TABLE_PREFIX ."post` ADD `post_thanks_amount` INT( 10 ) UNSIGNED DEFAULT '0' NOT NULL");
$vbulletin->db->query_write("ALTER TABLE `"TABLE_PREFIX ."user` ADD `post_thanks_thanked_posts` INT( 10 ) UNSIGNED DEFAULT '0' NOT NULL");
$vbulletin->db->query_write("ALTER TABLE `"TABLE_PREFIX ."user` ADD `post_thanks_thanked_times` INT( 10 ) UNSIGNED DEFAULT '0' NOT NULL");

$db->show_errors();]]></installcode

As you can see there are quite a few... You will need to remove the `". TABLE_PREFIX ." from each one and replace it with your actual table prefix, if any.

They need to be run in the order they are shown.

The queries are the code between the quotes, you would ignore everything in red in this example:

Code:

$vbulletin->db->query_write("ALTER TABLE `". TABLE_PREFIX ."post_thanks` ADD INDEX ( `postid` )");
And of course it goes without saying- be ABSOLUTELY SURE you have a recent and verified backup of the database before attempting manual edits.

pfdc 10-29-2011 04:44 AM

is this hack available for 4.1.7??

Simon Lloyd 10-29-2011 02:58 PM

Quote:

Originally Posted by pfdc (Post 2262552)
is this hack available for 4.1.7??

Considering you have posted here you must have read the mod description.......did you spot the link? :)

Mark_Zuckerberg 11-03-2011 10:28 PM

first time bad experience with vb mod i also installed db tech like mod and dint worked and now this one also installed showing settings in admin panel but not working in threads and also made the board so slow :down: :(


All times are GMT. The time now is 05:04 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.03589 seconds
  • Memory Usage 1,755KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (1)bbcode_php_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete