Drupal Blog
Drupal Blog Drupal Best Blog
Drupal Blog Drupal Best Blog
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 …
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 …
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 …
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 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 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 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 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 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 …