[PrestaShopDatabaseException]

User 'motobelfqtmtbpre' has exceeded the 'max_questions' resource (current value: 40000)

SELECT bcp.`id_cms`, cl.`name`, cl.`link_rewrite`
			FROM `ps_cms_block_page` bcp
			INNER JOIN `ps_cms_category_lang` cl
			ON (bcp.`id_cms` = cl.`id_cms_category`)
			WHERE bcp.`id_cms_block` = 2
			AND cl.`id_lang` = 4
			AND bcp.`is_category` = 1

at line 604 in file classes/db/Db.php

598. 		if ($webservice_call && $errno)
599. 			WebserviceRequest::getInstance()->setError(500, '[SQL Error] '.$this->getMsgError().'. Query was : '.$sql, 97);
600. 		else if (_PS_DEBUG_SQL_ && $errno && !defined('PS_INSTALLATION_IN_PROGRESS'))
601. 		{
602. 			if ($sql)
603. 				throw new PrestaShopDatabaseException($this->getMsgError().'<br /><br /><pre>'.$sql.'</pre>');
604. 			throw new PrestaShopDatabaseException($this->getMsgError());
605. 		}
606. 	}
607. 
608. 	/**