Tag: xampp

  • 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…