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]
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]
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 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 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 …