NamePros
Welcome, Guest! Ready to make a name for yourself in the domain business? We welcome both the hobbyist and professional domainer to join the discussion as part of the NamePros community.

Click here to create your profile to start earning reputation for posting, and trader ratings for buying & selling in our free e-marketplace. Build your trader rating with each successful sale. Our system has tracked over 100,000 sales and counting!
FAQ & TOS Register Search Today's Posts Mark Forums Read

Go Back   NamePros.com > Website Development Discussion Forums > Programming
Reload this Page how to upload a url to my server

Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics.

Advanced Search


Closed Thread
 
LinkBack Thread Tools
Old 09-02-2007, 04:04 AM THREAD STARTER               #1 (permalink)
Senior Member
Join Date: Jul 2005
Location: lebanon
Posts: 2,458
rcep is a splendid one to beholdrcep is a splendid one to beholdrcep is a splendid one to beholdrcep is a splendid one to beholdrcep is a splendid one to beholdrcep is a splendid one to beholdrcep is a splendid one to beholdrcep is a splendid one to behold
 




how to upload a url to my server


how to upload a url to my server
i want to know how can i upload to my server a url on the internet
without downloading it to my pc then uploading it to my server

Anyone knows how its done
__________________
Download free MP3 _____________ Get unique visitors 4 NPs (over 800 satisfied) << Check the Holidays offer
_____ Email me for fast response ryan [at] ryansdistrict.com

________ My 9000NPs R 4 SALE cheap- Contact me!
rcep is offline  
Old 09-02-2007, 04:09 AM   #2 (permalink)
Senior Member
 
Barrucadu's Avatar
Join Date: Aug 2005
Location: East Yorkshire, England
Posts: 2,689
Barrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to behold
 




What do you mean? A URL isn't a file, so you can't upload (or download) one.
Barrucadu is offline  
Old 09-02-2007, 04:11 AM   #3 (permalink)
Senior Member
 
Hitch's Avatar
Join Date: Aug 2005
Location: Uk, South Yorkshire
Posts: 1,225
Hitch is a splendid one to beholdHitch is a splendid one to beholdHitch is a splendid one to beholdHitch is a splendid one to beholdHitch is a splendid one to beholdHitch is a splendid one to beholdHitch is a splendid one to behold
 


Winner
PHP Programming - May 2007
Animal Rescue Third World Education Find Marrow Donors!
Do you mean, upload a image to your server, from http://aaaaaaa.com/a.jpg?
__________________
Cueburst - Support System - FAQ Knowledge Base, Tickets and more.
Hitch is offline  
Old 09-02-2007, 04:15 AM THREAD STARTER               #4 (permalink)
Senior Member
Join Date: Jul 2005
Location: lebanon
Posts: 2,458
rcep is a splendid one to beholdrcep is a splendid one to beholdrcep is a splendid one to beholdrcep is a splendid one to beholdrcep is a splendid one to beholdrcep is a splendid one to beholdrcep is a splendid one to beholdrcep is a splendid one to behold
 




its not an image its a zip file
i mean let say i want to upload a script to my server which is found for example at http://yourdomain.com/script.zip
i want to directly upload the script to my server without the need to download it to my PC then upload it to the server
i want to upload it directly without downloading from http://yourdomain.com/script.zip to my server
__________________
Download free MP3 _____________ Get unique visitors 4 NPs (over 800 satisfied) << Check the Holidays offer
_____ Email me for fast response ryan [at] ryansdistrict.com

________ My 9000NPs R 4 SALE cheap- Contact me!
rcep is offline  
Old 09-02-2007, 04:22 AM   #5 (permalink)
NamePros Member
Join Date: Sep 2007
Location: India
Posts: 32
coolramiz is an unknown quantity at this point
 



u should have the online editoe on ur server installed
coolramiz is offline  
Old 09-02-2007, 05:33 AM THREAD STARTER               #6 (permalink)
Senior Member
Join Date: Jul 2005
Location: lebanon
Posts: 2,458
rcep is a splendid one to beholdrcep is a splendid one to beholdrcep is a splendid one to beholdrcep is a splendid one to beholdrcep is a splendid one to beholdrcep is a splendid one to beholdrcep is a splendid one to beholdrcep is a splendid one to behold
 




online editor?
i got Cpanel hosting with the latest file manager that allowes uploading files just from my pc but i want to upload a file on the internet to my server
__________________
Download free MP3 _____________ Get unique visitors 4 NPs (over 800 satisfied) << Check the Holidays offer
_____ Email me for fast response ryan [at] ryansdistrict.com

________ My 9000NPs R 4 SALE cheap- Contact me!
rcep is offline  
Old 09-02-2007, 06:26 AM   #7 (permalink)
Danltn.com
 
Daniel's Avatar
Join Date: May 2007
Location: Danltn.com / Nottingham, UK
Posts: 1,201
Daniel has a reputation beyond reputeDaniel has a reputation beyond reputeDaniel has a reputation beyond reputeDaniel has a reputation beyond reputeDaniel has a reputation beyond reputeDaniel has a reputation beyond reputeDaniel has a reputation beyond reputeDaniel has a reputation beyond reputeDaniel has a reputation beyond reputeDaniel has a reputation beyond reputeDaniel has a reputation beyond repute
 


Ethan Allen Fund Ethan Allen Fund
PHP Code:
<?php
if ($_GET[xfer]) {
if (
$_POST[from] == "") {
print 
"You forgot to enter a url.";
} else {
copy("$_POST[from]""$_POST[to]");
$size round((filesize($_POST[to])/1000000), 3);
print 
"Transfer complete. <br>
<a><a href=\"
$_POST[from]\">$_POST[from]</a><br>
<a><a href=\"
$_POST[to]\">$_POST[to]</a> : $size MB";
}
} else {
print 
"<form action=\"$PHP_SELF?xfer=true\" method=post>
????: NamePros.com http://www.namepros.com/programming/369224-how-to-upload-url-my-server.html
from(http://): <input name=from><br>
????: NamePros.com http://www.namepros.com/showthread.php?t=369224
to(filename): <input name=to><br>
<input type=submit value=\"transload\">"
;
}
?>
Remember to CHMOD to 777 and put it in a secure place, so people don't upload .php and crap like that onto your server.

P.S. I know it's ugly, but it works, K?
Daniel is offline  
Closed Thread


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools


Liquid Web Smart Servers  
All times are GMT -7. The time now is 04:37 AM.

Managed Web Hosting by Liquid Web
Domain name forum recommended by Domaining.com Powered by: vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.6.0 Ad Management plugin by RedTyger