Inaba
Legendary
Offline
Activity: 1260
Merit: 1000
|
|
October 25, 2013, 05:52:55 PM |
|
What changes have been made for ASICs? Changelog wasn't updated?
|
If you're searching these lines for a point, you've probably missed it. There was never anything there in the first place.
|
|
|
CrazyGuy
Legendary
Offline
Activity: 1973
Merit: 1007
|
|
October 25, 2013, 06:06:36 PM |
|
What changes have been made for ASICs? Changelog wasn't updated?
Support for "ASC" device type returned from cgminer API. I added it a couple months ago, pshep might have had to clean it up a bit.
|
ASICPuppy.net ASIC Mining Hardware and Accessories - Compac F in stock!
|
|
|
P_Shep
Legendary
Offline
Activity: 1795
Merit: 1208
This is not OK.
|
|
October 25, 2013, 06:13:37 PM |
|
What changes have been made for ASICs? Changelog wasn't updated?
Support for "ASC" device type returned from cgminer API. I added it a couple months ago, pshep might have had to clean it up a bit. Oh, I didn't even see the pull requests! I did it myself... could have saved my time! And they're almost identical!
|
|
|
|
CrazyGuy
Legendary
Offline
Activity: 1973
Merit: 1007
|
|
October 25, 2013, 06:28:59 PM |
|
What changes have been made for ASICs? Changelog wasn't updated?
Support for "ASC" device type returned from cgminer API. I added it a couple months ago, pshep might have had to clean it up a bit. Oh, I didn't even see the pull requests! I did it myself... could have saved my time! And they're almost identical! Whoops, should have sent you a message, sorry. Had to see my jally!
|
ASICPuppy.net ASIC Mining Hardware and Accessories - Compac F in stock!
|
|
|
roadsterreplica
Newbie
Offline
Activity: 44
Merit: 0
|
|
November 06, 2013, 01:14:54 AM |
|
Love the interface.
However, I spent the better part of an hour trying to get it up and running. Turns out that there was an extra comma in the table creation code causing it to block. Fixed it, hopefully no one else will run into that problem.
|
|
|
|
elpenguin
Newbie
Offline
Activity: 52
Merit: 0
|
|
November 06, 2013, 04:01:49 PM |
|
Same problem here, extra comma at the end of line 23 of configtbl.sql.php
|
|
|
|
P_Shep
Legendary
Offline
Activity: 1795
Merit: 1208
This is not OK.
|
|
November 06, 2013, 06:11:53 PM |
|
Sorry, fixed it.
|
|
|
|
capa
|
|
November 11, 2013, 10:35:06 AM |
|
Hi, i'm trying to get Anubis running on a BeagleBoneBlack using Debian os, my ultimate goal is to get it working on my KnC miner. I've used sqlite for the db edited the config.ini.php appropriately and made a db called Anubis_db in sqlite I'm stuck here FATAL: Cannot use Anubis_db ! SQLSTATE[HY000] [14] unable to open database file
should i just give up and switch to mysql?
|
|
|
|
P_Shep
Legendary
Offline
Activity: 1795
Merit: 1208
This is not OK.
|
|
November 11, 2013, 11:29:42 AM |
|
You don't need to create the DB manually, but yeah, you can use MySQL if it works better.
|
|
|
|
capa
|
|
November 11, 2013, 02:32:41 PM |
|
Thanks for your help P_Shep much appreciated. I hope to see Anubis running on my network soon!
|
|
|
|
2GOOD
|
|
December 07, 2013, 10:34:02 PM |
|
With the new version of cgminer 3.8.3 I get only zeroes:
|
|
|
|
kano
Legendary
Offline
Activity: 4620
Merit: 1851
Linux since 1997 RedHat 4
|
|
December 08, 2013, 01:15:29 PM |
|
With the new version of cgminer 3.8.3 I get only zeroes: You need 3.8.4 since I'd guess that anubis uses json (no idea why) and there was a bug in 3.8.3 that killed accepting json in the API Plain text works fine. I never use json in the API - I only added it in the original API when I wrote it as an after thought - only one of the people who donated for the API wanted json - and even he only asked for it at the very end after the code was done.
|
|
|
|
2GOOD
|
|
December 09, 2013, 02:17:02 AM |
|
With the new version of cgminer 3.8.3 I get only zeroes: You need 3.8.4 since I'd guess that anubis uses json (no idea why) and there was a bug in 3.8.3 that killed accepting json in the API Plain text works fine. I never use json in the API - I only added it in the original API when I wrote it as an after thought - only one of the people who donated for the API wanted json - and even he only asked for it at the very end after the code was done. That was it. Thanks for the fast reply
|
|
|
|
linked67
|
|
December 14, 2013, 12:24:38 PM |
|
Is the email used for something ?
|
|
|
|
P_Shep
Legendary
Offline
Activity: 1795
Merit: 1208
This is not OK.
|
|
December 15, 2013, 09:23:50 PM |
|
Is the email used for something ?
nope
|
|
|
|
Hej
Newbie
Offline
Activity: 6
Merit: 0
|
|
December 16, 2013, 10:37:46 PM |
|
I would be really happy if someone could help me solve this error: Undefined index: MHS 5shttps://i.imgur.com/Kc8cw8b.jpg
|
|
|
|
P_Shep
Legendary
Offline
Activity: 1795
Merit: 1208
This is not OK.
|
|
December 17, 2013, 05:09:32 PM |
|
Did you change the default 5-second averaging foe another duration?
The index for that moving average is labels based on that time. Ordinarily it's 'MHS 5s', but if you change that parameter, the name of the index label will change, i.e. to 'MHS 10s' etc. Anubis just looks for 'MHS 5s'. You can change to code pretty easily to suit your needs, just do a search/replace.
|
|
|
|
Hej
Newbie
Offline
Activity: 6
Merit: 0
|
|
December 17, 2013, 11:48:19 PM |
|
Did you change the default 5-second averaging foe another duration?
The index for that moving average is labels based on that time. Ordinarily it's 'MHS 5s', but if you change that parameter, the name of the index label will change, i.e. to 'MHS 10s' etc. Anubis just looks for 'MHS 5s'. You can change to code pretty easily to suit your needs, just do a search/replace.
I don't copy. I have tried to add the host with or without any values in the MH/s desired field, but I still get the same errors. I have also tried to remove all variables that has connection to the desired mhs value, but it won't work...
|
|
|
|
P_Shep
Legendary
Offline
Activity: 1795
Merit: 1208
This is not OK.
|
|
December 18, 2013, 04:18:34 PM |
|
an option in cgminer is to change the averaging time. by default that's 5 seconds. Anything else and anubis would show an error like that.
One thing I'm confused about is that it says error in index.php on line 364. Index.php only goes up to 132.
|
|
|
|
Ninetoe
Newbie
Offline
Activity: 45
Merit: 0
|
|
December 19, 2013, 07:17:21 PM |
|
set up standard wampserver for testing and mysql. but getting these messages whenever i click a host http://imgur.com/6h1cGfm,gLYbbpYphp settings have been set and other tips ive seen in this thread.
|
|
|
|
|