Pages:
Author

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

member
Activity: 61
Merit: 10
thanks timmay,

i am not the one doing the hashing, the owner wanted to know so i i asked Wink

Xenland

i looked nothing there atm guess ill tell em to wait.
newbie
Activity: 46
Merit: 0
Xenland, i want to donate you a couple of btc, can you give the adress?
member
Activity: 84
Merit: 10
Hey Xenland

all is working really well atm.

just wondering when the site tells u when a block has been found the site is currently at 56k shares and we are just abit worried something isnt working.

thanks
Wayne

Don't forget to setup the cronjobs too.  If you haven't found it already, there's a bug in blockUpdater.php.  The SQL query on line 44 refers to a column called "threashhold", this is a typo, it should be "threshhold".

What are your expectations for solving a block?  With 10GH/sec you might find one every few days if you're lucky (on average)
legendary
Activity: 1372
Merit: 1007
1davout
Hey Xenland

all is working really well atm.

just wondering when the site tells u when a block has been found the site is currently at 56k shares and we are just abit worried something isnt working.

thanks
Wayne
SELECT * FROM shares WHERE upstream_result = 'Y'

If empty everythings normal
member
Activity: 61
Merit: 10
Hey Xenland

all is working really well atm.

just wondering when the site tells u when a block has been found the site is currently at 56k shares and we are just abit worried something isnt working.

thanks
Wayne
newbie
Activity: 47
Merit: 0

[/quote]
Welcome to the thread unixdude,  yeah stats are coming very soon anything that you would like to see in particular?
I'm thinking about going with open flash chart for less of a server load, then pCharts which uses the GD2, although pCharts does look alot nicer and professional.
[/quote]

Hi Xenland

I think Matrixion has covered almost everything I would like to see in terms of stats in his post so something along those lines would be fine Smiley really looking forward to future releases!
newbie
Activity: 2
Merit: 0
Hey, Just registered to say that amongst others, i really appreciate the effort you're putting in on this frontend, i can say i found setup quite easy, and am definitely looking forward to future versions, looks like you're planning on implementing a mhash/s readout on workers, it may be worth integrating that into some form of user specific stats, to note perofrmance issues/failures over 24h or 7 day timeframes, for example. a simple line graph with a different line for each worker.

Thanks again for your effort!
legendary
Activity: 980
Merit: 1003
I'm not just any shaman, I'm a Sha256man
Hi Xenland

I've been following this thread for a while and just wanted to know if the stats.php will be included in a future update. Apart from that i had zero issues getting this to work when i actually get anything worthy i will deffo donate Wink.



p.s. my first post so hello all Smiley



Welcome to the thread unixdude,  yeah stats are coming very soon anything that you would like to see in particular?
I'm thinking about going with open flash chart for less of a server load, then pCharts which uses the GD2, although pCharts does look alot nicer and professional.
newbie
Activity: 47
Merit: 0
Hi Xenland

I've been following this thread for a while and just wanted to know if the stats.php will be included in a future update. Apart from that i had zero issues getting this to work when i actually get anything worthy i will deffo donate Wink.



p.s. my first post so hello all Smiley


member
Activity: 61
Merit: 10
legendary
Activity: 980
Merit: 1003
I'm not just any shaman, I'm a Sha256man
just updated to the latest seem everything is working atm. good work

few things i noticed

admin panel cant set shares to be split? eg 1% goes to server

Blog updater? users search? if there coming just a reminder then Wink

Thanks wayno for the reminder, Just wanted to get all the bugs out of the core of everything so I can build on the solid code. I actually did forget about those features Cheesy
member
Activity: 61
Merit: 10
just updated to the latest seem everything is working atm. good work

few things i noticed

admin panel cant set shares to be split? eg 1% goes to server

Blog updater? users search? if there coming just a reminder then Wink
legendary
Activity: 980
Merit: 1003
I'm not just any shaman, I'm a Sha256man
Actually it's done today the latest, version on git hub has been working for me with register_globals=off, just waiting on my partner to confirm this on his dedicated server then I'll post the update on the original post.
legendary
Activity: 980
Merit: 1003
I'm not just any shaman, I'm a Sha256man
Thanks the validate emails relies on it at the moment, the register globals wont be a problem by tommorow
I was wondering why everyone was referring to $_GET[] variables and everything being wrong with my code. They were thinking that the program worked with out register globals.
sr. member
Activity: 280
Merit: 250
Nom Nom Nom
Looks like you need register_globals = On

Looks like you need to fix this.
Until this is fixed I would highly suggest people not using this code base.
legendary
Activity: 980
Merit: 1003
I'm not just any shaman, I'm a Sha256man
Looks like you need register_globals = On
and I just uploaded  the fix for the server address
and for authentication to be fixed you need to reupload the functions.php file and the activateAccount.php

it would be a good idea to re upload the login and register.php pages a swell since there was spaces in the inputs which
cause users to sign up with a space in there name, password, etc,etc, anything that would make a system act crazy.
member
Activity: 61
Merit: 10
well it send the email but the serveraddress isnt set so it comes out wrong http://activateaccount.php/?authPin= need to add to functions?

also its still the same issue with not getting the id/authpin passed to the function activateAccount($userId, $authPin){

print("$userid and authpin") displays nothing still

legendary
Activity: 980
Merit: 1003
I'm not just any shaman, I'm a Sha256man
error in register.php line 67

not getting userid and authpin, also
$message."\n
"."http://$serverAddress/activateAccount.php?authPin=$authPin&userId=$userId";

$message = ."\n
"."http://$serverAddress/activateAccount.php?authPin=$authPin&userId=$userId";

?

and emails still isnt working via link in email still goto add

$userId = $_GET[userId];
$authPin = $_GET[authPin];

before
 $userId = $_GET[userId];
$authPin = $_GET[authPin];

   $activateSuccess = activateAccount($userId, $authPin);

authpin is not being set on signup aswell.
I tested the activateAccount.php and it successfully activated however it was simulated since neither will my localhost mail and my VPS send mail with php at the moment. If you have working mail please confirm that my fixes are fixed while I get setup correctly. You can get the updated version by following the download link in my original post
member
Activity: 61
Merit: 10
error in register.php line 67

not getting userid and authpin, also
$message."\n
"."http://$serverAddress/activateAccount.php?authPin=$authPin&userId=$userId";

$message = ."\n
"."http://$serverAddress/activateAccount.php?authPin=$authPin&userId=$userId";

?

and emails still isnt working via link in email still goto add

$userId = $_GET[userId];
$authPin = $_GET[authPin];

before
 $userId = $_GET[userId];
$authPin = $_GET[authPin];

   $activateSuccess = activateAccount($userId, $authPin);

authpin is not being set on signup aswell.
legendary
Activity: 980
Merit: 1003
I'm not just any shaman, I'm a Sha256man
v3 is very very very broken with the current code for download.

I have spent the past 3 hours going through and fixing all I can so far, there is still more to fix...

Could you elaborate on what features you had to fix?
Pages:
Jump to: