drupal

Creating an internal link to edit a user's profile in Drupal 6

This is how it's done:

<?php
global $user;
if ($user->uid) {
print "<a href=\"user/$user->uid/edit\">Fill in my directory profile</a>";
}
?>

Just choose PHP Filter from input filters. This can be placed anywhere

Building a capistrano recipe into a rails2 application, to deploy Drupal clone sites (or other cloned web applications)

I needed to build a way to deploy Drupal sites to support a limited hosting application for http://socialmediaclassroom.com project.

I decided to build an application using http://www.capify.org/ (Capistrano). I thought about developing this in http://drupal.org/project/drush. However, time constraints dictated otherwise.

I ended up working on this with partner Paul B. Hartzog. Here is what we did:

Syndicate content (C01 _th3me_)