I have several boxes using RAID controller from LSI brands. And of course, sometimes we need to know important information about our disks, let say disk health status. When using Software RAID then...
Read more →
After almost 5 years using Blogger, a few days ago I decided to move the platform to HTMLy an open source databaseless blogging platform (Flat-File Blog)....
Read more →
When ordering dedicated server sometimes we only got 1 IPv4, but that’s enough, we can using NAT for container with IP Tables and HAProxy to creating many OpenVZ VPS inside our dedicated server....
Read more →
There are times when we just want to write without having to think about site management, for example upgrading to the latest version (core and plugin), for this purpose I developed a blogging...
Read more →
Maybe sometimes we need a widget for certain features, but the widgets are not available. Blogger already provides an APIs to overcome this, so we can create our own widget by reading the blog feed...
Read more →
For for node body field use below code: /**
* Override or insert variables into the node template.
*/
function template_preprocess_node(&$variables) { /* Add nofollow */...
Read more →
Here's how to adding new variable for the Author Pane function template_preprocess_author_pane(&$variables) { $variables['user_follow'] = '';
$uid = $variables['account']->uid;
$name1...
Read more →
A few days ago I releasing new module to rewrite and redirect the comment permalink to use a fragment for SEO purposes. The default Drupal 7 comment permalink has the following format,...
Read more →
Recently, I need the following features for one of client Drupal 7 site: There is one content type that requires option to change the layout just by using checkbox, what is needed is an inline CSS...
Read more →
We can embed a view created by Views module inside a node in Drupal 7 with just some short code. Here is the code: <?php
$view =...
Read more →