|
Help with php upload script
|
Post Bank
Posting Manager
     
Posts: 995
Group: Forum Team
Joined: Sep 2006
Status: Online
|
Make money from now. You can make money just for posting on this forum. Every discussions on this community gives you more money. $2 minimum payout. So get your payment today, SignIn with this forum.
Signin to Remove this Post
|
|
|
|
spartan
Newbie
Posts: 10
Group: Registered
Joined: Sep 2007
Status:
Offline
Reputation: 0
Points: 27 (Donate)
|
Help with php upload script
guys i need a php upload script like the ones on these sites
http://filexchanger.com/Url/
http://desiboys.110mb.com/url.htm
Plz help me
|
|
| 16-11-2007 05:16 AM |
|
|
Cedik
Moderator
    
Posts: 424
Group: Moderators
Joined: Aug 2007
Status:
Away
Reputation: 2
Points: 575 (Donate)
|
|
| 16-11-2007 05:41 AM |
|
|
ivenms
Administrator
      
Posts: 2,179
Group: Administrators
Joined: Sep 2006
Status:
Offline
Reputation: 14
Points: 4389 (Donate)
|
|
| 16-11-2007 05:12 PM |
|
|
spartan
Newbie
Posts: 10
Group: Registered
Joined: Sep 2007
Status:
Offline
Reputation: 0
Points: 27 (Donate)
|
RE: List of Best Free Uploading and File Grabbing Scripts
I have tried them but they aint working as expexted
i dont need direct upload script
i need url upload script bro
plz plz help me find one
|
|
| 17-11-2007 08:30 PM |
|
|
ivenms
Administrator
      
Posts: 2,179
Group: Administrators
Joined: Sep 2006
Status:
Offline
Reputation: 14
Points: 4389 (Donate)
|
|
| 17-11-2007 10:49 PM |
|
|
spartan
Newbie
Posts: 10
Group: Registered
Joined: Sep 2007
Status:
Offline
Reputation: 0
Points: 27 (Donate)
|
RE: Help with php upload script
I have tried them but they aint working as expexted
i dont need direct upload script
i need url upload script bro
plz plz help me find one
One script is there on my list to do that:
File Snatcher
Download: http://futilitysoft.com/downloads/other/...beta.3.zip
Description: File Snatcher is a free PHP script that allows you to easily copy files, such as images, from one website to another.
Yeah buddy i tried this too but when we put a url address and write file name and when we press copy file
a new page loads with all gibrish written over it
its like some computer language i think
but the file doesnt get copied
but i think it can be made correct but i dont have enough php knowledge to edit it properly
so if u can plz do it for me
it would be ur great kindness if u do it for me plz
|
|
| 19-11-2007 03:08 PM |
|
|
Lord_Daksh
Posting Freak
    
Posts: 643
Group: Registered
Joined: Sep 2007
Status:
Offline
Reputation: 0
Points: 16 (Donate)
|
|
| 19-11-2007 05:32 PM |
|
|
Cedik
Moderator
    
Posts: 424
Group: Moderators
Joined: Aug 2007
Status:
Away
Reputation: 2
Points: 575 (Donate)
|
RE: Help with php upload script
Yeah buddy i tried this too but when we put a url address and write file name and when we press copy file
a new page loads with all gibrish written over it
its like some computer language i think
but the file doesnt get copied
but i think it can be made correct but i dont have enough php knowledge to edit it properly
so if u can plz do it for me
it would be ur great kindness if u do it for me plz
Could you give us a paste of that gibberish? Or a print screen with the error page?
That way, it's easier to tell what problem are you facing!
MyBB.ro|Extra.animezup.com|Picture with me ^^|Animezup.com|Forum.animezup.com|Manga-anime.ro|My blog^^
|
|
| 19-11-2007 08:55 PM |
|
|
Lord_Daksh
Posting Freak
    
Posts: 643
Group: Registered
Joined: Sep 2007
Status:
Offline
Reputation: 0
Points: 16 (Donate)
|
|
| 20-11-2007 12:00 AM |
|
|
ivenms
Administrator
      
Posts: 2,179
Group: Administrators
Joined: Sep 2006
Status:
Offline
Reputation: 14
Points: 4389 (Donate)
|
Free PHP code Script for Uploading Remote Files to Servers Local Directory
Yeah buddy i tried this too but when we put a url address and write file name and when we press copy file
a new page loads with all gibrish written over it
its like some computer language i think
but the file doesnt get copied
but i think it can be made correct but i dont have enough php knowledge to edit it properly
so if u can plz do it for me
it would be ur great kindness if u do it for me plz
Am making a good PHP script for your use.
First put the code given below on your HTML page to show the uploading form:
<form method="post" action="fileupload.php">
<input name="url" type="text">
<input name="nme" type="text">
<input type="submit" value="Upload File">
</form>
Use the code for the file: fileupload.php
<?php
//Put the site's path where this page existing. Example: put http://yoursite.com/ for http://yoursite.com/fileupload.php. Use "/" at the end. $path = "http://yoursite.com/";
//Put the file storing directory over here. Make a directory name as "upload" nad change its chmod to 777. $dir = "upload";
$file = $_REQUEST['url'];
if($content = file_get_contents($file)) { if(REQUEST['name'] != "") { $name = REQUEST['nme']; } else { $name = basename($file); } $fp = fopen($dir.'/'.$name, 'w'); fwrite($fp, $content); fclose($fp); echo "<b>Your File Uploaded: <a href='".$path.$dir."/".$name."'>$name</a></b>"; } else { echo "<b>Error on uploading your file.</b>"; } ?>
Another $10 worth script for free.. I lost my precious time..
Read: General Rules & Policies before posting.
Make Money By Posting | Earning and Exchanging Points | Add Your Links
|
|
| 22-11-2007 03:23 AM |
|
|
Lord_Daksh
Posting Freak
    
Posts: 643
Group: Registered
Joined: Sep 2007
Status:
Offline
Reputation: 0
Points: 16 (Donate)
|
|
| 22-11-2007 06:46 AM |
|
|
ivenms
Administrator
      
Posts: 2,179
Group: Administrators
Joined: Sep 2006
Status:
Offline
Reputation: 14
Points: 4389 (Donate)
|
|
| 23-11-2007 02:04 AM |
|
|
Lord_Daksh
Posting Freak
    
Posts: 643
Group: Registered
Joined: Sep 2007
Status:
Offline
Reputation: 0
Points: 16 (Donate)
|
|
| 23-11-2007 05:41 AM |
|
|