Skip to content

Commit 4f35634

Browse files
committed
Update cron examples to include suggested intervals
1 parent bee1784 commit 4f35634

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

modules/addons/StormBilling/views/configuration/configuration.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
<div class="control-group">
66
<strong style="color: #cc0000">Please note:</strong><br />
77
<strong>To enable automatic synchronization, please setup a following command in the cron (each 5 minutes suggested):</strong> <br />
8-
<em>php -q '.$crondir.'cron.php'.'</em>
8+
<em>*/5 * * * * php -q '.$crondir.'cron.php'.'</em>
99
<br /><br />
1010
<strong>To enable automatic account suspension for credit billing, please setup a following command in the cron (each 3 minutes suggested):</strong> <br />
11-
<em>php -q '.$crondir.'autosuspend.php'.'</em>
11+
<em>*/3 * * * * php -q '.$crondir.'autosuspend.php'.'</em>
1212
</div>
1313
</div>';
1414

@@ -27,7 +27,7 @@
2727
});
2828
});
2929
</script>
30-
30+
3131
<form action="" method="post" class="form-horizontal form-low">
3232
<input type="hidden" value="enable" name="modaction" />
3333
<div class="border-box">
@@ -97,7 +97,7 @@
9797
$p = new SBProduct($id);
9898
$billing = $p->getBillingSettings();
9999
$class_name = get_class($p->module());
100-
100+
101101
echo '<tr>
102102
<td>
103103
<a href="addonmodules.php?module=StormBilling&modpage=configuration&modsubpage=edit&id='.$id.'">'.$product['group'].' - '.$product['product_name'].'</a>

0 commit comments

Comments
 (0)