WebsiteBaker 2.13.8 is now available!
R.I.P Dietmar (luisehahne) and thank you for all your valuable work for WBhttps://forum.websitebaker.org/index.php/topic,32355.0.html
It isnt just the wb portion of the site that crashes either....it's everything (XMB forums, etc)
echo "Variables<br>";$query = $database->query("SHOW VARIABLES WHERE Variable_Name RLIKE '(table_cache|max_connections|max_user_connections|open_files_limit|connect_timeout|^version.*)'");if($query->numRows() > 0) { while($res = $query->fetchRow()) { echo "{$res[0]} = {$res[1]}<br>"; }}echo "<br>Status<br>";$query = $database->query("SHOW STATUS WHERE Variable_Name RLIKE '(Max_used_connections|^Open_.*)'");if($query->numRows() > 0) { while($res = $query->fetchRow()) { echo "{$res[0]} = {$res[1]}<br>"; }}