the forums at degreez.net

It is currently Thu Apr 25, 2024 2:57 pm

All times are UTC - 7 hours [ DST ]




Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 16 posts ]  Go to page 1, 2  Next
Author Message
 Post subject: client stopping
PostPosted: Fri May 07, 2004 3:23 am 
for an anoying resone this client keeps on stopping with a download has failed msg and keeps on frign stopping (same problem on 2 very dif pc one intel cpu (intell chipset) and one amd (amd chipset) and it says to restart the client to resrume

this is very anoying to find out that it happed to stop downloading like after i go bed!


Top
  
 
 Post subject:
PostPosted: Fri May 07, 2004 3:26 am 
i have never had this problem before

but i have neer downloaded 3.8gb before useing this prog


Top
  
 
 Post subject:
PostPosted: Fri May 07, 2004 4:59 am 
Offline

Joined: Mon Mar 15, 2004 8:35 am
Posts: 418
What happens when you run memtest on both machines? Does memtest find any bad memory?


Top
 Profile  
 
 Post subject:
PostPosted: Fri May 07, 2004 5:16 am 
Offline

Joined: Fri May 07, 2004 4:10 am
Posts: 16
i can understand the amd computer doing it coes we put it togever with old parts (its a slot 1 athlon 800mhz heh) is the one i am on now

but the intel one is doing the same thing (new pc)

both computers do the same thing at dif times (not downloading the same file but downloading 1 of the 16 3.8gb files) both are on a perm internet no ip chages or firewalled ports with both set to 20k upload (not saturated)

is there a debug ver of this client


Top
 Profile  
 
 Post subject:
PostPosted: Fri May 07, 2004 7:14 am 
Offline

Joined: Mon Mar 15, 2004 8:35 am
Posts: 418
Did test both machines' memory with memtest86?


Top
 Profile  
 
 Post subject:
PostPosted: Fri May 07, 2004 7:30 am 
Offline

Joined: Fri May 07, 2004 4:10 am
Posts: 16
no and cant at the mo if i sto BT now it will not fnishes before i go home

and it ant mem problems (ant there a windows one i can run)

the pc at home has been running for 60weeks (ops i forgot that was my pc i sead was new) but in any case it does it norm 2 times per each torront , this is the bigist file i have ever downloaded before as norm files have been 600mb (it norm does it around 1.1gb and then nere the end of the file and norm when it finishs the file)

and anaway it would of crashed on other stuff like seti@home and emule and 2 ofer p2p apps


Top
 Profile  
 
 Post subject:
PostPosted: Fri May 07, 2004 8:43 am 
Offline

Joined: Fri May 07, 2004 4:10 am
Posts: 16
:evil:

it done it agane ERROR (03:43 pm) - download courrupted; please restart and resume !! why cant it do it on its own ffs and it stops all transfers up and down

i am not going to care bare this client any more
i am asuming i can just run the official ver of bit torrant


Top
 Profile  
 
 Post subject:
PostPosted: Fri May 07, 2004 10:09 am 
Offline

Joined: Mon Mar 15, 2004 8:35 am
Posts: 418
Just because windows seemingly runs fine doesn't mean you don't have bad memory. The error message you see in the client occurs if and only if the data that previously was valid in memory changes on its own which can occur when you have bad memory or a bad driver or DLL loaded on your system.

http://forums.degreez.net/viewtopic.php?p=1874#1874
TheSHAD0W wrote:
Unfortunately, there's very little I can do about it. The "auto-restart" option is no good; often it's not simply the download data that's corrupted, but the program in RAM, and that's impossible to recover from reliably.


Top
 Profile  
 
 Post subject:
PostPosted: Fri May 07, 2004 11:11 am 
Offline

Joined: Fri May 07, 2004 4:10 am
Posts: 16
when i get home i see if the official ver does it as well


Top
 Profile  
 
 Post subject:
PostPosted: Sat May 08, 2004 6:30 pm 
i find more peeps use the old ver of shadow (most i have seen is 5-10 peeps useing 0.2.0)

alot of them are useing Azureus but about the same number useing shad0w 5.8.* (* +- 3 vers)

and i have not had any problem with Azureus

i test on the AMD computer when i get to hit the reset button on it on monday (dam thing seems to stop on friday nights cant get back to it until monday)

i have allso never had a problem with shad0w before as well i still think its a bug in 0.2.0 (blameing memory bah) and i did test me memory and there was nothing rong with it (wast of time and torrant time)


Top
  
 
 Post subject: Errors.
PostPosted: Mon May 17, 2004 3:08 pm 
Offline

Joined: Mon May 17, 2004 3:01 pm
Posts: 1
I also get the download corrupt error quite often with the bittorrent and bittornado clients. I get it on 3 different machines and I also have tested each of the machines with the newest version of memtest86. All machines passed. Two of the machines have parity DDR, and one has standard nonparity DIMMs. I've tried using the non-GUI versions of the program and those seem to work flawlessly.


Top
 Profile  
 
 Post subject:
PostPosted: Mon May 17, 2004 3:50 pm 
Offline

Joined: Fri May 07, 2004 4:10 am
Posts: 16
woho

any way i tryed the java client and i had no problems trying the shaddow 0.3.1 now see if it works/fixed problem


Top
 Profile  
 
 Post subject:
PostPosted: Mon May 17, 2004 8:11 pm 
Offline

Joined: Mon Mar 15, 2004 8:35 am
Posts: 418
Could you put this code snippet into a file with a .py extension and then run it using "python program.py" and then paste its output here?

Code:
# This simple program does a sha1 hash of a string of chars
# ranging from chr(65) (capital A) to chr(90) (capital Z)
import sha

# amount of memory to gobble during test.
memory2waste = 100000000  # almost 100 megs.

for x in range(65, 91):
  somedata = memory2waste * chr(x)
  hash = sha.new(somedata).hexdigest()
  print "sha1 hash of", memory2waste, chr(x) + "'s is: ", hash


Top
 Profile  
 
 Post subject:
PostPosted: Mon May 17, 2004 8:42 pm 
Offline

Joined: Mon Mar 15, 2004 8:35 am
Posts: 418
Also, what does the output of this python program give you ?

Code:
# This simple program does a sha1 hash of a string of chars
# alternating between chr(85) and chr(170)
import sha

# amount of memory to gobble during test.
memory2waste = 100000000  # almost 100 megs.

# precalculate hashes
firsthash = sha.new( memory2waste * chr(85) ).hexdigest()
secondhash = sha.new( memory2waste * chr(170) ).hexdigest()

print "sha1 hash of", memory2waste,
print "chr(85)'s is: ", firsthash

print "sha1 hash of", memory2waste,
print "chr(170)'s is:", secondhash

print "Now at re-verification stage..."

maxloops = 20
failures = 0

for x in range(maxloops):
  if( x % 2 == 0 ):
    # use chr(85)
    used = 85
    somedata = memory2waste * chr(85)
    hash = sha.new(somedata).hexdigest()
    if( hash == firsthash ):
      print "sha1 hash check of chr(85):  PASSED!"
    else:
      print "sha1 hash check of chr(85):  FAILED! (x =", str(x) + ")"
      failures = failures + 1
  else:
    used = 170
    # use chr(170)
    somedata = memory2waste * chr(170)
    hash = sha.new(somedata).hexdigest()
    if( hash == secondhash ):
      print "sha1 hash check of chr(170): PASSED!"
    else:
      print "sha1 hash check of chr(170): FAILED! (x =", str(x) + ")"
      failures = failures + 1

if( failures == 0 ):
  print str(maxloops), "hash verifications PASSED!"
else:
  print "There were", str(failures), "hash check failures!"


Top
 Profile  
 
 Post subject:
PostPosted: Wed May 19, 2004 12:00 pm 
useing 0.3.1 and the problem has been fix i think it no longer keeps on redownloading part but how do i turn off this resume thing coes it will not re hash the file when i reopen the torrent


Top
  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 16 posts ]  Go to page 1, 2  Next

All times are UTC - 7 hours [ DST ]


Who is online

Users browsing this forum: No registered users and 195 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  
cron
Powered by phpBB® Forum Software © phpBB Group