XAMPP is one of the most popular stacks for developer specially for Windows user. For developers, it’s very essential to create virtual host for their web applications or websites. I never loved Windows 10 as a developer because it’s extra complex for developer to setup environment. So I want to write this post to setup Apache virtual hosts for XAMPP. Setup Virtual Hosts To setup virtual hosts it’s simple. You need to write the configuration in your Apache. After installing …
Tag: XAMPP
To completely uninstall XAMPP from your Linux computer, you just need to run the following command. It is all about to remove lampp directory. Because all of your xampp contents are located inside it. That’s it. It’s pretty simple to remove and uninstall XAMPP from Ubuntu, CentOS and other linux system. If you face any difficulty write that in comment and I will be happy to help.
xDebug for PHP Coders xDebug is a very popular and famous debugging utility for PHP programmers. It actually works with Apache. So to activate or install xDebug for PHP coders you just follow the steps given below.. Step 1: Just open your php.ini file and find out with ‘xdebug’ then you can see like ;zend_extension = "C:xamppphpextphp_xdebug.dll" Then just remove ‘ ; ‘ from that above line and just copy the following lines of code in your php.ini file. xdebug.remote_enable=On …