BIP KB Tag: Remove
How To Remove / Modify open_basedir In Plesk
Let’s think about a situation where you have a subdomain and you want it to be able to access files from the domain httpdocs directory. You cannot do that by default in Plesk, because of open_basedir. You can edit the httpd.include file in:
/var/www/vhosts/domain.com/conf/httpd.include
but that will only work until the next plesk restart or major modification.
But, the httpd.include file that manages a domain and subdomain explicitly...
By jessica, March 17, 2015
How to Update CodeIgniter 2.x to 3.x
Update CodeIgniter..
CodeIgniter is a powerful PHP framework with a very small footprint, built for developers who need a simple and elegant toolkit to create full-featured web applications.
1: Overwrite SDK files
You need the updated CodeIgniter files from the system/ directory. To do so, you can't simply copy/paste the folder. You will need to remove it (it would be a good idea to first do a backup just in case) and then ...
By bruno01, February 4, 2016
How To Remove RAID metadata from a Hard Disk
Sometimes a hardware RAID controller or fakeraid (BIOS) can leave RAID metadata that makes it impossible to install Windows or Linux, or it installs correctly, but causes a kernel panic or a 0xb7 blue screen error on the first boot.
The only method we could find to delete the metadata *quickly* is to zero out the last 512KB of data on the disk using the following command:
dd if=/dev/zero of=$YOUR_DEV bs=512 seek=$(( $...
By BIP, September 1, 2016