Latest Added Tutorials
28-02-2017
You can use following code to create subdomain in XAMPP app:
<VirtualHost *:8090>
<Directory "D:/Lessons/berber/web">
Options FollowSymLinks Indexes
AllowOverride All
Order deny,allow
allow from All
Require all granted
</Directory>
ServerName berber.localhost
ServerAlias www.berber.localhost
DocumentRoot "D:/Lessons/berber/web"
</VirtualHost>...Continue Reading
23-10-2016
Multiple virtual host configuration in XAMPP
Step1: Open httpd.conf file and paste following configuration at the end of the file.
<VirtualHost *:8090>
ServerName domain.tld
ServerAlias www.domain.tld
DocumentRoot C:/xampp/htdocs/symfony/urunTakipSistemi/web
<Directory C:/xampp/htdocs/symfony/urunTakipSistemi/web>
AllowOverride None
Order Allow,Deny
Allow from All
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME}...Continue Reading
1. Open Terminal by pressing Ctrl + Alt + T and type following command:
sudo gedit ~/.local/share/applications/xampp.desktop
When text editor opens simply paste the following
[Desktop Entry]
Encoding=UTF-8
Name=Xampp Control Panel
Comment=Start or Stop XAMPP
Exec=gksudo python /opt/lampp/share/xampp-control-panel/xampp-control-panel.py
Icon=/opt/lampp/htdocs/favicon.ico
Categories=Application;Development;Web
Version=1.0
Type=Application
Terminal=0
2. Change the file permission so that it can execute
sudo chmod +x xampp.desktop
If you have a...Continue Reading
14-02-2015
To create a new user in xampp mysql, we should add a new user to related host tpes as follows:...Continue Reading