Backup Fails - Warning: Error while sending QUERY packet.

Error while sending QUERY packet.

by Diana Diana -
Number of replies: 0

Hy,
It is come all the time this error and i set set 'max_allowed_packet' in MySQL to 128M.
What do you think is the problem?
Thank you!
Error while sending QUERY packet. PID=26714

/home/findiagr/_fws/yii/framework/db/CDbCommand.php(508)

496                 Yii::trace('Query result found in cache','system.db.CDbCommand');
497                 return $result[0];
498             }
499         }
500 
501         try
502         {
503             if($this->_connection->enableProfiling)
504                 Yii::beginProfile('system.db.CDbCommand.query('.$this->getText().$par.')','system.db.CDbCommand.query');
505 
506             $this->prepare();
507             if($params===array())
508                 $this->_statement->execute();
509             else
510                 $this->_statement->execute($params);
511 
512             if($method==='')
513                 $result=new CDbDataReader($this);
514             else
515             {
516                 $mode=(array)$mode;
517                 call_user_func_array(array($this->_statement, 'setFetchMode'), $mode);
518                 $result=$this->_statement->$method();
519                 $this->_statement->closeCursor();
520             }