-
Apprentice
[RevCMS] Community Error
Hey guys, when I go to my community page, it doesn't load the PHP variables and it doesn't show no styling. What's the error here?
Here's a live demo; {hotelName} - Community
Here's source code; <!DOCTYPE html> <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" - Pastebin.com
Thanks in advance,
Nootis
-
-
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.
Last edited by Unphased; 12-08-13 at 02:04 AM.
-
Member
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");
-
Apprentice
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.