Do not mine on hashpower.co for now! If you are mining there, stop your miners and start solo-mining.
No wonder I haven't been getting payouts. As far as CPU mining goes, do I just do setgenerate true in the wallet console? Otherwise, could you guide me (and all the other M-Heads here) on Solo mining with the CPU miner?
In general, set up the MMXVI.conf file with this:
server=1
rpcallowip=127.0.0.1
rpcuser=Argon2rpc
rpcpassword=whatever-the-password-is
rpcport=12345
Then run the cpuminer program like this:
cpuminer -S -B -a argon2 -o
http://127.0.0.1:12345 -u Argon2rpc -p whatever-the-password-is -t3
The -S is optional (writes log output to syslog), the -B means run in the background (same as sticking an & at the end) and the -t3 is just how many threads to run (cores in processor to use). So you can use this instead:
cpuminer -a argon2 -o
http://127.0.0.1:12345 -u Argon2rpc -p whatever-the-password-is
That should get you in the ballpark at least.