By editor, 8 March, 2017 Display a web page as print. Media Print Emulate For development and test Tags CSS Theming Media Print Emulate on Chrome (Tested on Chrome Version 56)
By editor, 13 February, 2017 Avoid email send by Php/Drupal mark as spam Tags PHP Server Linux An email is classified as spam or not spam on the receiving end, not the sending end. But you can improve
By editor, 9 February, 2017 Create interactive shell script. Prompt for Yes / No input Tags Linux Shell Prompt for Yes/No/Cancel input in a Linux shell / bash script Example: #!/bin/bash echo "This script will ask a question.";
By editor, 13 December, 2016 Install Solr Search API Tags Server Linux WebService Install Solr 5.4.1 on Debian Linux Step 1. Install JAVA 7 (In not already installed) sudo apt-get install openjdk-7-jdk
By editor, 25 November, 2016 IP Failover Tags Server Linux Example : on Debian / Ubuntu / Mint ... File : /etc/network/interfaces Edit interface file vim /etc/network/interfaces Add / Edit like this (Here FO ip address is 123.147.159.132)
By editor, 24 November, 2016 HTML Unicode symbols (From U+2600) Tags Theming CSS HTML Unicode symbols From : 2000 To:2BFF 2010 ‐ ‑ ‒ – — ― ‖ ‗ ‘ ’ ‚ ‛ “ ” „ ‟ 2020 † ‡ • ‣ ․ ‥ … ‧ 2030 ‰ ‱ ′ ″ ‴ ‵ ‶ ‷ ‸ ‹ › ※ ‼ ‽ ‾ ‿ 2040 ⁀ ⁁ ⁂ ⁃ ⁄ ⁅ ⁆ 2050 ⁐ ⁑ ⁒ ⁓ ⁔ ⁕ ⁖ ⁗ ⁘ ⁙ ⁚ ⁛ ⁜ ⁝ ⁞ 2070 ⁰ ⁱ ⁴ ⁵ ⁶ ⁷ ⁸ ⁹ ⁺ ⁻ ⁼ ⁽ ⁾ ⁿ
By editor, 15 November, 2016 Basic CSS Styling tips Tags Theming CSS Sizes : em and px By default on all browsers 1em is equal to 16px. In px sizes are fix and can't zoom in or out but with em, sizes are relative to the parent element. If you need to use zoom feature, use en intend of px. You can also use a mixin SCSS or LESS like
By editor, 30 October, 2016 Install Apache 2 with SSL On Debian based Linux Tags Server Linux Install Apache following this tutorial Activate SSL Module sudo a2enmod ssl sudo service apache2 force-reload #Or sudo /etc/init.d/apache2 force-reload