A step-by-step guide to setting up a custom dashboard for XAMPP on Linux, Windows, or macOS.
β
Customizable homepage for XAMPP
β
Organize and manage local projects easily
β
Improve workflow efficiency
β
User-friendly and responsive design
Before starting, make sure you have the following:
- XAMPP Installed β Download Here
- Basic knowledge of HTML, PHP, and CSS (optional but helpful)
- Node.js & npm (if you want to modify the CSS using Tailwind)
By default, the web root directory for XAMPP is:
- Windows:
C:\xampp\htdocs\ - Linux (Fedora/Ubuntu):
/opt/lampp/htdocs/ - macOS:
/Applications/XAMPP/htdocs/
Run the following command in the terminal (Linux/macOS) or Command Prompt (Windows):
mkdir /opt/lampp/htdocs/ # Change path for Windows/macOScd /opt/lampp/htdocs/
git clone https://github.com/Malvin555/XAMPP-CustomOr manually download the files and extract them into the htdocs/ folder.
If using Linux, set the correct folder permissions:
sudo chown -R $USER:$USER /opt/lampp/htdocs
sudo chmod -R 755 /opt/lampp/htdocsIf you want to customize the styles using Tailwind CSS, install it first:
npm install tailwindcss @tailwindcss/cliThen configure and build the CSS using:
npx tailwindcss -i ./css/input.css -o ./css/output.css --watchNow you can edit input.css and see live updates!
Open a browser and go to:
http://localhost/
You should now see your custom XAMPP dashboard! π
Feel free to submit pull requests or suggest improvements!
MIT License - Free to use and modify.
For any issues, open a GitHub Issue or contact me at [malvinbrine555@gmail.com]
