Drupal: How to generate different view results, using a taxonomy keyword as an argument
Upgrade Java 1.4 to 1.5 on Centos 5.5
How to install APC PHP accelerator
Your PHP MySQL library version 5.0.91 differs from your MySQL server version 5.1.50. This may cause unpredictable behavior | phpMyAdmin
Reset admin password in Kloxo : How to
/script/update --class=client --name=admin --subaction=password --v-password=XXX where XXX is the new password.
That should do it :)phpMyAdmin: Change the root password of phpmyadmin after a fresh installation on your server
Drupal: Run simple JS Scripts on a specific node
Let's say that you have a simple input form, on a specific node in your drupal site and you just want to reset it, using a button. There are a few ways you could go about it, but this one is probably the simplest one.
Drupal time ago function in template.php
Would you like to make time appear as an interval like "4 days 3 hours ago"? Possibly you have worked with such formatters (drupal time ago) in views and date fields, but what about editing a node.tpl.php for example? Or programmaticaly include the last login time of a node's author, as time ago, in a block?
It comes in handy when there is a reusable function to format our time statements as drupal time ago - and php in general. So here comes a little function to be included in the template.php file. You can easily use it in your themes to display a timestamp as "Time ago".