Bitcoin Forum
June 25, 2024, 04:16:55 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 [136] 137 138 139 140 141 142 143 144 145 146 »
2701  Bitcoin / Bitcoin Technical Support / Re: Pushpool - Tech Support | Web design donation pot: 5.15 BTC on: June 13, 2011, 10:13:33 PM
can anyone tell me how to use blkmon? What port should I use? (i'm using server.json from 1st page) How can I sure that long polling is active and working properly? Coz I have abot 4% stale blocks

I know this doesn't really help now but I'll be posting up a blkmond part of the tutorial soon, I haven't looked it my self but from what i read they said you open it up and configure the variables to your needs and then you run it. it might have a help feature if you try running blkmond --help
Thanks Stay Tuned!
2702  Bitcoin / Project Development / Re: [BOUNTY] Open Source pooled mining platform with web interface on: June 13, 2011, 09:03:56 PM
I was going to wait till friday but what the heck I'll just get it out of the way.
Version 3.5 will be released sometime today with API and internationalization support
2703  Economy / Trading Discussion / Re: Withdraw your mtgoxUSD to PayPal, NEGATIVE fee (you get paid +1%) on: June 13, 2011, 08:48:03 PM
+1
 I really needed money in my account and Dwolla was taking forever to approve.
Freespirit deposited a full $70 in my account really quick!
Thanks mate!
2704  Bitcoin / Bitcoin Technical Support / Re: Pushpool - Tech Support | Web design donation pot: 4.15 BTC on: June 13, 2011, 05:07:33 AM
the pin cannot start with 0. if you try it throws invalid pin. probably because whatever command php uses to determine the length cuts leading zeros.
bug just cost me a pool worker :-(

in register.php (onyl one i looked at) look for this section
Code:
$authPin        = (int) $_POST["authPin"];

change to:
Code:
$authPin        = (string) $_POST["authPin"];

look for:
Code:
 //valid date authpin is valid

change the block under it to read:
Code:
//valid date authpin is valid
                        if(strlen($authPin) >= 4){
                                if(!is_numeric($authPin)){
                                        $validRegister = 0;
                                        $returnError .= " | Not a valid authpin";
                                }
                        }else{
                                $validRegister = 0;
                                $returnError .= " | Authorization pin number is not valid";
                        }


verified myself this time.  Roll Eyes


I think I just realised you are either using a really old version or you downloaded a custom version of my script. Please try the updated register.php file and get back to me Smiley
2705  Bitcoin / Bitcoin Technical Support / Re: Pushpool - Tech Support | Web design donation pot: 4.15 BTC on: June 13, 2011, 04:42:39 AM
I'm sorry but we are all victims of misinterpretation and it is best to realise that in order to have good tech support is to keep the support going. I'm not blaming anyone It just helps if we keep it this way in this thread. Thanks Cheesy
2706  Bitcoin / Bitcoin Technical Support / Re: sending wrong sum to mtgox account on: June 13, 2011, 04:39:36 AM
Cool mark your thread as Resolved, Thanks mate!
2707  Bitcoin / Bitcoin Technical Support / Re: sending wrong sum to mtgox account on: June 13, 2011, 04:34:33 AM
I would defiantly email their support, generally from my experience they will accept "Up to" the amount specified. I could be tottally wrong tho, just email MtGox they get back to you in about a day
2708  Other / Beginners & Help / Re: Newbie restrictions (Please discuss forum policy here.) on: June 12, 2011, 09:57:04 AM
this means I have to post 50+ unnecessary posts to talk about something I need to say...
I totally agree mate, this 50post thing is rediculas, and Im not a n00b
2709  Bitcoin / Bitcoin Technical Support / Re: Pushpool - Tech Support | Web design donation pot: 4.15 BTC on: June 12, 2011, 09:54:38 AM
the pin cannot start with 0. if you try it throws invalid pin. probably because whatever command php uses to determine the length cuts leading zeros.

Thanks for the bug report ill have that fix uploaded very soon. On a features note im still on schedule i just got my 6990 so trying to ge that running so i can get back to work on the features like worker graphs, blog updates editor, and i still have to test out a potential bug in the blockfound page.

Thanks for everyone patience in this down time
don't use the patch i typed up there it doesn't work.
use this patchfile
Code:
55c55
< $authPin = (int) $_POST["authPin"];
---
> $authPin = (string) $_POST["authPin"];
89c89
< if(!is_int($authPin)){
---
> if(!is_numeric($authPin)){

 Sad Sad Sad
pushpulld isn't updating anything in the mysql database, such as shares, active column in the pool_worker table, hashrate, etc. I haven't gone through everything but as far as i can tell it's not doing any updates of the tables. Any way to debug this?

I have a question for you, where are you getting your hashrates for you tend to mention this alot, Im so confused
2710  Other / Beginners & Help / Re: Did you hear about this? on: June 12, 2011, 05:50:23 AM
Judging by the story, he probably didn't have much of a brain to damage anyway. I mean, how do you sleep in a room that's sweltering hot? To the point of suffering heat stroke?  Huh

It's probably not true.
I agree, I bet he did get confused and felt sick and was probubly on the brink of heat stroke. It'st just a story to let other people know that its not a good idea to this this sort of setup
2711  Other / Beginners & Help / Re: Newbie restrictions (Please discuss forum policy here.) on: June 12, 2011, 05:48:41 AM
I can understand that bitcoins are getting popular and there are better things to do then mod the forums all day, However if you don't like the rules you do have the right to start your own forums for bitcoin. I will be doing the same, I'm creating an official website for my Mining Farm web front-end where mining pool operators and noobs can come and chat about everything bitcoin with out restrictions, I'll keep you guys posted when the site is up.
2712  Bitcoin / Bitcoin Technical Support / Re: Pushpool - Tech Support | Web design donation pot: 4.15 BTC on: June 12, 2011, 02:35:01 AM
the pin cannot start with 0. if you try it throws invalid pin. probably because whatever command php uses to determine the length cuts leading zeros.
bug just cost me a pool worker :-(

in register.php (onyl one i looked at) look for this section

 //valid date authpin is valid
                        if($authPin > 9999){
                                if(!is_int($authPin)){
                                        $validRegister = 0;
                                        $returnError .= " | Not a valid authpin";
                                }
                        }else{
                                $validRegister = 0;
                                $returnError .= " | Authorization pin number is not valid";
                        }

change the strlen($authpin) >=4 to what i put there so it looks just like that.

In lieu, another suggestion was strlen(('x' + $authpin) -1)

Thanks for the bug report ill have that fix uploaded very soon. On a features note im still on schedule i just got my 6990 so trying to ge that running so i can get back to work on the features like worker graphs, blog updates editor, and i still have to test out a potential bug in the blockfound page.

Thanks for everyone patience in this down time
2713  Bitcoin / Bitcoin Technical Support / Re: PSU-Power Supply questions on: June 11, 2011, 03:45:15 PM
You just have to make sure you have enough rails to power each card, that's all I'd be worried about, unfortunately I purchased a PSU with only two 6+2(8pin) pin power connectors and I can only fit two cards, now i gotta go out and buy another one.
2714  Bitcoin / Bitcoin Technical Support / Re: Pushpool - Tech Support | Web design donation pot: 4.15 BTC on: June 11, 2011, 03:43:27 PM
It's recommended to save all the shares without deleting them from the main table? Because my pool will be public and the number of shares in the table could be very big. For now I'm storing into an another table the number of shares per round of each worker in a table and deleting all the shares in the main table. Am I doing it wrong?

Yes this is how MiningFarm#2 works, I found it efficient to have a current round shares table, and when the round is over move all the shares to a history of shares table. Upon transferring to the history MF2 splits up the profit. You should check out my code in the cronjob folder a bunch of little tid bits like that
Mining Farm #2: http://forum.bitcoin.org/index.php?topic=10617.0
2715  Bitcoin / Bitcoin Technical Support / Re: Pushpool - Tech Support on: June 11, 2011, 08:11:36 AM
My installation of Pushpool seems to be falling down at the installation of Libmemcached..

Anyone know for why I get the following errors when running "make install" ?



I have tried both 0.48 and 0.49. Both give the same errors Sad

Of course, when I try to install Pushpool, it complains that Libmemcached is not installed.

Ubuntu 11.04 (64) being used.

Make sure you have all the pre requisites for libmemcached. Ill post up a link to a list when i have more time
2716  Bitcoin / Bitcoin Technical Support / Re: Pushpool - Tech Support on: June 11, 2011, 07:36:48 AM
upstream_result = 'Y' ===> you found a block, NULL ===> wait moar
Shocked Learn something new every day
Are you serious ?
You really didn't know that ?

If you were just being sarcastic then sorry Smiley
If you weren't you should consider using it to properly monitor generated blocks.

Are you just polling bitcoind to check for new blocks from time to time ?
Its a little more complex then that but its not as practical. Then again when i think about it even if i did do it this way id still require all the checks and updates i have in place either way.
2717  Bitcoin / Bitcoin Technical Support / Re: Radeon Diamond 6990 dose'nt load at boot but windows does? on: June 11, 2011, 06:47:43 AM
Alright, so i upgraded the psu to a 1000watts and plugged in the 6990.
Windows will boot so But it only boots with the on board graphics card.
I try to switch to digital and it switchs back analog and i unplugged the analog and it will say no signal.
Windows at first reported Video controller so i installed the drivers, i rebooted.
It booted up to on board video card  again. Again it reports no signal unpkugging the analog cable it should switch to digital(i tested this with another computer with the same  monitor).
Windows at this time reports two 6990 displays in the video display options. Along with the onboard video card.the wierd thing is that i disabled the onboard video card and windows 7 reports that it is disabled although it still uses the onboard.

UPDATE: looks like the problem was my monitor, the Digital cable line was broken, i tried with a different monitor and it detected it is right away. This was after I uninstalled the onboard card instead of just setting to disable so it was probably a number of things
2718  Bitcoin / Project Development / Re: [v3.2.9] Mining Farm #2 | Web design Donation Pot: 4.15BTC on: June 10, 2011, 03:38:06 PM
I don't understand why you want a nice design. People are gonna change it anyway. I guess all the functions put together in a stupid design is better, people can change it then the way the want. Or do you aim at people without the dev-skills?

You are correct it's only a matter of time until users knowledgeable about just bitcoins will want to get into mining pool and won't have enough money hire a web designer them self s. So in the mean time why not have there mining pool look great until they mine enough BTC to hire a web designer. I'm trying to work with the designer best as possible to make the stylesheeting flexible as possible so when you guys want to put int your own style sheets you wont have to fuss with figuring out complicated tag structures. The web design it self will also be another way of branding the official website, i guess. Considering the offical website( comming soon) will have a market place for modules and merchendising,etc ,etc, etc I'm also hoping that this new design will show what you can do with my software in terms of design, something that will make you feel free when you do your "OWN" design and say , I can do this! and this, and on my page I'll put the login box over here, I just want it to be flexible and look good at the same time so it appeals to Devs & non-Devs alike
2719  Bitcoin / Bitcoin Technical Support / Re: Previously confirmed transactions now unconfirmed on: June 10, 2011, 09:12:35 AM
Maybe the downloaded blocks didn't carry with confirmed blocks? It will be fixed by the time you wake up  Grin Automagically....
2720  Bitcoin / Bitcoin Technical Support / Re: Pushpool - Tech Support on: June 10, 2011, 09:11:09 AM
upstream_result = 'Y' ===> you found a block, NULL ===> wait moar
Shocked Learn something new every day
Pages: « 1 ... 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 [136] 137 138 139 140 141 142 143 144 145 146 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!