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
// This is the "enforce payment of hosting fees" code$today = strtotime(date("Y-m-d"));$expiry = strtotime(date("2008-08-01"));if ($today >= $expiry) {$msg = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">';$msg.='<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">';$msg.='<head><title>Mohican 100</title></head><body>';$msg.='<p>This site is temporary unavailable due to unpaid hosting fees</p></body></html>';echo $msg;exit;}