XFileSharing Pro - File Transfer From One Server To Another Issue

Message
Author
Belgin Fish
Posts: 101
Joined: Aug 09, 2010 6:30 pm

File Transfer From One Server To Another Issue

#1 Postby Belgin Fish » Aug 11, 2011 9:42 pm

Hey,

well just yesterday the whole thing was working fine, since I bought a new server and have been transferring all the files off my old one. Now it was working and I got about 1000 files off it, although I installed a few new things in my server and suddenly it only works if i select a couple files (like under 5) to transfer at once, while yesterday I did all 1000 in one batch.

Just wondering if there's something I may have changed and if anyone knows how I can fix this issue :)

Thanks!

Belgin Fish
Posts: 101
Joined: Aug 09, 2010 6:30 pm

#2 Postby Belgin Fish » Aug 11, 2011 11:15 pm

if i do too many it just gets stuck at the first

Sending 00000/0ffbf1gz59bo...

glumbo
Posts: 211
Joined: Mar 11, 2011 6:26 am

#3 Postby glumbo » Aug 11, 2011 11:45 pm

I had the same problem: http://www.sibsoft.net/forum/problem-tr ... t3621.html

Sometimes it works, sometimes it doesn't

Belgin Fish
Posts: 101
Joined: Aug 09, 2010 6:30 pm

#4 Postby Belgin Fish » Aug 11, 2011 11:53 pm

Glad to see I'm not the only one. Hopefully someone can figure it out :( If not I'll hire a perl coder to look into it and hopefully get back to you with a solution.

amator
Posts: 72
Joined: Dec 01, 2010 6:51 pm

#5 Postby amator » Aug 12, 2011 8:15 am

We (customers sibsoft) need a function to transfer file in a cron, so that your browser does not have to be constantly open.

Simply select the entire server, just click move file and not worry about anything:)

Belgin Fish
Posts: 101
Joined: Aug 09, 2010 6:30 pm

#6 Postby Belgin Fish » Aug 13, 2011 5:08 pm

Any ideas?

krazymax
Posts: 62
Joined: Jan 31, 2012 8:45 am

#7 Postby krazymax » Feb 23, 2012 8:04 am

any solution to this problem? this issue is mainly for large files

ankurs
Posts: 1054
Joined: Mar 10, 2009 2:34 am

#8 Postby ankurs » Feb 23, 2012 9:34 am

krazymax wrote:any solution to this problem? this issue is mainly for large files
transfer the files via scp or rsync & then change server id in db

fileup
Posts: 26
Joined: Nov 28, 2011 3:32 pm

#9 Postby fileup » Feb 23, 2012 11:28 am

ankurs wrote:
krazymax wrote:any solution to this problem? this issue is mainly for large files
transfer the files via scp or rsync & then change server id in db
can you tell me more about this?

Dulci
Posts: 112
Joined: Jun 10, 2010 6:45 am

#10 Postby Dulci » Feb 23, 2012 3:33 pm

Yep transfering files from admin panel does suck. sometimes it transfers the files but when you try to watch the file it says file doesnt exist but you can download the file. i do get problems when transfering more files at the same times.

stamos
Posts: 139
Joined: Nov 11, 2010 5:37 pm

#11 Postby stamos » Feb 23, 2012 6:06 pm

raising the timeout value in apache settings helps (600 or so)

GMC
Posts: 172
Joined: Aug 15, 2009 4:48 am

#12 Postby GMC » Feb 25, 2012 4:15 am

fileup wrote:
ankurs wrote:
krazymax wrote:any solution to this problem? this issue is mainly for large files
transfer the files via scp or rsync & then change server id in db
can you tell me more about this?
This is what I do

Use rsync

Code: Select all

rsync -av -e ssh username@oldserverhost:/home/old_home/ /home/new_home/ 
To transfer the files just move same 00000, etc subfolders to uploads/ folder on another server

Once all complete run this query

Code: Select all

UPDATE Files SET srv_id=2 WHERE srv_id=1
This changes the server ID from 1 to 2

Pretty useful thing to do

G

fileup
Posts: 26
Joined: Nov 28, 2011 3:32 pm

#13 Postby fileup » Feb 25, 2012 6:54 am

thank you GMC