Redirection in JavaScript
Always needed tip: window.location.href = “https://kavecan.com”;
Always needed tip: window.location.href = “https://kavecan.com”;
When debugging CakePHP code, it’s very useful to know which SQL query is executed latest. Use next few lines to get this information $log = $this->Model->getDataSource()->getLog(false, false); debug($log);
If you want to get info about free space on server, or in particular directory, execute next code in your browser – it will give you info about free space on server’s directory defined in variable $dir: $dir = ‘/var/www/htdocs/’; $space = round(disk_free_space($dir) / 1024 / 1024 / 1024); echo (“Free space: ” . $space…