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 …

Drupal Module(s) Read More »

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 …

How to configure CakePHP Application Read More »

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;} …

Pseudo Classes in CSS Read More »

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 …

What is Node.js Read More »

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 »