Re: [RevCMS] Community Error
If you look at the bottom of the page, it explains the error. I had this issue a while back, all you need to do is replace that table with the correct one.
Re: [RevCMS] Community Error
The table catalog_items does not exists and is necessary to the page load.
If you want load the page without the table, you can replace this line:
$query = mysql_query("SELECT COUNT(*) AS aantalmeubels FROM catalog_items") or die(mysql_error());
FOR this line:
$query = @mysql_query("SELECT COUNT(*) AS aantalmeubels FROM catalog_items");
Re: [RevCMS] Community Error
Thanks guys, just fixed the error by changing from catalog_items to catalog_items_copy, didn't even see the error at the bottom lmao.