does any1 have a script that u can use to transfer files from other hosts to urs by url like on wen.ru? mind sharing?
Transfer File By Url
Collapse
X
-
Guest
how to config this file wizard brou?
Code:<?php defined('_ALLOWINCLUDE') or die(); // Default destination to copy files too NO TRAILING SLASH!! // If it is complete path, file be copied there ex: /home/public_html/FOLDER (Linux), C:\htdocs\FOLDER (Windows) // If it is just a direcotory it will be copied to that directory in directory the script is in ex: /SnatcherFolder/FOLDER $defaultDest = 'snatched'; /* More examples If $defaultDest = ''; it will automatically copy to the `snatched` directory inside of the script's directory. If $defaultDest = 'files'; it will copy to `files` directory inside of the script's directory. */ // If you want a password to be required // Remember if you don't have a password anyone can copy a file to your server! $password = ''; // URL to location of snatched files WITH OUT TRAILING SLASH $URLDest = '[url]http://example.com/snatched';[/url] // Put a limit for file size in kilobytes (1024KB is 1MB) // For unlimited put 0 // Example $sizelimit = 25; $sizelimit = 0; ?>
Comment
-
Guest
-
Guest
Comment