Not working. I think you forgot to add mysql querry in the database. I took this error when ı install
Table 'vb.vbdemo_style' doesn't exist
And in vbstyles.php I saw these codes;
Code:
mysql_select_db($database_panelconfig, $panelconfig);
$query_vbStyleChooser = "SELECT styleid, title, displayorder FROM vbdemo_style ORDER BY title DESC";
$vbStyleChooser = mysql_query($query_vbStyleChooser, $panelconfig) or die(mysql_error());
$row_vbStyleChooser = mysql_fetch_assoc($vbStyleChooser);
$totalRows_vbStyleChooser = mysql_num_rows($vbStyleChooser);
But there was no table created like above.