Merhaba arkadaşlar şöyle bir hata alıyorum eklentileri sildim güncelledim veri tabanını onardım ama post problemim devam ediyor. DB hatası mevcut.

Post Hata ssı
Warning: Creating default object from empty value in wp-admin/includes/post.php on line 641

Hata satırı:
$post->post_content = apply_filters( 'default_content', $post_content, $post );

DB hatası
Hata
Got error 28 from storage engine in wp-includes/wp-db.php on line 1877

Hata Satırı:
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 ) ) {
$this->result = mysql_query( $query, $this->dbh );
}
$this->num_queries++;

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