Webmaster Key - Discussion Forums


Welcome, Guest. Please login or register.
Did you miss your activation email?
February 09, 2012, 04:21:22 AM

Login with username, password and session length
Welceome to Forums!

Important information for guests and new members:

In order to understand the full benefits of becoming an active member of this forum, please review the following information on guest and new member restrictions. These forum changes have been prompted by an overwhelming and unreasonable amount of bot postings and incoherent guest spam messages. We wish to prevent these events from happening in the future and make our community a more comfortable place for all of our members.

For guests:

Guests are not allowed to open new topics, polls, or posts attachments.
If you wish to open up new discussions on this forum, we encourage you to register.

For new members:

New members with less than five posts are not allowed to modify additional profile information such as avatars, contact information, biographies, and signatures. However, new members are encouraged to post their own topics or reply to topics initiated by other members. Become active on the forums and 5 posts should be an easy task!

We are a diverse community with members from all over the world. We encourage new ideas and interesting conversation. Do not be afraid to post webmaster/computer-related questions or problems, as our active members are always willing to help when they are able. Interested? Join us.

+ Webmaster Key Forums
|-+ General Discussion
| |-+ Tech Corner
| | |-+ Transferring files between servers?
0 Members and 1 Guest are viewing this topic. « previous next »
Pages: [1] Go Down Stumble Upon! Digg It! del.icio.us! Add to Technorati! ReddIt!  Send this topic Print
Author Topic: Transferring files between servers?  (Read 4300 times)
Menard
Key Keeper
Veteran
*****
Posts: 965



WWW
« on: October 06, 2007, 11:46:31 PM »

On one of my hosting accounts, I would like to transfer some reseller content to it from another server. I have download access to the files, but downloading and uploading files collectively over 8GB would take a very long time. I was wondering if someone knew of a way, or software, that would let me transfer files from a link and into my hosting account?
Report to moderator   Logged

SensoVision
Administrator
Veteran
*****
Posts: 5 857


I'm proud user of Debian GNU/Linux OS


WWW
« Reply #1 on: October 07, 2007, 12:07:39 AM »

If your server have SSH access than it's very easy. You can make steps similar to these:
on server from which you need to download file simply create archive of data need to be transferred like this:
tar jcvf archive.tar.bz2 somedata-directory
place archive.tar.bz2 in the place where you can download it through http or FTP.

login into SSH on other server and simply download it to some directory:
it could be done like this:
wget -c http://yoursiteurl.net/archive.tar.bz2
now just unpack data and it would be ready for use:
tar jxvf archive.tar.bz2

If you decide to transfer files this way I advice creating smaller archives than 1Gb, e.g. 600mb or so, this way it would be easier to transfer file again if something goes wrong and you wouldn't waste as much bandwidth as you could with bigger files. And I remember that in the past there was limitation of wget for 2gb files or so but it was overcome in later versions.(If wget isn't installed you may try curl)

I'm sure there are GUI interfaces which let you download files, but I'm not aware of them. There is also way to write your own but I'm not sure how PHP would work with such big files.
BTW if you don't have SSH enabled on the new server, you may simply ask admins to download files for you from your old server by providing them with list of files to be downloaded.

Let me know if you need more help.
Report to moderator   Logged

Denis
Andy
Administrator
Veteran
*****
Posts: 5 752



« Reply #2 on: October 07, 2007, 11:08:19 AM »

I posted about this exact same topic recently. The web-server-based software I used only allowed 10 files at a time to be transferred.

A small script would be ideal but I don't know of one.

You have to be aware that your server will have a maximum file size limit of maybe 20MB. Check it with PHPinfo.php
Report to moderator   Logged

SensoVision
Administrator
Veteran
*****
Posts: 5 857


I'm proud user of Debian GNU/Linux OS


WWW
« Reply #3 on: October 07, 2007, 11:17:21 AM »

Quote
You have to be aware that your server will have a maximum file size limit of maybe 20MB. Check it with PHPinfo.php
that's right, there is also timeout parameter(which determine time how long one script could run) and it may limit transfer as well, and these options usually(in rare cases user may control them) set by hosting administrator and are not likely to be altered.
Report to moderator   Logged

Denis
Andy
Administrator
Veteran
*****
Posts: 5 752



« Reply #4 on: October 07, 2007, 12:48:42 PM »

It just struck me that this is one good reason to get hold of your own dedicated server, then you can host unlimited sites and easily transfer large chunks of data between the sites since the data transfer will be done on the same server and would be very fast. Also, you should get SSH access to allow very good control of your server.

Transferring Gigs of data up and down from the web and your local computer is a bad idea due to speed and hosting bandwidth limits.
Report to moderator   Logged

SensoVision
Administrator
Veteran
*****
Posts: 5 857


I'm proud user of Debian GNU/Linux OS


WWW
« Reply #5 on: October 07, 2007, 01:05:53 PM »

I'm 100% agree with you, Andy! the only drawback of hosting all sites on the same server is that they could go offline simultaneously and make hacker job easier...
But having SSH for administration is must have tool for any developer or to webmasters who have at least two sites or one with data which need regular backup.
Report to moderator   Logged

Denis
Andy
Administrator
Veteran
*****
Posts: 5 752



« Reply #6 on: October 07, 2007, 02:01:45 PM »

Well I have survived with shared virtual server hosting for a long time at around $20 month. What do you pay for a dedicated server? Actually my son runs a server from his room so I understand that there are big differences in the quality of dedicated servers from an old dusty 386 PC in a garage up to a rack mounted machine in an air-conditioned data center.
Report to moderator   Logged

Menard
Key Keeper
Veteran
*****
Posts: 965



WWW
« Reply #7 on: October 07, 2007, 03:46:34 PM »

I had once used an online FTP service to transfer files between hosting accounts. There is a free online service setup specifically for that, but they have file size limits as well.

What I am needing to transfer, though, is from a link to a hosting account, not from account to account.


Right now, I'm thinking my best options are one of two:

Contacting support to see if someone would transfer the files for me (they are password protected and some are over 800MB)

or

Downloading all of the files myself (my download speed is like 6-7 times faster than my upload speed) then borrowing a friend's connection at work to upload the files (I could feasibly download the files there as well as they have fast connections). I would just have to find the time to do that.


I would eventually like to have a dedicated server. Of course, two things stand in the way; I can't afford it, and I have no place to put one if I were to use my own. With what I have planned for the new site, I am either going to need dedicated hosting, or some very understanding shared hosting.
Report to moderator   Logged

Andy
Administrator
Veteran
*****
Posts: 5 752



« Reply #8 on: October 08, 2007, 09:41:49 AM »

Quote
I am either going to need dedicated hosting, or some very understanding shared hosting.

Shared hosting is fine but when you hit the bandwidth limit, it's like a brick wall, your hosting is suspended until the next month. A couple of my sites run on unlimited bandwidth hosting but I don't believe it is. Better to pay for a known limit of bandwidth I think.

Quote
borrowing a friend's connection at work to upload the files (I could feasibly download the files there as well as they have fast connections).

Bad idea! The IT department monitor all internet traffic and maybe produce reports to management so your friend could get sacked or disciplined for inappropriate use of company resources. Better to fly under the radar with Internet use at work. Doing anything unusual rings alarm bells. For example, I can never understand employees using their work email for personal use. I always used web-based email.

p.s. How about using a cyber cafe with fast internet connections? For a small fee you could maybe do the transfers using their fast link?

Also, I don't know if you could make use of a file hosting service like http://www.mediafire.com/ ?
« Last Edit: October 08, 2007, 09:49:17 AM by Andy » Report to moderator   Logged

Softix
Novice
*
Posts: 10


« Reply #9 on: January 21, 2008, 01:33:14 PM »

I have read that hostgator is doing free transfer to the new hosts. I got some problems before in my hosting and it seems that they offer such great services.
Report to moderator   Logged

Queen Bee
Mother of All
Administrator
Veteran
*****
Posts: 2 624


Buzz, buzz!


WWW
« Reply #10 on: January 21, 2008, 06:07:10 PM »

Quote
I have read that hostgator is doing free transfer to the new hosts. I got some problems before in my hosting and it seems that they offer such great services.

I was happy to see that as well. I have been very disappointed my hosting service in recent months (I use Hostexcellence.) With the advice of Andy I'm going to try out Hostgator and post my experience here.
Report to moderator   Logged

Pages: [1] Go Up Stumble Upon! Digg It! del.icio.us! Add to Technorati! ReddIt!  Send this topic Print 
+ Webmaster Key Forums
|-+ General Discussion
| |-+ Tech Corner
| | |-+ Transferring files between servers?

Jump to:  
« previous next »


Our Partners
RelmaxTOP Ranking System Web Hosting RelmaxTOP Ranking System
Staff Sites
12Noon[12Noon Gallery] Andy[Urgentclick]
Tamuril[Tamuril's Digital Art Exhibit] Sensovision
Powered by MySQL Powered by PHP We are hosted by Relmax Inc. |Our Privacy Policy | Sitemap
Powered by SMF 1.1.9 | SMF © 2006-2009, Simple Machines LLC
Forum design by Tamuril © 2005.
Valid XHTML 1.0! Valid CSS!