If there is a problem with any folder under any site starting it’s name with ‘dev’, It gives Internal Server Error…. while accessing any scripts inside it. This problem is mainly caused by ‘mod_security’. You will have to check if ‘mod_security’ is enebled on the server, If so you will have to disable it in order to get those scripts running.
Archive for November 24th, 2006
24
Nov
06
Splitting Files…
Many times we have to transfer big files. But due to bad network or bad connection transfer time outs when transferring such a big file.
To override this, you can split this file into small size files, transfer it and then join it again.
Here are the steps for it.
Make sure you have root privilages to do this.
1) Login to the shell where the file is stored.
2) Run the command
split –bytes=sizeoffileyouwanttosplit filename
(split –bytes=1000M backup.tar.gz)
3) Copy the files to destination.
4) Join them once again using the command.
echo file1 << file2.









