Drupal 7

Building Multistep forms using the Drupal 7 CTools object cache

http://drupalcontrib.org/api/drupal/contributions!ctools!includes!object-cache.inc/7The non-volatile object cache is used to store an object while it is being edited, so we don't have to save until we're fully finished. The cache should be "washed" on a periodic basis, meaning to remove ancient items from the cache, but otherwise the information in this cache must stay stable, as it contains unsaved modifications.

Building Multistep forms using the Drupal 7 CTools object cache

multi_step.info 
 name = MultiStep  
 description = Custom Multistep form module.  
 core = 7.x  
 dependencies[] = ctools  

Drupal 7 - Using Ctools modal popup node view with comments

<?php
/**
 *  Implements of hook_menu() 
*/
function hook_menu() {
  $items = array();
  $items['pop/%ctools_js/%'] = array(
    'page arguments' => array(1, 2),
    'page callback' => 'pop_modal_page',
    'access callback' => TRUE,
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}

function pop_modal_page($js = NULL, $nid) {
  if ($js) {
    ctools_include('modal');
    ctools_include('ajax');
  } else return 'Your browser does not support javascript';

Drupal 7 Cron Jobs in GoDaddy

Cron Job Manager Command:

wget -O - -q -t 1 "http://<your-domain>.com/cron.php?cron_key=<your-key>"

 

Drupal 7 Run Elysia cron on every Minute using crontab

* * * * * wget -O - -q -t 1 http://your-site-name/sites/all/modules/contrib/elysia_cron/cron.php?cron_key=

[Minute] [hour] [Day_of_the_Month] [Month_of_the_Year] [Day_of_the_Week] [command]

Edit/List Jobs in Crontab
# crontab -e
# crontab -l
# crontab -u -l
# crontab -u (username) -l

Refer: How to Install Crontab in CentOS/RHEL 7/6/5
http://tecadmin.net/install-crontab-in-linux
http://tecadmin.net/crontab-in-linux-with-20-examples-of-cron-schedule/

Login attempts when more than 5 attempts failed - [Resolved]

TIPS FOR CLEAR DRUPAL FLOOD TABLE

Drupal 7 avoids brute force targeting the accounts. When more than five efforts failed, it does so by denying the login efforts. In the flood table, the quantity of unsuccessful logins is reported. With the procedure below, you can either wait to login again or tidy the flood table up.

When you have forgotten your password, create a new password and refresh the database.

In Drupal database, execute the following request:

DELETE FROM `flood`;