Thursday, 13 November 2014

Remove "Welcome to Drupal" message in new Drupal installation

Following are steps to remove text from front/home page. 
  1. Create a new view using views module
  2. Create a page display
  3. Select Format "fields"
  4. Set up filters, fields etc. which select empty result
  5. Go to site information from admin menu, set the front page to view page path.
  6. Add following code in page.tpl.php to hide the view title as well
    <?php if (!drupal_is_front_page()): ?>
    <?php if (!empty($title)): ?>
              <h1 class="page-header"><?php print $title; ?></h1>
               <?php endif;  endif; ?>

Monday, 29 September 2014

Enable SysLog with Drupal 7

1) Unistall Database Logging module
2) Install & configure the Syslog module
3) Configure rsyslog to Log to a Separate File
mkdir /var/log/cmlm
sudo vi /etc/rsyslog.d/drupal.conf

Add following to /etc/rsyslog.d/drupal.conf
# drupal loging
if ($programname == 'drupal') and ($syslogseverity <= '6') and ($msg contains 'localhost.drupal7') then /var/log/cmlm/drupal.log
4) Open /etc/rsyslog.conf and make sure the file is included
$IncludeConfig /etc/rsyslog.d/*.conf
local0.* /var/log/cmlm/drupal.log

(if local0 is the level that you configured Syslog to use in Step 1)
5) Restart rsyslog
sudo service rsyslog restart

Wednesday, 23 July 2014

Remove too many files in Ubuntu

sudo find . -maxdepth 1 -name "process-emails*" -print0 | xargs -0 sudo rm

Monday, 10 February 2014

How to encrypt password for drupal 7

With drupal 7, password are no more encrypted through md5.
There are several way to get/set a password in drupal7.
Using drush (for your information, not used in your case):
drush upwd admin --password="newpassword"
Without drush, if you have a cli access to the server : (for your information, not used in your case)
cd <drupal root directory>
php scripts/password-hash.sh 'myPassword'
Now copy the resultant hash and paste it into the query:
update users set name='admin', pass='pasted_big_hash_from_above' where uid=1;
If you are working on a remote environment on which you cannot connect, you can put this specified code in a file such as password.php such as this one:
<?php
if (isset($_GET['p'])) {
  require_once dirname(__FILE__) . '/includes/bootstrap.inc';
  require_once dirname(__FILE__) . '/includes/password.inc';
  print _password_crypt('sha512', $_GET['p'], _password_generate_salt(DRUPAL_HASH_COUNT));
  exit();
}
print "No password to hash.";
And then hit your site using: http://domain.tld/password.php?p='MyPassword'. The hash will appear on your browser's tab.
Don't forget to remove it once you done it.
So, if you want to use some password function generation, have a look on _password_crypt() and _password_generate_salt()