Pages:
Author

Topic: v5.6.0 ][ Open-Source Pooling Web Software ( MiningFarm ) - page 5. (Read 57210 times)

member
Activity: 62
Merit: 10
http://mine.tenobis.com runs now with 1 Ghash and works good !!
newbie
Activity: 25
Merit: 0
Running 4.1.51.  Here's a few things that don't seem to be working:

1. Miner stats - shows 0 speed all the time
2. Pool stats (front page)
3. Blog posts are missing
4. ./json/poolstats.php link doesn't exist
5. payment calculcations seem to be inconsistent/incorrect.  I'm running on testnet and have solved 3 blocks.  The pool is set to charge a 1% fee.  The statistics page says my payment for each block is 45BTC (135 total) yet my balance is at 103BTC (doesn't make sense??).  And actually as I was typing this I refreshed my pool page and my balance has just dropped to 101BTC???  Auto payment is set to 0.

Cheers

EDIT: and now it's dropped to 100BTC lol.  Something is stealing my balance....

1. is working for me
2. is working for me
3. is working for me
4. has never exists
5. he knows that and he is working on it

some more bugs @ payout

Code:
	if(isSet($getCredentials->sendAddress)){
echo $getCredientials->sendAddress;
}else{

Typo Bug

And:
Code:
							//Does this accountbalance meet the `cashoutMinimum`
$accountBalance = $getCredientials->accountBalance;
$cashOutAddress = $getCredientials->sendAddress;
$userId = $getCredientials->userId;
$cashOutMin = getCashoutMin();
echo $cashOutAddress;
Dont know why but $accountBalance, $cashOutAddress are empty :O
at this point. Dont found why
member
Activity: 84
Merit: 10
Running 4.1.51.  Here's a few things that don't seem to be working:

1. Miner stats - shows 0 speed all the time
2. Pool stats (front page)
3. Blog posts are missing
4. ./json/poolstats.php link doesn't exist
5. payment calculcations seem to be inconsistent/incorrect.  I'm running on testnet and have solved 3 blocks.  The pool is set to charge a 1% fee.  The statistics page says my payment for each block is 45BTC (135 total) yet my balance is at 103BTC (doesn't make sense??).  And actually as I was typing this I refreshed my pool page and my balance has just dropped to 101BTC???  Auto payment is set to 0.

Cheers

EDIT: and now it's dropped to 100BTC lol.  Something is stealing my balance....
legendary
Activity: 980
Merit: 1003
I'm not just any shaman, I'm a Sha256man
Oh i overlooked that post itll be fixed keep them bug reports comming guys! Cheesy
Bug.
Rewards function.php
Code:
		//Get estimated earnings
$estReward = 0;
if($totalPoolShares > 0 && $totalShares > 0){
$estReward = $totalPoolShares/$totalShares;
}

should be
Code:
		//Get estimated earnings
$estReward = 0;
if($totalPoolShares > 0 && $totalShares > 0){
$estReward = $totalShares/$totalPoolShares;
}

still not fixed in 4.1.51
the pool will reward more than 50BTC with this code

$pendingBalance is without any function.

still have the reward bug that i hve explained in PM.

THANKS for the disable TH option. :>
newbie
Activity: 25
Merit: 0
Bug.
Rewards function.php
Code:
		//Get estimated earnings
$estReward = 0;
if($totalPoolShares > 0 && $totalShares > 0){
$estReward = $totalPoolShares/$totalShares;
}

should be
Code:
		//Get estimated earnings
$estReward = 0;
if($totalPoolShares > 0 && $totalShares > 0){
$estReward = $totalShares/$totalPoolShares;
}

still not fixed in 4.1.51
the pool will reward more than 50BTC with this code

$pendingBalance is without any function.

still have the reward bug that i hve explained in PM.

THANKS for the disable TH option. :>
hero member
Activity: 630
Merit: 500
One thing I've been meaning to ask before I take my pool public.  Can you integrate some sort of "Forgot Password" system?
full member
Activity: 434
Merit: 101
I uploaded the new github, it looks pretty good I love what you did with the block stats now you can at least see which block your own vs just a blank page if you found no blocks. the only thing I could see thus far it seems is a mysql error, when I try to change info from admin page it returns a Unknown column 'currencyData' in 'field list'  Other people have been having issues on the registration ive seen no such issue as ive just reregisterd myself and it seems to be working ok...
hero member
Activity: 630
Merit: 500
Aw man, you broke the github fork by starting over from scratch!  It's alright, I'll figure out how to refork or something.
member
Activity: 62
Merit: 10
I just installed 4.1.3

It seems that the Blog is gone, the errors in activateAccount.php still appears but now the site doesnt even tell you anymore that your account was activated, it did tell you that even with the errors in 4.1.2

Warning: include(..../req/menu.php) [function.include]: failed to open stream: No such file or directory in .../activateAccount.php on line 47
Warning: include() [function.include]: Failed opening '.../req/menu.php' for inclusion (include_path='.:') in .../activateAccount.php on line 47
Warning: include() [function.include]: Filename cannot be empty in .../activateAccount.php on line 53
Warning: include() [function.include]: Failed opening '' for inclusion (include_path='.:') in .../activateAccount.php on line 53


in the top right corner where the currencies and est. income etc is, there is an error:

Warning: mysql_fetch_object(): supplied argument is not a valid MySQL result resource in /var/www/vhosts/tenobis.com/subdomains/mine/httpdocs/req/functions.php on line 391

on the Admin Panel i cant change the settings anymore.....

And this on the stats Page (this didnt change since 4.1.2):

Fatal error: Uncaught BitcoinClientException:
  • : Didn't receive 200 OK from remote server. (HTTP/1.0 401 Authorization Required) thrown in on line 0

But i saw that this isnt the case on timmmay miningfarm, wonder what he has different, cause xen told me that he has the same error
member
Activity: 84
Merit: 10
Hey Xenland - I just updated to 4.1.3 and the "blog" part of the front page isn't opening.  See http://203.173.42.154

newbie
Activity: 25
Merit: 0
Bug.
Rewards function.php
Code:
		//Get estimated earnings
$estReward = 0;
if($totalPoolShares > 0 && $totalShares > 0){
$estReward = $totalPoolShares/$totalShares;
}

should be
Code:
		//Get estimated earnings
$estReward = 0;
if($totalPoolShares > 0 && $totalShares > 0){
$estReward = $totalShares/$totalPoolShares;
}
hero member
Activity: 630
Merit: 500
php 5.3
sudo aptitude install gettext-base

Looks like he's on windows Cheesy
Oh jeez.  He needs to delete his Z: drive and stick to mining! jk
member
Activity: 84
Merit: 10
hero member
Activity: 630
Merit: 500
sr. member
Activity: 332
Merit: 250
posting to sub  Grin good work xen.
newbie
Activity: 40
Merit: 0
hero member
Activity: 630
Merit: 500
Fatal error: Call to undefined function bindtextdomain() in Z:\home\localhost\www\req\functions.php on line 36
What version of PHP do you have?  I believe that function is built right into PHP without a module also.
newbie
Activity: 40
Merit: 0
and one more
Fatal error: Call to undefined function gettext() in Z:\home\localhost\www\1\index.php on line 23
newbie
Activity: 40
Merit: 0
Fatal error: Call to undefined function bindtextdomain() in Z:\home\localhost\www\req\functions.php on line 36
member
Activity: 62
Merit: 10
Hello All

My mine works good now on http://mine.tenobis.com !
But there is still a little bug and i cant find why that is its on the stats page and in the block cronjobs aswell:

Uncaught BitcoinClientException:
  • : Didn't receive 200 OK from remote server. (HTTP/1.0 401 Authorization Required) thrown in on line 0

Does anyone have an idea why that happens??
Pages:
Jump to: