Author Archives: tabcom

Koozali – Virtual Private Server – Extending storage (/dev/vda) using LVM and RAID (!)

1. Koozali SME server v9 standard installation on a Virtual Private Server.
2. “sme noraid nolvm” installation options were not used.
3. I just now changed the Virtual Private Server plan from 20GB to 50GB storage space.

This is how you can increase the root partition size of your Koozali SME server v9

Continue Reading →

Koozali – Virtual Private Server – Extending storage (/dev/vda) using LVM and RAID (!) was last modified: May 9th, 2017 by tabcom

Add custom MIME file types to WordPress Media library

Edit the functions.php file of your WordPress theme:

.../wp-content/themes/mytheme/functions.php

Add the following text to allow for a specific file type:

function my_myme_types($mime_types){
        $mime_types['blend'] = 'application/blender';
        return $mime_types;
}
add_filter('upload_mimes', 'my_myme_types', 1, 1);
Add custom MIME file types to WordPress Media library was last modified: May 1st, 2017 by tabcom