Drupal tricks

I'm a little behind on all the things we've been working on around here. I just came across an interesting way to include one node into another and thought it was interesting enough to start a new entry. So place the following code into a node as php format and you can include other nodes inside nodes:

<?php
$node = node_load(464);
print node_view($node);
?>

http://drupal.org/node/87746 --> another way of going about this.

So now I'm working for the WEG (web engineering group) and SERE is no longer an entity of UCAR. We are currently walking the tightrope of how to give the developers drupal instances that will do what they need while keeping everything secure. So far things are starting to come along although some kinks will need to be worked out. Another task that is pretty big is trying to merge the UCAS system into the drupal login.

Here's another thing I ran across here: http://justinhileman.info/blog/2007/06/a-more-secure-drupal-multisite-install this is another way of going about the multi-site install which I'm thinking of using for all my future sites or at lease some variant of it.