		==============================================================
			    PHP Advanced Transfer Manager  (aka phpATM)
			   (C)2008, phpATM Dev Team (phpATM.org)


Requirements
------------

	Windows/Linux,
	a web server (Apache 1.3+ recommended)
	PHP 4.0.0+
	Properly installed and working phpATM (tested with 1.30b)

Support
-------

	Please visit http://phpatm.org/ for latest version and support.
	Report bugs or comments in the bullettin board. http://forum.phpatm.org/

History
-------

	See History.txt

Important Notes
---------------
	1. This is an early BETA version!
	2. There are no checks if views/downloads are allowed for everyone or not
	   this means everyone can view/download the files
	3. There are no checks if user are logged in/registered or not
	4. while phpATM doesn't, this version requires the $domain_name and the 
	   $script_folder_path set properly!
	5. This is an early BETA version! (yes again)

How to install PHP Advanced Transfer Manager Filelist Only
----------------------------------------------------------

	1. extract the content from phpATM_filelist_only_classic_0.1.zip in
	   a temporary folder
	2. upload the filelist.php and the include/common2.php to your
	   phpATM folder
	3. create a page where you want the filelist to be appear (like downloads.php)
	   Note: the script is made to call it from your root while phpATM is in a folder
	4. in the created page add on the place where you would like to have the filelist:
	   include_once("phpatm_installation_foldername/filelist.php");
	   where "phpatm_installation_foldername" is the name of the folder where you have
	   phpATM installed
	   Note: the page needs the .php extension
	   if your site is not made in php then you have to include the filelist.php like this:
	   <?php include_once("phpatm_installation_foldername/filelist.php"); ?>

	Example Installation:
	the site where we want to use it is "www.terrorline.de"
	phpATM is installed in a folder called "atm" (www.terrorline.de/atm)
	the page where we want the filelist to be appear is "www.terrorline.de/downloads.php"
	we would upload the filelist.php to www.terrorline.de/atm
	and the common2.php to www.terrorline.de/atm/include/
	in the downloads.php we would add a line like this:
	include_once("atm/filelist.php");


How to configure PHP Advanced Transfer Manager Filelist Only
------------------------------------------------------------

	In this early version there are only three options in the filelist.php:
	1. you can set "$direct_download" to "true" or "false"
	   "true"  = the filename will be a download link
	   "false" = the filename will be a link to the fileviewer, if viewable
	2. you can set "$show_action" to "true" or "false"
	   "true"  = show the action column (download button, download count)
	   "false" = do not show the action column
	3. you can set "$show_owner" to "true" or "false"
	   "true"  = show the owner column (name of the uploader)
	   "false" = do not show the owner column
	4. there are several stylesheet classes and id's defined
	   an example stylesheet will be available with the next release

// end of File