forked from friendica/friendica-addons
Merge pull request #170 from tobiasd/20131220-public_server
Public Server: indented the example options in the README
This commit is contained in:
commit
2dc2324ee5
Binary file not shown.
|
@ -7,17 +7,17 @@ test bed with reduced data retention.
|
||||||
|
|
||||||
This is a modified version of the testdrive plugin, DO NOT ACTIVATE AT THE SAME TIME AS THE TESTDRIVE PLUGIN.
|
This is a modified version of the testdrive plugin, DO NOT ACTIVATE AT THE SAME TIME AS THE TESTDRIVE PLUGIN.
|
||||||
|
|
||||||
//When an account is created on the site, it is given a hard expiration date of
|
//When an account is created on the site, it is given a hard expiration date of
|
||||||
$a->config['public_server']['expiredays'] = 30;
|
$a->config['public_server']['expiredays'] = 30;
|
||||||
//Set the default days for posts to expire here
|
//Set the default days for posts to expire here
|
||||||
$a->config['public_server']['expireposts'] = 30;
|
$a->config['public_server']['expireposts'] = 30;
|
||||||
//Remove users who have never logged in after nologin days
|
//Remove users who have never logged in after nologin days
|
||||||
$a->config['public_server']['nologin'] = 30;
|
$a->config['public_server']['nologin'] = 30;
|
||||||
//Remove users who last logged in over flagusers days ago
|
//Remove users who last logged in over flagusers days ago
|
||||||
$a->config['public_server']['flagusers'] = 146;
|
$a->config['public_server']['flagusers'] = 146;
|
||||||
//For users who last logged in over flagposts days ago set post expiry days to flagpostsexpire
|
//For users who last logged in over flagposts days ago set post expiry days to flagpostsexpire
|
||||||
$a->config['public_server']['flagposts'] = 90;
|
$a->config['public_server']['flagposts'] = 90;
|
||||||
$a->config['public_server']['flagpostsexpire'] = 146;
|
$a->config['public_server']['flagpostsexpire'] = 146;
|
||||||
|
|
||||||
Set these in your .htconfig.php file. By default nothing is defined in case the plugin is activated accidentally.
|
Set these in your .htconfig.php file. By default nothing is defined in case the plugin is activated accidentally.
|
||||||
They can be ommitted or set to 0 to disable each option.
|
They can be ommitted or set to 0 to disable each option.
|
||||||
|
|
Loading…
Reference in a new issue