News
|
3
min read
Lines of code is typically indicative of effort that goes towards software development. So how do you count lines of code in your PHP application (or for that matter any specific types of files in any application). You can't manually open and count files, that would be a big waste of time. The *nix shell has a powerful set of tools that can help you count lines without having to do it manually.
find . -name "*.php" | xargs wc -l | awk '{print $1}' | awk '{total = total + $1}END{print total}'
Application Development
|
3
min read
We had recently conducted a session on Drupal at FOSSMeet 2014 at NIT, Calicut. The session was on introducing Drupal as a Rapid Application Development (RAD) Framework for Startups. The session was aimed at young entrepreneurs who are looking to take their next big idea online. The following presentation was used for the workshop.
Drupal Technical
|
1
min read
What do you do if you have to take your Drupal site into maintenance mode from the command line? Well you can do this easily if you have drush set up on your server. With drush you can do quite a lot powerful drupal administration tasks right from the command line.
In Drupal 6
The following drush command will take your Drupal site offline
drush vset site_offline 1
The following drush command will take your Drupal site back online
drush vdel site_offline
In Drupal 7
Technical Solution
|
2
min read
I am assuming that you have root access on the server without which the following instructions won't work.
First you have to cd to the directory corresponding to your mailing list. All mailing list settings will be kept at
/usr/local/cpanel/3rdparty/mailman/lists/
News
|
2
min read
We are happy to announce that we will be conducting a Drupal bugathon at our office at Sasthamangalam, Trivandrum on the 1st of February 2014. If you are a Drupal developer and you would like to get some guidance on how to contribute to Drupal you are welcome to join us. Bring your own laptops for the session.
Our Sasthamangalam office address is
SMRA 78, SRKM Hospital Road,
Sasthamangalam P. O.,
Trivandrum, Kerala - 695010
News
|
1
min read
There are times when we sit back and look at the road travelled so far. With a sense of humility and gratitude to those who have made this possible. The Zyxware story would not have been possible without the contributions of its people, its well wisher community, especially the Free Software community in Kerala, our clientele, our bankers, families of people who have worked with us and many more. We take a moment to acknowledge and thank each of them as we set our eyes on bigger goals and gather the conviction to move forward.
News
|
1
min read
Zyxware conducted a session on "Introduction to Free Software" at College of Engineering, Trivandrum on 2014-01-18. The session was taken as part of an Android application development workshop organized by IEEE and Innovation Club at CET. The session was conducted by Mr. Anoop John, CTO of Zyxware Technologies.
The session covered
Drupal Technical
|
3
min read
One of the challenges with working with dynamic websites is that you have to keep fighting malicious users who regularly sap your server capacity with rogue crawling of your site. To do this you would have to monitor and analyze the traffic patterns on the server regularly. You would definitely want to do this when you have load spikes on the server and you wish to find out the IP addresses, user agents and the specific URLs which resulted in these spikes.