Fixing the start PHP spacing bug in Code Snippet v1.4 WP plugin

Noticed yesterday that the WP PHP code snippet plugin we’re using (thanks Lestat, for pointing to it) is adding an erroneous space between the < and ?. Those who are using this plugin v1.4 and readers should beware that the code examples with the start PHP tag may have an erroneous space being added […]

How to change the server date and time

This is more a Linux task than a PHP one, but for those needing to change their server date/time, it can be done with the linux DATE command as follows:

date - s `+ 1500`

This might require root or sudo privileges. In that case the command would be:

sudo date - s `+ 1500`

On a PHP note, […]