Have verified and confirmed the correct ports. ANY ideas?
--bitcoind-address 192.168.1.1 --bitcoind-rpc-port 12123 --bitcoind-p2p-port 12124
2013-07-06 20:29:06.548000 p2pool (version 11.4)
2013-07-06 20:29:06.548000
2013-07-06 20:29:06.548000 Testing bitcoind RPC connection to 'http://192.168.1.1:12123/' with username 'xxx'...
2013-07-06 20:29:06.548000 > Check failed! Make sure that you're connected to the right bitcoind with --bitcoind-rpc-port!
bitcoin/networks.py:
P2P_PORT=12124,
RPC_PORT=12123,
RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
'craftcoinaddress' in (yield bitcoind.rpc_help()) and
not (yield bitcoind.rpc_getinfo())['testnet']
--bitcoind-address should be pointing at the IP that craftcoin is running on, which would be 127.0.0.1 if you're running it from the same system. 192.168.1.1 is almost always a router, so I doubt that's where you meant to connect to.