Articles
Drupal Module(s)
Drupal Module(s) Here are list of few modules which are very useful in drupal application : Administration The Admin Menu module let’s you navigate through the menu options somewhat faster than Admin module in my experience. I often will enable one of these for admins and use the toolbar for other logins Drush Drush is …
Tips for Drupal Beginners
Tips for Drupal Beginners Having balance flexibility Simplicity User Management Content Management System and Framework Provides a raw material, from which you can filter and present with a clear vision and design ( you should need programming language ) Node : A single piece of an entity such as page of blog, topic of forum …
How to configure CakePHP Application
How to configure CakePHP Application Make app/tmp folder as writeable and also all included sub folders and files Change app/config/core.php (line 197) Security.salt set empty value Change app/config/core.php (line 197) Security.cipherSeed set empty value Rename file located in app/config/database.php.default to database.php Update information of database.php file as per your local machine Now need to install …
Pseudo Classes in CSS
Pseudo Classes in CSS Anchor Pseudo Classes a:link {color:#FF0000;} /* unvisited link */ a:visited {color:#00FF00;} /* visited link */ a:hover {color:#FF00FF;} /* mouse over link */ a:active {color:#0000FF;} /* selected link */ Other Pseudo Classes input:focus {background-color:#0000FF;} /* background color change on focus */ p:first-letter {font-size:20px;} /* make first letter size large */ p:first-line {font-weight:bold;} …
What is Node.js
What is Node.js Node.js is a platform built on Chrome’s JavaScript runtime for easily building fast, scalable network applications. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient, perfect for data-intensive real-time applications that run across distributed devices. You can download here. Advantages: Web development in a dynamic language (JavaScript) on …
GIT versus SVN
GIT versus SVN Summary of Comparison Git is much faster than Subversion Subversion allows you to check out just a subtree of a repository; Git requires you to clone the entire repository (including history) and create a working copy that mirrors at least a subset of the items under version control. Git’s repositories are much …
PHP Operators Examples
PHP Operators Examples PHP Arithematic Operators Operator Name Description Example Result x + y Addition Sum of x and y 2 + 2 4 x – y Subtraction Difference of x and y 5 – 2 3 x * y Multiplication Product of x and y 5 * 2 10 x / y Division Quotient …
Access LinkedIn Companies/Groups/jobs/Contacts in PHP
Access LinkedIn Companies/Groups/jobs/Contacts in PHP A simple way to access LinkedIn all data which includes: Own Profile Information My Grouops All Jobs (Also my jobs) My Network (My Contacts) By using a stand-alone OAuth/LinkedIn API solution, we don’t need to install any server/PHP extensions, which usually require some form of root access. Download the code …
Access LinkedIn Companies/Groups/jobs/Contacts in PHP Read More »
Share Text/URL on Facebook, Twitter and LinkedIn
Share Text/URL on Facebook, Twitter and LinkedIn A common and very important activity in web development. How to allow our website content to our visitors, share on their walls ? You need to keep an eye on these steps : 1- Facebook : https://www.facebook.com/sharer/sharer.php?u=www.naveedramzan.com Title, description will be grabbed automatically from the meta and title …
Share Text/URL on Facebook, Twitter and LinkedIn Read More »
Why to Choose CakePHP
Why to Choose CakePHP When we start working with CakePHP. We having experience of web development in PHP. We need to findout a framework on the following needs : Fast Learning Helpfull Documentation Code examples to get clear idea of workings Find opensource so easy to upgrade and integrate add-on(s) Its important that which kind …
What is Cake PHP
What is Cake PHP CakePHP is an open source web application framework. It is written in PHP, modeled after the concepts of Ruby on Rails, and distributed under the MIT License. CakePHP uses well-known software engineering concepts and software design patterns, as Convention over configuration, Model-View-Controller, ActiveRecord, Association Data Mapping, and Front Controller.
Five Tips for Business Analysis in to Projects
Five Tips for Business Analysis in to Projects Ensure That Requirements Support Your Overall Business Needs Having a list of business requirements is certainly an integral part of your long journey toward project success. However, before celebrating, you need to be absolutely certain that those requirements support your organization’s overall business objectives. Clearly Understand the …
