Latest Articles

Find all active IPs your local network using nmap

  • By anoopjohn on May 25, 2012 - 16:53
  • Debian
0

Nmap is a Free Software tool that can be used for a variety of network network exploration tasks and security auditing. Nmap ("Network Mapper") scans IP packets to determine a lot of different aspects about hosts available on the network and also about services these hosts are offering. It can help you find a lot of information about these hosts including reverse DNS names, operating system guesses, device types, and MAC addresses.

Continue reading

Overcoming font issues on IE with DTD (Why is my site's font not being recognized by IE?)

0

It is required of every Drupal developer to keep ahead of common browser compatibility issues. IE is probably the most notorious browser in any drupal developer’s dictionary.

Continue reading

GNU / Linux Training based on Ubuntu at Santhigiri Ashram, Trivandrum

0

Zyxware Technologies conducted a series of GNU/Linux workshops on Free Software Tools, as part of the Free Software training imparted to the Staff of Santhigiri Ashram. Santhigiri Ashram at Pothencode, Trivandrum is an Ashram pursuing the cause of a spiritual awakening in society.

Continue reading

Freedom Toaster at Santhigiri Ashram

0

The Freedom Toaster from Zyxware Technologies is back. This time at the Santhigiri Fest, 2012. Santhigiri Ashram took the initiative to provide us with a space for Freedom Toaster at the venue of the Santhigiri Fest, 2012.

Continue reading

Understanding db_rewrite_sql, node level access permissions and generation of primary links in Drupal

  • By anoopjohn on May 18, 2012 - 18:32
  • Drupal
0

On a Drupal site that came up for some minor alterations recently we came across an issue where some menu links disappeared for anonymous users while they appeared normally for the administrative users. On digging further we came across an issue with an implementation of hook_db_rewrite_sql in a contributed module.

Continue reading

Consultation meeting on Industry Academia Interaction at Rajiv Gandhi Institute of Technology, Kottayam

0

Recently, we had an opportunity to attend a consultative meeting hosted by Rajiv Gandhi Institute of Technology, Kottayam (RIT) on Academia Industry partnership. The meeting was in the context of the Technical Education Quality Improvement Programme (TEQIP) of Government of India in which RIT is a part.

Continue reading

Drupal debugging tips: views_trace()

0

As a Drupal developer, when we get an error, we may want to know the functions that are called before the system called the function where we get the error. In this case, views_trace() function comes to your help. This function is available if Drupal’s Views module is installed and enabled.

Here is the function from views.module

Continue reading

Drupal Debugging Tips: How to use watchdog()

  • By vimal on May 11, 2012 - 16:34
  • dblog
0

The simplest debugging tool used most often by a programmer is a print statement, which when placed, used wisely can bring out the weak points of any giant bug.

Continue reading

Drupal debugging tips: Print and Die

0

While developing Drupal sites, sometimes we may wish to see whether our function is getting called or whether we reach a point or not in the execution path. Usually the dpm() or print_r() functions comes handy in the case, but sometimes, we may not be able to see the debug messages printed due to page redirection just after our print.

Continue reading

How to build nginx from source with php upload progress module in ubuntu

  • By vimal on May 11, 2012 - 15:32
  • nginx
0

Create a directory nginx-src and change to that directory

mkdir nginx-src
cd nginx-src

Then download the source package via apt

Continue reading