[Openupload-svn-update] SF.net SVN: openupload:[51] trunk
Status: Beta
Brought to you by:
tsdogs
|
From: <ts...@us...> - 2008-10-22 17:46:26
|
Revision: 51
http://openupload.svn.sourceforge.net/openupload/?rev=51&view=rev
Author: tsdogs
Date: 2008-10-22 17:46:24 +0000 (Wed, 22 Oct 2008)
Log Message:
-----------
Doc update
Modified Paths:
--------------
trunk/CHANGELOG
trunk/INSTALL
Modified: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG 2008-10-22 17:46:00 UTC (rev 50)
+++ trunk/CHANGELOG 2008-10-22 17:46:24 UTC (rev 51)
@@ -2,6 +2,8 @@
* Registration
- Check for valid login name
+ - Enable registration with e-mail confirmation
+
* Upload
- Added main maximum upload file size checks
@@ -27,6 +29,9 @@
- array module
- initial Italian translation
+* Download
+ - Changeed serve file method to not go over the memory php limit (output buffer)
+
* Web site
- Created index page
- Addedd Screen shots
Modified: trunk/INSTALL
===================================================================
--- trunk/INSTALL 2008-10-22 17:46:00 UTC (rev 50)
+++ trunk/INSTALL 2008-10-22 17:46:24 UTC (rev 51)
@@ -9,17 +9,34 @@
3. Copy all files to somewhere which is not accessible from the web (i.e. /usr/local/share/openupload)
4. Copy the www/ files into the web server folder (i.e. /var/www/html) or create a web server alias to point to the www/ folder
5. copy the www/config.inc.php.example and edit it to suit your installation
-6. Make sure the web server is able to write to the data directory
+6. Make sure the web server is able to write to the "data" directory
7. Create the database
+ see README for more information on mode and rights configuration
mysql:
- create the db and the user
create database <database>;
grant all privileges on <database>.* to '<user>'@'localhost' deintified by '<password>';
- import the database schema and default config options
- mysql <database> -u <user> -p < sql/mysql/openupload.sql
+ mysql <database> -u <user> -p < sql/mysql/1_schema.sql
+ mysql <database> -u <user> -p < sql/mysql/2_base.sql
+ - import the configuration mode (it is not required):
+ mysql <database> -u <user> -p < sql/mysql/3_<mode>.sql
+ txt:
+ - the txt is usable, but I would not suggest it unless it's a really low traffic site.
+ - make sure the "rootdir" for the txtdb folder is writable by your apache user
+ - copy the default files from sql/txt/*.txt to the "rootdir" folder
+ - substitute the wanted mode configuration acl_<mode>.txt over the acl.txt
8. Point your browser to http://localhost/<wherever>
+9. Login with "admin" "admin"
+10. Go to Profile and change your admin e-mail and password
+11. Enjoy! :)
+N.B. If you want to change something in the templates I'd suggest to create a site template and put there the needed changed files,
+ (templates/<yourtemplate> or www/templates/<yourtemplate>).
+ The program will check for the exsistence of a file in the selected template folder, and if not found will go back to the default.
+ This will avoid problems when updating the program to a new version.
+
BIG FAT NOTE:
The program will work even if you copy the whole folder into the web server root or a subdiretory.
But:
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|