Hendrik Thurau Enterprises

WordPress – Maximum Execution time Error

      If you ever encounter the following error: Maximum execution time of 29 seconds exceeded in /wp-includes/class-wp-image-editor-imagick.php on line 363  Simply add the following code to your functions.php . If you dont know how to do that click here: https://hendrikthurau.enterprises/wordpress-add-code-to-your-theme-template/ <?php add_filter( ‘wp_image_editors’, ‘change_graphic_lib’ );function change_graphic_lib($array) {return array( ‘WP_Image_Editor_GD’, ‘WP_Image_Editor_Imagick’ );}

WordPress – Maximum Execution time Error Read More »

Top Digital Marketing Transformations That You Can See in 2020

Digitalization has knocked on the door to almost everyone, not only through social media but work has been brought to home. The research statistics show that internet usage has been doubled during this short period of lockdown as compared to the same period of time the previous year all over the world. In this world

Top Digital Marketing Transformations That You Can See in 2020 Read More »

Tutorial – Azure AD Webapp registration Application Registry Portal (ARP)

In order to get started you need to have an Microsoft Account (personal, company or school) You can easily create one with outlook.com Once you’re done with your account login to this site: https://apps.dev.microsoft.com/ and you’ll see the following: Click on the button Add an app in order to create a new APP to retrieve

Tutorial – Azure AD Webapp registration Application Registry Portal (ARP) Read More »

Tutorial – PHP – Microsoft Graph – implement Office365 into any website

  TUTORIAL – PHP – MICROSOFT GRAPH – IMPLEMENT OFFICE365 INTO ANY WEBSITE Let’s start Microsoft Graph SDK for PHP You’ll need to install microsoft/microsoft-graph via composer into your PHP project. You can do this by: composer require microsoft/microsoft-graph or via your composer file composer.json {“require”:{“microsoft/microsoft-graph”: “^1.5”}} If you don’t know how to install composer

Tutorial – PHP – Microsoft Graph – implement Office365 into any website Read More »

Tutorial – How to install composer to your PHP project

Tutorial – How to install composer to your PHP project Composer The simplest way is probably to get it via this download link and install it: https://getcomposer.org/Composer-Setup.exe If you want to install it via command line please dont forget to add composer to PATH, if you’re new to putting variables into PATH, it’s quite easy.Read

Tutorial – How to install composer to your PHP project Read More »

Tutorial – How to add system/user variables & add to PATH in environment

Tutorial – How to add system/user variables & add to PATH in environment If you’re new to putting variables into PATH, it’s quite easy.Search for “environment variables” in your taskbar: Now click on Environment Variables: You’ll see something like this: The top part is the user variables, means putting variables here will only apply to

Tutorial – How to add system/user variables & add to PATH in environment Read More »