I found the solution, in the index.php.
Code:
// Execute the query to retrieve articles
$result = $connector->query('SELECT ID,title FROM intraarticles ORDER BY ID DESC LIMIT 0,5');
The part FROM intraarticles, was cmsarticles, when I changed it to intraarticles (the name of my table) the problem was gone.