๑۩|RIPN域名|亚洲美女|转贴工具|情色视频|魅力种子|软件下载|XXX软件下载II|情色無極|文件上传|Drealm VIdeos| 色诱pp|۩๑
打印

Web Ftp net2ftp力作

reffer-->


Trade the Euro/Dollar with E-Gold. 在线赚钱新主张.

Web Ftp net2ftp力作

User features
  • Navigate the FTP server
    Once you have logged in, you can browse from directory to directory and see all the subdirectories and files.
  • Upload files
    There are 3 different ways to upload files: the standard upload form, the upload-and-unzip functionality, and the Java Applet.
  • Download files
    Click on a filename to quickly download one file.
    Select multiple files and click on Download; the selected files will be downloaded in a zip archive.
  • Zip files
    ... and save the zip archive on the FTP server, or email it to someone.
  • Unzip files
    Different formats are supported: .zip, .tar, .tgz and .gz.
  • Install software
    Choose from a list of popular applications (PHP required on the target server).
  • Copy, move and delete
    Directories are handled recursively, meaning that their content(subdirectories and files) will also be copied, moved or deleted.
  • Copy or move to a 2nd FTP server
    Handy to import files to your FTP server, or to export files from your FTP server to another FTP server.
  • Rename and chmod
    Chmod handles directories recursively.
  • View code with syntax highlighting
    PHP functions are linked to the documentation on php.net.
  • Plain text editor
    Edit text right from your browser; every time you save the changes the new file is transferred to the FTP server.
  • HTML editors
    Edit HTML a What-You-See-Is-What-You-Get (WYSIWYG) form; there are 2 different editors to choose from (FCKEditor and TinyMCE).
  • Code editor
    Edit HTML and PHP in an editor with syntax highlighting (CodePress).
  • Search for words or phrases
    Filter out files based on the filename, last modification time and filesize.
  • Calculate size
    Calculate the size of directories and files.

Administrator features
  • Safe Mode
    net2ftp works perfectly under safemode.
  • MySQL database
    ... is optional. A MySQL database is only needed for logging, and for the Daily Limit (see below).
  • Authorizations
    Allow the users to connect to all FTP servers, or to only a predefined list of FTP servers.
    The input box on the login page will change accordingly.
  • Logging
    Activate or deactivate 3 kinds of logging: pages requested, logins and errors.
  • Daily Limit
    Restrict each user's daily data transfer volume and script executiontime. Once a user reaches the daily consumption limit, he will still beable to browse FTP servers, but the transfer of data to/from the serverwill be blocked.
  • Large File Limit
    Files bigger than this limit can't be downloaded/uploaded/copied/etcbut can still be renamed/deleted/chmodded.
  • Templates
    Change the layout as you want using the template files.
  • Integration in other PHP applications
    net2ftp can easily be integrated in other PHP applications.Modules for Mambo, Drupal and Xoops are provided in the zip file.
               




Current STABLE version
The latest stable version is 0.96 released on July 7, 2007. Changelog

Full version
  • Download from: net2ftp.com (3.7 MB zipped, 9.8 MB unzipped)
  • The full version contains all plugins, all languages and all skins.

Light version
  • Download from: net2ftp.com (1.2 MB zipped, 3.6 MB unzipped)
  • The light version contains only the Java upload plugin, the English language and the Blue, India and Mobile skins.

Current DEVELOPMENT version
No beta version is available at this time.

Previous versions
June 2007Version 0.96Download 3.6 MBChangelogTodo
February 2007Version 0.95Download 3.6 MBChangelogTodo
November 2006Version 0.94Download 3.6 MBChangelogTodo
September 2006Version 0.93Download 3.6 MBChangelogTodo
July 2006    Version 0.92Download 3.6 MBChangelogTodo
May 2006     Version 0.91aDownload 3.4 MBChangelogTodo
December 2005Version 0.90Download 3.2 MBChangelogTodo
February 2005Version 0.82Download 2.7 MBChangelogTodo
October 2004Version 0.81Download 1.2 MBChangelogTodo
March 2004Version 0.80Download 320 kBChangelogTodo
September 2003Version 0.73Download 463 kBChangelogTodo
September 2003Version 0.72Download 463 kBChangelogTodo
August 2003Version 0.71Download 455 kBChangelogTodo
July 2003Version 0.7Download 455 kBChangelogTodo
June 2003Version 0.62Download 135 kBChangelogTodo
June 2003Version 0.61Download 135 kBChangelogTodo
May 2003Version 0.6Download 135 kBChangelogTodo
March 2003Version 0.5Download 66 kBChangelogTodo
February 2003Version 0.4Download 66 kBChangelogTodo
February 2003Version 0.3Download 65 kBChangelogTodo
February 2003Version 0.2Download 62 kBChangelogTodo
January 2003Version 0.1Download 60 kBChangelogTodo

更多相关主题:

TOP


Screenshots

[These screenshots are outdated, the new "India" and "Mobile" skin are not shown.]
Click on any image to enlarge it.

Browse the FTP server

View a code with syntax highlighting

Edit text

Edit HTML in a WYSIWYG form

Copy files





Chmod files
For More:
http://www.net2ftp.com/homepage/screenshots.html

TOP

Installation instructions

Web server requirements
  • Web server: any web server which can run PHP. The most popular one is Apache.
  • PHP: at least version 4.2.3. net2ftp works under Safe Mode. One advanced feature requires PHP 5 (send raw FTP command).
  • Disk space: 7.5 MB for net2ftp (less if you remove the plugins), and a few MB for the temporary files.

Installation procedure
1 - Unzip all the files on your computer, and upload them to your server.

2 - The /temp directory should be chmodded to 777 (you can use net2ftp.com to do this).

3 - Set your settings in the settings.inc.php file; read "Next steps" below for more details.

4 - A database is only required if you want to log the actions of theusers. To create the tables, execute the SQL queries below (also in the"create_tables.sql" file). This can be done easily in PhpMyAdmin, the popular front-end to MySQL.
复制内容到剪贴板
代码:
DROP TABLE IF EXISTS `net2ftp_logAccess`;
DROP TABLE IF EXISTS `net2ftp_log_access`;
CREATE TABLE `net2ftp_log_access` (`id` int(10) unsigned NOT NULL auto_increment,`date` date NOT NULL default '0000-00-00',`time` time NOT NULL default '00:00:00',`remote_addr` text NOT NULL,`remote_port` text NOT NULL,`http_user_agent` text NOT NULL,`page` text NOT NULL,`datatransfer` int(10) unsigned default '0',`executiontime` mediumint(8) unsigned default '0',`ftpserver` text NOT NULL,`username` text NOT NULL,`state` text NOT NULL,`state2` text NOT NULL,`screen` text NOT NULL,`directory` text NOT NULL,`entry` text NOT NULL,`http_referer` text NOT NULL,KEY `index1` (`id`)) TYPE=MyISAM;
DROP TABLE IF EXISTS `net2ftp_logError`;
DROP TABLE IF EXISTS `net2ftp_log_error`;
CREATE TABLE `net2ftp_log_error` (`date` date NOT NULL default '0000-00-00',`time` time NOT NULL default '00:00:00',`ftpserver` text NOT NULL,`username` text NOT NULL,`message` text NOT NULL,`backtrace` text NOT NULL,`state` text NOT NULL,`state2` text NOT NULL,`directory` text NOT NULL,`remote_addr` text NOT NULL,`remote_port` text NOT NULL,`http_user_agent` text NOT NULL,KEY `index1` (`date`,`time`,`ftpserver`(100),`username`(50))) TYPE=MyISAM;
DROP TABLE IF EXISTS `net2ftp_logConsumptionFtpserver`;
DROP TABLE IF EXISTS `net2ftp_log_consumption_ftpserver`;
CREATE TABLE `net2ftp_log_consumption_ftpserver`(`date` date NOT NULL default '0000-00-00',`ftpserver` varchar(255) NOT NULL default '0',`datatransfer` int(10) unsigned default '0',`executiontime` mediumint(8) unsigned default '0',PRIMARY KEY  (`date`,`ftpserver`)) TYPE=MyISAM;
DROP TABLE IF EXISTS `net2ftp_logConsumptionIpaddress`;
DROP TABLE IF EXISTS `net2ftp_log_consumption_ipaddress`;
CREATE TABLE `net2ftp_log_consumption_ipaddress`(`date` date NOT NULL default '0000-00-00',`ipaddress` varchar(15) NOT NULL default '0',`datatransfer` int(10) unsigned default '0',`executiontime` mediumint(8) unsigned default '0',PRIMARY KEY  (`date`,`ipaddress`)) TYPE=MyISAM;
DROP TABLE IF EXISTS `net2ftp_users`;
CREATE TABLE `net2ftp_users` (`ftpserver` varchar(255) NOT NULL default '0',`username` text NOT NULL,`homedirectory` text NOT NULL,KEY `index1` (`ftpserver`,`username`(50))) TYPE=MyISAM;
Next steps
  • Important settings in settings.inc.php:
    • Enter an Admin panel password. If no password is entered, the Admin panel is not accessible.
    • Turn logging on or off (requires a MySQL database).
    • Choose if you want to set a daily consumption limit to restrict eachuser's daily data transfer volume and script execution time (requires aMySQL database). By default the data transfer volume is set to 50 MBper day and the script execution time to 1500 seconds per day - butthis may be changed. Both figures are logged per IP address, and perFTP server. Once the daily consumption limit is reached, the user willstill be able to browse FTP servers, but the transfer of data to/fromthe server will be blocked.
  • Set authorizations in settings_authorizations.inc.php:
    • Allow the users to connect to any FTP server, or only to a restricted list of FTP servers
    • Ban certain FTP servers
    • Ban certain IP addresses; users connecting from these addresses will not be able to use the website
    • Allow the users to connect to any FTP server port, or only to one port
    • Set the user home directories in the table net2ftp_users (using phpMyAdmin).           This will direct a user to his home directory when he logs in, and also restrict the browsing to this directory.            The other actions (rename, copy, ...) are not protected!!           If you need tighter security, set the user permissions directly on the FTP server.
    • A list of banned keywords can be entered.            Directories and files containing these keywords can't be processed.            Files can't be renamed if the new filename contains a banned keyword.            This is to avoid net2ftp being used to upload Paypal and Ebay scams.
  • To allow large file uploads and transfers, you may have to change these settings:
    • in the file php.ini (directory C:\windows or /etc): upload_max_filesize, post_max_size, max_execution_time, memory_limit
    • in the file php.conf (directory /etc/httpd/conf.d): LimitRequestBody
  • Protect the /temp directory. If you use the Apache web server, the .htaccess file which is provided already does this.
  • In your php.ini file, register_globals can be set to "off" (thisis more secure), but the application will off course also work if it isset to "on".
  • The files are transmitted using the BINARY mode by default. Thereis a list of file extensions (txt, php, ...) which are transmitted inASCII mode. Edit this list if needed, it is located in/includes/filesystem.inc.php. Look for function ftpAsciiBinary.

TOP

集成Google分析和Google Adsensefaby当你的获得集成权限机会时,在你的adsense上会有个链接你可通过这个地址查看视频教程 。 注册后,您就可以使用此工具来抓取您的网站并检查实施错误。 实施错误的例子包括:网页无跟踪代码或同时具有 ga.js 和 urchin.js 代码(这两种代码不应在单个网站上同时运行)。 此 ...faby2009-1-8 07:23
beedoo.orgfaby# URL: You modify your html code add a with id="beedooad". Our system will place our ad inside that div.This will do the trick: ==========faby2009-1-7 10:45
国内全能免费1000M空间,免费MSSQL数据库1000M,免费M ...faby国内全能免费1000M空间,免费MSSQL数据库1000M,免费MYSQL数据库1000Mfaby2009-1-5 14:42
免費德國頂級域名申請教程fabyfaby2009-1-5 14:35
德国人名,地址电话邮编等资料(申请德国空间专用)faby申请德国空间德国人姓名Gysi, GregorKiesinger, Kurt GeorgMerkel, AngelaEulenspiegel, Till Abbe, ErnstSchumann, ClaraKneipp, SebastianLiebig, JustusHeuss, TheodorM?ller, KerstinBusch, WilhelmBrahms, JohannesBodewig, KurtEichel, Ha ...faby2009-1-5 13:38
德国银行帐号faby1银行名称(Bankname) Hypo- und Vereinsbank München 收款人(Kontoinhaber) Evangelische Chinesische Gemeinde in München e.V. 银行帐号(Kontonummer) 659512211 银行代号(BLZ) 70020270 2Inhaber Stephan MullerKontonummer 135023711Bankleitzahl 386 ...faby2009-1-5 13:36

You've been marked on my visitor map!


-->