SEO September 10, 2013

4 tips to improve website traffic

4 tips to improve website traffic Check Google Analytics Has all site traffic ceased? If so, maybe analytical tracking didn’t make it to the new site. Check this manually. If you are receiving organic traffic, just at a reduced rate, run the site through Analytics checkup. It could be that a certain section of the site, such as …

4 tips to improve website traffic Read More »

Cake PHP September 4, 2013

3 Useful CakePHP Plugins

3 Useful CakePHP Plugins Admin This CakePHP plugin aims at generating a fully functional admin backend for CRUD operations and ACL managemement. It is quite recent and still in alpha but actively developed and full of promises. Chosen Another CakePHP plugin which encapsulates the excellent Chosen plugin, allowing you to generate the ultimate select boxes …

3 Useful CakePHP Plugins Read More »

Self Management September 2, 2013

Htaccess Tips

Htaccess Tips Redirecting something http://www.domain.com/page.php#portfolio we need to open it on : http://www.domain.com/portfolio RewriteRule http://www.domain.com/porfolio$ http://www.domain.com/page.php#portfolio [NE,L]    

Information Technology News August 27, 2013

Programming Skill Assessment Test

Programming Skill Assessment Test You can assess your programming related skills here : http://www.techgig.com/ Its free and also, you can invite friends from social media. thanks  

Drupal August 22, 2013

Drupal Coding Standards

Drupal Coding Standards Indenting and Whitespace Use an indent of 2 spaces, with no tabs Lines should have no trailing whitespace at the end All text files should end in a single newline (n) Operators All binary operators (operators that come between two values), such as +, -, =, !=, ==, >, etc. should have a …

Drupal Coding Standards Read More »

Drupal August 15, 2013

Drupal Blog

Drupal Blog Drupal Best Blog

Drupal August 15, 2013

Compare Joomla and Drupal Terminology

Compare Joomla and Drupal Terminology Common Terms Joomla Template is called Theme in Drupal. Component = Module. Module = Block. Mambot/Plugin = Input filter. Menu-Horizontal = Primary Links Menu-Vertical = Navigation Dynamic Content Item = Story Static Content = Page Back-end = there is no back-end in Drupal, SEF = Clean URLs (but some docs …

Compare Joomla and Drupal Terminology Read More »

Self Management August 4, 2013

Qualities of web project

Qualities of web project Developer should take care of : Reliability Creativity Flexibility Adaptability Efficiency Web project should be : Original, Fresh Content Target Audiuence User Friendly Navigation Simple and Professional Design Speed Search Engine Optimization Link Building Tracking Web Designer should be : Customer Oriented Usability Expert Familiar with Industry Include the Design Process …

Qualities of web project Read More »

Web Development July 25, 2013

PHP Web Development Tips and Tricks

PHP Web Development Tips and Tricks Echo() versus print() Echo is quicker than print. Both functions are used for the same thing but echo is the language constructs which return nothing, which publish will return 0 or 1 based on success or failure. About accessing arrays E.g. $row[‘id’] is 7 times faster than $row[id] Derived …

PHP Web Development Tips and Tricks Read More »

Drupal July 20, 2013

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 »

Drupal July 5, 2013

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 …

Tips for Drupal Beginners Read More »

Cake PHP July 4, 2013

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 »