WordPress database error: [Table './ay6u3nor6dat6ba1/kn6_ayu1n9k4_5_actionscheduler_actions' is marked as crashed and last (automatic?) repair failed]
SELECT a.action_id FROM kn6_ayu1n9k4_5_actionscheduler_actions a WHERE 1=1 AND a.hook='aioseo_send_usage_data' AND a.status IN ('in-progress') ORDER BY a.scheduled_date_gmt ASC LIMIT 0, 1

WordPress database error: [Table './ay6u3nor6dat6ba1/kn6_ayu1n9k4_5_actionscheduler_actions' is marked as crashed and last (automatic?) repair failed]
SELECT a.action_id FROM kn6_ayu1n9k4_5_actionscheduler_actions a WHERE 1=1 AND a.hook='aioseo_send_usage_data' AND a.status IN ('pending') ORDER BY a.scheduled_date_gmt ASC LIMIT 0, 1

The cellspacing attribute on the table element is obsolete. Use CSS instead | Loop and Break

The cellspacing attribute on the table element is obsolete. Use CSS instead

This is a common error shown by validating HTML documents. This error comes when table cellspacing is used inside <table> tag as :

<!DOCTYPE HTML>
<html>
<head>
	<title>HTML Validation eroors</title>
</head>
<body>
<table cellspacing="10">
  <tr>
    <td>1</td>
    <td>2</td>
  </tr>
  <tr>
    <td>1</td>
    <td>2</td>
  </tr>
</table>
</body>
</html>

Replace cellspacing attribute with a CSS styles as :

<!DOCTYPE HTML>
<html>
<head>
	<title>HTML Validation errors</title>
</head>
<body>
<table style="border-spacing:10px;"> <!-- CSS -->
  <tr>
    <td>1</td>
    <td>2</td>
  </tr>
  <tr>
    <td>1</td>
    <td>2</td>
  </tr>
</table>
</body>
</html>
Share

You may also like...