Latest Added Tutorials
18-12-2015
Open Terminal and run following command:
sudo gedit ~/.profile
Add this line into the bottom of the profile file:
export MAIL_SERVICE_3DES_PASSWORD=1wasdfsdf
After adding the line, save and close the file, then run following command to immediatly update the profile file:
. ~/.profile
Lastly close the terminal, open a new Terminal and check this variable is set or not:
echo $MAIL_SERVICE_3DES_PASSWORD
If this file is not updated, please logout and login...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