The server is running and I browse to localhost:7886 and see the UI.
I get the UI and select Add Account. Use Existing, put in my pass phrase and press "Save".
The dashboard is empty, it shows no activity for my account. I also see a lot of errors in the console:
(I obfuscated my FIM account below.)
index.html:1 GET http://localhost:7886/images/beep.wav 404 (Not Found)
www-embed-player.js:165 GET chrome-extension://boadgeojelhgndaghljhdicfkmllpafd/cast_sender.js net::ERR_FAILED
www-embed-player.js:165 GET chrome-extension://dliochdbjfkdbacpmhlcpmleaejidimm/cast_sender.js net::ERR_FAILED
www-embed-player.js:165 GET chrome-extension://hfaagokkkhdbgiakmmlclaapfelnkoah/cast_sender.js net::ERR_FAILED
www-embed-player.js:165 GET chrome-extension://fmfcbgogabcbclcofgocippekhfcmgfj/cast_sender.js net::ERR_FAILED
www-embed-player.js:165 GET chrome-extension://enhhojjnijigcajfphajepfemndkmdlo/cast_sender.js net::ERR_FAILED
scripts.2473a96e.js:5 GET https://dgex.com/faucet.cgi?status
index.html:1 XMLHttpRequest cannot load https://dgex.com/faucet.cgi?status. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:7886' is therefore not allowed access. The response had HTTP status code 404.
onloadwff.js:86 Not filling because tld mismatch between https://www.youtube.com/embed/aGWCJ_XWauQ?autoplay=0&showinfo=0&controls=0&wmode=transparent&loop=1 and localhost
scripts.2473a96e.js:31 subscribe removedUnConfirmedTransactions-FIM-XXXXX
scripts.2473a96e.js:31 subscribe addedUnConfirmedTransactions-FIM-XXXXX
scripts.2473a96e.js:31 subscribe addedConfirmedTransactions-FIM-XXXXX
scripts.2473a96e.js:31 subscribe blockPoppedNew
scripts.2473a96e.js:31 subscribe blockPushedNew
scripts.2473a96e.js:6 TypeError: Cannot read property 'send' of null
at scripts.2473a96e.js:31
at i (scripts.2473a96e.js:6)
at scripts.2473a96e.js:6
at l.$get.l.$eval (scripts.2473a96e.js:6)
at l.$get.l.$digest (scripts.2473a96e.js:6)
at scripts.2473a96e.js:6
at g (scripts.2473a96e.js:5)
at scripts.2473a96e.js:5
I'm pretty sure the blockchain is fully downloaded at this point.
Any ideas?
Mmmm.. lots of info there. Looking pretty suspicious even first sight so lets go over the log first.
> index.html:1 GET http://localhost:7886/images/beep.wav 404 (Not Found)
The beep.wav is the sound played when you send a transaction, not sure why it s not found. Have to look into that.
> www-embed-player.js:165 GET chrome-extension://boadgeojelhgndaghljhdicfkmllpafd/cast_sender.js net::ERR_FAILED
The current slimmed down client in the server pacakge I have to admit was kindof a rush job. The www-embed-player.js is an artifact of the 'standard' client version which can be seen here https://fimkrypto.github.io/mofo/launch.html#/start I guess i did not properly took out the FIMKrypto youtube clip.
> index.html:1 XMLHttpRequest cannot load https://dgex.com/faucet.cgi?status
Sort of self explanatory. We offer users a faucet to fund their new account. The status option to the faucet.cgi script simply tells us if the faucet is up and running.
> onloadwff.js:86 Not filling because tld mismatch between https://www.youtube.com/embed/aGWCJ_XWauQ?
Seems to be an artifact of the not properly removed youtube clip
> scripts.2473a96e.js:6 TypeError: Cannot read property 'send' of null
Not sure what that is about. As I said the mofo version shipped with the server version was somewhat rushed.
-----------------------------------------
The main difference between desktop and server client package is that the server package has a client that only connects to your localhost and never to our FIMK and NXT instances running in the cloud. Why you experience the troubles you do is not clear to me at this point.
Hopefully during the week I'll be able to direct some more attention to the client shipped in the server package.
I'm thinking of making a more formal solution for building the client for the various platforms it lives on, with special attention for the server package.
Until that I don't see how to solve the issue you are experiencing.