[Solved] Linux : How to uninstall Xampp in Linux (ubuntu) Machine.

If You Want to uninstall Xampp from your linux machine, then follow the Below Steps :- Step 1 :- first Stop the server from running by below command sudo /opt/lampp/lampp stop Step 2 :- Now run below command to uninstall Xampp. sudo /opt/lampp/uninstall Step 3 :- Now run the below command to remove Xampp All leftover files. sudo rm -r /opt/lampp As you can see in the screenshot, after running the command all files are removed and when xampp is

Read more

[Solved] Linux : How to install XAMPP on Linux (Ubuntu) machine.

To Successfully Install Xampp in your Ubuntu Machine just follow the Below Steps carefully. Step 1 :- Login to your (Ubuntu) Machine. Step 2 :- run the below command to download Xampp. wget https://downloadsapachefriends.global.ssl.fastly.net/7.4.22/xampp-linux-x64-7.4.22-0-installer.run Step 3 :- Go to root user by entering below command sudo -s Step 4 :- Now we give permission to execute to the downloaded xampp file. For that run, chmod 755 xampp-linux-x64-7.4.22-0-installer.run Step 5 :- Now, we run the downloaded file for installation, for that

Read more

Deploy a Laravel project to ubuntu server using git

Steps to create project in local machine Step :1 Create a folder anywhere in your local computer with any name (Mine is workspace) Step:2 Make sure git and gitbash is installed in your local machine if not download it from here Step:3 Login into your GitHub account and create a repository Step 4: Clone the repository into your local machine get inside your repository Copy the URL under HTTPS area There are many more ways to clone a repo but

Read more

Install a Laravel project inside htdocs folder in ubuntu

I was moving a Laravel project to a ubuntu virtual machine.Steps that I followed: 1. Installed Xampp 2. Another thing which is required is Composer 3. Now the thing is when we try to install Laravel project inside our htdocs folder it through an error 4. To resolve this error first create a folder inside your htdocs. 5 grant read and write permissions to this folder by running this commands 6. You may get another error while installing is (“mbstring”

Read more