This seems like it should be a really complicated tasks, but once you have done a few it sinks in that this is really simple… Just run each of the following 5 steps as root. Answer any questions with the...
There are LOTS of ways to do this. This is what I do so that I can use the same code in any site’s .htaccess RewriteEngine On RewriteBase / Options +FollowSymlinks RewriteCond %{HTTPS} =on RewriteRule ^(.*)$ http://%{SERVER_NAME}/$1 [R=301,L] I...
If you are working with a Linux or Unix server, you may not even know which operating system release is on the server or even if it is a 32 bit or 64 bit machine. How do you even tell if...
PHP records all errors to a file named error_log I needed to look at the status of a project on two servers to see what errors were being thrown. This command line shows the top 20 errors and how often they...