Drupal comes with system-wide defaults but the setting-module provides control over many Drupal preferences, behaviors including visual and operational conf.

Cron

Some conf require a cron or crontab. Cron (which stands for chronograph) is a periodic command scheduler: it executes commands at intervals specified in seconds. It can be used to control the execution of daily, weekly and monthly jobs (or anything with a period of n seconds). Automating tasks is one of the best ways to keep a system running smoothly, and if most of your administration does not require your direct involvement, cron is an ideal solution.

Whenever cron.php is accessed, cron will run: it checks for the jobs cron controls, and their periods in seconds. If a certain task wasn't executed in the last n seconds, where n is the period of that job, it will be executed. When all the executed commands terminate, cron is done.

The recommended way to setup your cron system is to setup a Unix/Linux crontab that frequently visits cron.php. Note that cron does not guarantee the commands will be executed at the specified interval. However, Drupal will try his best and run the crons as close to the specified intervals as possible. The more you visit cron.php, the more accurate cron will be.

If your hosting company does not allow you to setup crontabs, you can always ask someone else to setup a crontab for you. After all, virtually any Unix/Linux machine with access to the internet can setup a crontab to frequently visit cron.php.

For the Unix/Linux crontab itself, use a browser like lynx or wget but make sure the process terminates: either use /usr/bin/lynx -source cron.php or /usr/bin/wget -O /dev/null cron.php. Take a look at the example scripts in the scripts-directory and make sure to adjust them to your needs. A good crontab-line to run the cron-script once every hour would be: 00 * * * * /home/www/drupal/scripts/cron-lynx.

General settings\n"; $output .= form_textfield(t("Name"), "site_name", variable_get("site_name", "drupal"), 30, 55, t("The name of this website.")); $output .= form_textfield(t("Slogan"), "site_slogan", variable_get("site_slogan", ""), 30, 55, t("The slogan of this website")); $output .= form_textfield(t("E-mail address"), "site_mail", variable_get("site_mail", "root@localhost"), 30, 55, t("A valid e-mail address for this website, used by the auto-mailer to create new user accounts.")); $output .= form_textarea(t("Footer message"), "site_footer", variable_get("site_footer", ""), 55, 3, t("This text will be displayed at the bottom of each page. Useful for adding a copyright notice to your pages.")); $output .= form_textfield(t("Anonymous user"), "anonymous", variable_get("anonymous", "Anonymous"), 30, 55, t("The name used to indicate anonymous users.")); $output .= "
\n"; // node settings: $output .= "

Node settings

\n"; $output .= form_select(t("Default number of nodes to display"), "default_nodes_main", variable_get("default_nodes_main", 10), array(10 => 10, 15 => 15, 20 => 20, 25 => 25, 30 => 30), t("The default maximum number of nodes to display on the main page.")); $output .= "
\n"; // comment settings: $output .= "

Comment settings

\n"; $output .= form_select(t("Default display mode"), "default_comment_mode", $conf[default_comment_mode], $cmodes, t("The default mode in which comments are displayed.")); $output .= form_select(t("Default display order"), "default_comment_order", $conf[default_comment_order], $corder, t("The default order in which comments are displayed.")); for ($count = -1; $count < 6; $count++) $threshold[$count] = t("Filter") ." - $count"; $output .= form_select(t("Default filter threshold"), "default_comment_threshold", $conf[default_comment_threshold], $threshold, t("The default threshold used to filter comments.")); $output .= "
\n"; // submission settings: $output .= "

Submission settings

\n"; $size = array(1000 => "1.000 characters", 5000 => "5.000 characters", 10000 => "10.000 characters", 15000 => "15.000 characters", 30.000 => "30.000 characters", 50000 => "50.000 characters", 100000 => "100.000 characters"); $output .= form_select(t("Maximum submission size"), "max_input_size", variable_get("max_input_size", 10000), $size, t("The maximum number of characters someone can enter in a form.")); $rate = array(1 => "Maximum 1 every second", 5 => "Maximum 1 every 5 seconds", 15 => "Maximum 1 every 15 seconds", 30 => "Maximum 1 every 30 seconds", 60 => "Maximum 1 every minute", 300 => "Maximum 1 every 5 minutes", 900 => "Maximum 1 every 15 minutes", 1800 => "Maximum 1 every 30 minutes", 3600 => "Maximum 1 every hour", 21600 => "Maximum 1 every 6 hour", 43200 => "Maximum 1 every 12 hour"); $output .= form_select(t("Maximum node rate"), "max_node_rate", variable_get("max_node_rate", 900), $rate, t("The maximum submission rate for nodes. Its purpose is to stop potential abuse or denial of service attacks.")); $output .= form_select(t("Maximum comment rate"), "max_comment_rate", variable_get("max_comment_rate", 120), $rate, t("The maximum submission rate for comments. Its purpose is to stop potential abuse or denial of service attacks.")); $output .= "
\n"; // theme settings: $output .= "

Theme settings

\n"; foreach ($themes as $key=>$value) $options .= "\n"; $output .= form_item(t("Default theme"), "", t("The default theme as seen by new visitors and anonymous users.")); $output .= "
\n"; // development settings: $output .= "

Development settings

\n"; $output .= form_select(t("Display timer information"), "dev_timer", variable_get("dev_timer", 0), array("Disabled", "Enabled"), t("Display the time it took to generate a page. For Drupal development only.")); $output .= "
\n"; return $output; } function conf_view_module() { foreach (module_list() as $name) { if (module_hook($name, "conf_options")) { $output .= "

". ucfirst($name) ." settings

". module_invoke($name, "conf_options") ."
\n"; } } return $output; } function conf_view_filter() { foreach (module_list() as $name) { if (module_hook($name, "conf_filters")) { $output .= module_invoke($name, "conf_filters"); } } return $output; } function conf_save($edit = array()) { foreach ($edit as $name=>$value) variable_set($name, $value); return "the configuration options have been saved."; } function conf_default($edit = array()) { foreach ($edit as $name=>$value) variable_del($name); return "the configuration options have been reset to their default values."; } function conf_view($type) { global $REQUEST_URI; switch ($type) { case "filter": $form = conf_view_filter(); break; case "module": $form = conf_view_module(); break; default: $form = conf_view_system(); } $form .= form_submit("Save configuration"); $form .= form_submit("Reset to defaults"); return form($REQUEST_URI, $form); } function conf_admin() { global $edit, $op, $type; print "system settings | module settings | content filters | help
\n"; switch ($op) { case "help": conf_help(); break; case "Reset to defaults": print status(conf_default($edit)); print conf_view($type); break; case "Save configuration": print status(conf_save($edit)); print conf_view($type); break; default: print conf_view($type); } } ?>