User login

Public

Get a past version of your project with Git

git checkout old version
git get old copy
git branch checkout revision

http://stackoverflow.com/questions/849265/do-you-need-to-create-a-branch-to-check-out-a-specific-git-revision

basic git commands

Trac plugins

http://trac.edgewall.org/wiki/TracPlugins

Kathleen Murtagh's giant list...

Project Management Tools:

SSL Server Certificates

Nowadays there is a wealth of information on the web about generating certifcate signing requests and installing signed certificates. I followed the instructions at OpenSSL HOWTOs.

To ease the process one should first adjust some default settings in /etc/ssl/openssl.cnf:

[ req_distinguished_name ]

countryName_default             = US

stateOrProvinceName_default     = Massachusetts

Monitoring

As a web design and devleopment collective we need a tool that allows us to monitor web servers and individual sites. We are using Monit. It has a poweful configuration syntax for doing many kinds of tests on remote and local websites and sends alerts via email.

There are many interesting features that need to be explored like apache-status.

Main configuration file: /etc/monit/monitrc
Monit manual: http://mmonit.com/documentation/

Show authors of all revisions on an article of content

Searched Words: drupal show authors of all node revisions multiple contributing users

Related how to for Drupal 5:
Adding 'Last edited by name some time ago' information
http://11heavens.com/adding-last-edited-by-name-some-time-ago-info-to-node

Git

Tell Git about you

In order to have commits properly tagged you need to provide Git with your name and email address:

$ git config --global user.name "Jean R. Hacker"
$ git config --global user.email jean.hacker@example.com

This ends up in your home directory's .gitconfig.

Backup

Looking for a simple backup tool (no sophisticated client-server solution for now) I stumbled upon backupninja. From its package description I learnt:

Backupninja lets you drop simple config files in /etc/backup.d to
coordinate system backups. Backupninja is a master of many arts,
including incremental remote filesystem backup, MySQL backup, and ldap
backup.

Benchmarking Drupal

How to benchmark Drupal

Benchmarking Drupal code
http://drupal.org/node/79237

catch benchmarks
http://civicactions.com/blog/2009/feb/10/profiling_drupal

Syndicate content