Knowledge Base

Outlook cannot log on

Symptoms

I recently uninstalled a previous version of Microsoft Office and installed the latest version of Microsoft Office as part of my Office 365 Premium subscription.  However, I receive the following error message when I try to launch Microsoft Outlook:

“Outlook cannot log on.  Verify you are connected to the network and are using the proper server and mailbox name.  The Microsoft Exchange information service in your profile is missing required information.  Modify your profile to ensure that you are using the correct Microsoft Exchange information service.”

Cause

Parts of your email profile from a previous version of Microsoft Outlook were left behind and prevents the newer version to launch properly.

Solution

Delete all registry keys under HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office\16.0\Outlook\Profiles\Outlook

Outlook cannot log on was last modified: May 17th, 2017 by 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