Sometimes when you are moving files from one host to another, you have to change the files owner or permissions so the web server can utilize it properly.
There is times that I am wanting to convert a time string and have it output in the sites timezone. This is a simple function that utilizes the DateTime class and implements the wp_timezone for its output.
function wp_strtotime($str = "now" ) { if ($str == '' || in_array($str,array("+","-") ) ) $str = "now"; $datetime = new DateTime($str, wp_timezone()); $dt_timestamp = $datetime->format('U'); $nowdatetime = new DateTime("now", wp_timezone()); $now_timestamp = $nowdatetime->format('U'); if ($now_timestamp != current_time('timestamp')) { $timeDiff = $now_timestamp - current_time('timestamp'); $dt_timestamp = $dt_timestamp - $timeDiff; } return $dt_timestamp; }
Sometimes when you are moving files from one host to another, you have to change the files owner or permissions so the web server can utilize it properly.
Here is a Linux command line that searches for files that are over a certain size so that you can find where you might be able to free up some space. Useful to find error_logs that have run amok.
Here is a method to import a SQL file into a database via the Linux command line.
Copyright © 2025 FalkensMaze.dev - Sitemap