DIR 01;35 # directory
In ~/.dircolors

Tags

function _table_tester() {
$header = array('Node ID', 'Title', 'Type', 'Terms', 'Created', 'Published', 'Sticky', 'Promoted');
$rows = array();

$rows[] = array(1, 2, 3, 4, 5, 6, 7, 8);
$rows[] = array(2, 2, 3, 2, 3, 3, 2, 3);

return theme('table', array('header' => $header, 'rows' => $rows));
}

$tables = _table_tester();

echo $tables;

Tags

error_reporting(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);

Tags

li + li:before{
content: " | ";
}

Tags

drush hlp
drush hacked-details nice_menus
drush hacked-diff nice_menus

Tags

The command to see the mail queue from ssh is:
mailq

To show messages awaiting delivery:
/usr/local/psa/admin/sbin/mailqueuemng

Another useful command to watch what emails are being sent and received in the mail log is:
tail -f /usr/local/psa/var/log/maillog

Tags