[Openupload-svn-update] SF.net SVN: openupload:[233] trunk/www/config.inc.php.example
Status: Beta
Brought to you by:
tsdogs
|
From: <ts...@us...> - 2009-02-05 15:51:45
|
Revision: 233
http://openupload.svn.sourceforge.net/openupload/?rev=233&view=rev
Author: tsdogs
Date: 2009-02-05 15:51:41 +0000 (Thu, 05 Feb 2009)
Log Message:
-----------
Add options for configuring ids length and form
Option for shorter links generation
Modified Paths:
--------------
trunk/www/config.inc.php.example
Modified: trunk/www/config.inc.php.example
===================================================================
--- trunk/www/config.inc.php.example 2009-02-05 15:44:52 UTC (rev 232)
+++ trunk/www/config.inc.php.example 2009-02-05 15:51:41 UTC (rev 233)
@@ -129,6 +129,19 @@
/* Set the number of files to be uploaded in 1 time */
$CONFIG['multiupload'] = '1';
+/* Generate shorter links for download / remove
+ * like ?action=d&id=123892347892 == ?a=d&i=123892347892
+ * Changing this will not affect the handling on one or the other link form
+ *
+ */
+$CONFIG['use_short_links'] = 'no';
+
+/* Defines the length of the generated IDs, suggested at least a value of 6 */
+$CONFIG['id_max_length'] = '10';
+
+/* Create alphanumerical IDs for files */
+$CONFIG['id_use_alpha'] = 'yes';
+
/* Set the progress upload method to be used */
/* requires an extension (APC or UPLOADPROGRESS */
/* possible values are: none, uploadprogress, apc */
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|