UnKiE.T Posted March 16, 2007 Share Posted March 16, 2007 Hi All, I wonder if any one can point me to some information. I am fairly new to this so please excuse my ignorance I have setup an ftp server using Cerberus & DynDns which successfully allows me to upload files from a remote location to my PC. Thats all good. I have also created a web page that allows me to upload a file to my web server. I want to combine the 2 processes so I can use the web page to upload to my PC. I hope this makes sense because I am not sure how else to explain it. Please help if you can or direct me somewhere else. Thanks, UnKiE.T. Link to comment https://forums.phpfreaks.com/topic/42947-ftp-from-web-to-my-computer/ Share on other sites More sharing options...
interpim Posted March 16, 2007 Share Posted March 16, 2007 you would need to basically set up your pc as a server and connected to the internet with a Static IP or domain registered to that IP. Link to comment https://forums.phpfreaks.com/topic/42947-ftp-from-web-to-my-computer/#findComment-208609 Share on other sites More sharing options...
UnKiE.T Posted March 16, 2007 Author Share Posted March 16, 2007 Thanks, I think I have done that already. This is the code that used for the upload to my website <?php if ($_FILES['Filedata']['name']) { $uploadDir = "images"; $uploadFile = $uploadDir . basename($_FILES['Filedata']['name']); move_uploaded_file($_FILES['Filedata']['tmp_name'], $uploadFile); } ?> However to access my ftp server on my PC I need to access ftp://mydomain.dnsalias.com with a username and password So i am trying to combine the ftp info into that bit of PHP i think!?! Link to comment https://forums.phpfreaks.com/topic/42947-ftp-from-web-to-my-computer/#findComment-208617 Share on other sites More sharing options...
interpim Posted March 16, 2007 Share Posted March 16, 2007 http://us3.php.net/ftp Link to comment https://forums.phpfreaks.com/topic/42947-ftp-from-web-to-my-computer/#findComment-208620 Share on other sites More sharing options...
UnKiE.T Posted March 16, 2007 Author Share Posted March 16, 2007 Thanks Interpim, I hope thats the page I have been looking for, I will give it a read and see how I go. Thanks again. Link to comment https://forums.phpfreaks.com/topic/42947-ftp-from-web-to-my-computer/#findComment-208621 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.