This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.
-
Install and activate ImageMagick PHP extension in Windows
There are many guides for this, but most of them are complicated or do not work for me. The simplest solution in my eyes is as follows: Install Imagick for Windows. Get the Installation package from here and install as usual. Download the right package (concerning php version, architecture, thread safety) from here. The link…
-
Enable xdebug in xampp php8 environement
Maybe you updated your php version from 7 to 8 and you had installed xdebug with your old php version. Now it is missing because in the official download of php it isn’t included. Go to the download page of xdebug and look out for the right newest version concerning thread safety and architecture. If…
-
Update PHP Version in xampp (from 7.X to 8.X)
Determine which version, architecture and thread safety mode. Open a terminal window and type $ php -i|find “PHP Version” In my case php 8 is already installed and running so it gives me PHP Version => 8.1.6 $ php -i|find “Thread Safety” Thread Safety => enabled $ php -i|find “Architecture” Architecture => x64 But the…