How to Copy Files with SCP between Linux Servers

1.1 SCP Command Line-An Overview

 

The SCP command line is commonly used to copy files over SSH, and between popular Operating systems like Linux, Mac and Windows in a secure fashion. SCP is used to copy files to/from a remote server. It also allows you to copy files from one remote server to another remote server, without passing traffic through your PC.

Read more

How to recover iPhone Photos from iCloud After Permanent Deletion?

There can be many possible scenarios when you would have deleted some of your important iPhone data intentionally or accidentally. And later on, you require getting them back. So, always be cautious while performing any operation with your iPhone data as an incorrect operation can make you face drastic data loss situations. Data loss may also happen due to several other reasons like: Virus attack, some conflicting app installed in your phone, incorrect user operations, software/hardware issues, formatting/resetting the device, device corruption etc.

Read more

Fix “HTTP request length 134926 (so far) exceeds MaxRequestLen” error on Debian Linux

When you get a 500 error in a webpage hosted on Debian Linux (6.0) with apache webserver and fastcgi, take a look into the apache error.log file. This can either be the global error.log or the error.log of the website where you got the error. If you find a error similar to this one: [Fri Apr ... Read more

Windows Returnvalue: 2147786788 in wmi EnableStatic method

Successfully using the EnableStatic method for example in powershell always gives the Returnvalue 0. If that is not the case, something will most likely have gone wrong. If you are returned the value 2147786788, this is a sign for a write lock of some sort, meaning you have to look for running processes that are ... Read more

Redirect http requests to a new folder with apache rewrite rules

When you reorganize the structure of a website, you might want to redirect requests to files in a old folder to a new one without loosing the pagerank. In this example, I will redirect all requests from directory "olddir" to directory "newdir", so that requests like http://www.yourdomain.tld/olddir/page.htm get redirected to http://www.yourdomain.tld/newdir/page.htm without loosing the Google pagerank ... Read more