Quantcast
Channel: smtp – WordPress.org Forums
Viewing all articles
Browse latest Browse all 1196

Error while sending QUERY packet

$
0
0

Having issue, since last MailPoet version upgrade, to send emails through my SMTP using plug-in Easy WP SMTP. Was with Google SMTP API last year and was rerouted by ISP to the latter plug-in.

Warning: Error while sending QUERY packet. PID=991970 in /home/condos7/public_html/nc/wp/wp-includes/wp-db.php on line 1877

/**
* Internal function to perform the mysql_query() call.
*
* @since 3.9.0
*
* @access private
* @see wpdb::query()
*
* @param string $query The query to run.
*/
private function _do_query( $query ) {
if ( defined( ‘SAVEQUERIES’ ) && SAVEQUERIES ) {
$this->timer_start();
}

if ( ! empty( $this->dbh ) && $this->use_mysqli ) {
$this->result = mysqli_query( $this->dbh, $query );
} elseif ( ! empty( $this->dbh ) ) {
Line 1877 = $this->result = mysql_query( $query, $this->dbh );
}
$this->num_queries++;

if ( defined( ‘SAVEQUERIES’ ) && SAVEQUERIES ) {
$this->queries[] = array( $query, $this->timer_stop(), $this->get_caller() );
}
}

ISP is InMotion on a shared server.
Max_Allowed_Packet = 5 Mb
Max-Exec_Time = 120 sec (default)

Can’t change those values unless on a VPS at 25$/month…crap!

Please help!
Robert


Viewing all articles
Browse latest Browse all 1196

Trending Articles