drupalplanet

CVSing back your drupal site.

The benefits of using source control are great. It is like working with another developer, to review your code changes, even if you are all by yourself, not to mention being able to rollback any changes that you have made.

When using drupal, I like to grab core, modules and themes using cvs rather than downloading files. I find it easier to keep core and modules up-to-date while maintaining the patches I might have applied to a module.

Rules can make your life simpler

On this site, or Living Plenty or dedicated to my cat Abraham Mao, I want authenticated users to be taken to the group page, which shows all their unread group discussions. Anonymous users when browsing the sites would just go to the usual node page.

When searching drupal, I tried out Front page module, however, it did not work for me to do what I wanted.

Optimizing Feedapi

When using feedapi and making nodes out of feedapi items, this can cause quite a load on the server.

If using sql search in particular, may cause the database to be bogged down, because each feed can generate a handful to 100's of feed item nodes.

There are quite good viable alternatives to sql core search, with the use of apache solr search module, xapian, sphinx amongst others.