Technical Solution

Zyxware default image3
| 2 min read
In this article, I am mentioning about how the height of an image can be changed depending on which browser is been used by the user. In one of our Drupal sites, the height of the images displayed in a gallery was shown different in different browsers. So we have set the height of the images displayed in the gallery by detecting the browser been used using the '$.browser' property in jQuery.
Zyxware default image2
| 2 min read
If you add Facebook like/share buttons to your page, people can share your page to their Facebook wall. Facebook will pick the image and description based on the open graph meta tags specified on the page. In some cases, you may find that even if you have specified the open graph description and image tags, the image shared on Facebook is different.
Zyxware default image3
| 2 min read
Suppose you are working in a software enterprise and you have to combine different csv files to create a report. It is a tedious job if you try to combine it manually by copying and pasting. We can do it if there exists only 2 0r 3 files. But if we have to merge too many files, it is not time worthy. Here I am going to explain a simple step procedure to combine multiple csv files in linux operating system through command prompt.
Zyxware default image1
| 2 min read
In Drupal, some modules add tabs to pages and these tabs(Primary tabs) are shown in the top of each page for authenticated users. Some of these tabs are not needed for some roles. There are cases where we want to hide such tabs like, Bookmarks, File browser, Orders etc., from primary tabs for roles other than administrator. We can remove these undesired tabs from primary tabs programmatically.
Zyxware default image4
| 3 min read
CSV (Comma Seperated Value) a type of file format generally used in some popular websites like google to save the contacts in a comma seperated values. CSV is also called as a character seperated values. Its a normal file type as like doc, pdf etc. In this file format the values are stored by seperating every sentences with some characters. The most used character to seperate the values is comma so it is used to called as comma seperated values rather than the character seperated values. So lets have a quick look on how to read the csv format files.
Zyxware default image1
| 5 min read
The sshd_config file refers to the main configuration file that allows the user to make the changes in the features of SSH protocol. There are many features for this protocol and these can be made or changed according to the users needs. And by making configuration changes it also allows the user to provide more security to server/system that we are using. Some of the main features are listed below.
Zyxware default image2
| 7 min read
In wordpress site one of the most commonly used plugin is Contact Form 7. In this plugin one of the main feature is that when a user submits a form we could get IP address of the user, but unfortunately we can't get the location. Here I will be explaining how we can create a custom plugin to get the location by using corresponding IP address and a third party service. You can also refer the article How to get the IP address and Country code using the API key of a third party service?
Zyxware default image2
| 5 min read
While working on a wordpress site I came across a problem to customize the file upload button in Contact Form 7 plugin. I tried a few tweaks using CSS to customize the button but no luck. Later I found a trick using CSS and jQuery which is explained below. In my previous article "How to display location of an user in a mail send using Contact Form 7 plugin by passing the IP address in a Wordpress Site?", I have explained about Contact Form 7 plugin.