The following warnings occurred:
Warning [2] Undefined variable $unreadreports - Line: 26 - File: global.php(961) : eval()'d code PHP 8.1.2-1ubuntu2.14 (Linux)
File Line Function
/global.php(961) : eval()'d code 26 errorHandler->error
/global.php 961 eval
/showthread.php 28 require_once





× This forum is read only. As of July 23, 2019, the UserSpice forums have been closed. To receive support, please join our Discord by clicking here. Thank you!

  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Error while sending QUERY packet
#5
Your error can be caused by several issues, usually relating to sending large amounts of data to your database. If the data is large, change your
Code:
max_allowed_packet
variable before running your query. It defaults to 16MB but your shared host may have lowered it, or you might just be sending more than that. This changes it to 32MB:
Code:
SET GLOBAL max_allowed_packet=33554432;

It might also be timing out before it can finish sending. Also try this to change the seconds before timeout:
Code:
SET GLOBAL wait_timeout 10;

Try these and let us know if you still have issues. This isn't a UserSpice specific issue so you might find a faster answer by searching on Google than waiting for us to help you.
  Reply


Messages In This Thread
Error while sending QUERY packet - by mudmin - 08-03-2017, 03:02 PM
Error while sending QUERY packet - by firestorm - 08-03-2017, 04:01 PM
Error while sending QUERY packet - by karsen - 08-08-2017, 06:29 PM
Error while sending QUERY packet - by firestorm - 08-09-2017, 12:14 PM
Error while sending QUERY packet - by karsen - 08-10-2017, 04:22 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)