Pages:
Author

Topic: [ANN] FIMK: 2.5G POS, extra block rewards, messaging, asset colors, p2p shopping - page 17. (Read 184334 times)

sr. member
Activity: 421
Merit: 250
HEAT Ledger
I am having an issue with the 0.4.0 server which I installed. I modified the config file to enable to API.

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.
sr. member
Activity: 421
Merit: 250
HEAT Ledger
When I'm trying to start forging and enter my passphrase I get the error message
"Unknown account".  Sad
What does it mean?  



That error is thrown here in the source code and can mean two things.

1. That is a brand new account without a public key (those can't forge)
2. You have not correctly configured the allowedToForge property in your config (see below)

In order to set allowedToForge either create a file called nxt.properties or edit the existing nxt-default.properties.
Set it either to * or provide some accounts that can forge on your server (delimited with ; symbols).

# For public nodes, only allow these accounts to forge
# Values can be a ; delimited list of accounts, an empty value (for no forging
# allowed) or a * to allow all accounts to forge.
nxt.allowedToForge=*


Edit: And option 3 might be the blockchain has not finished downloading (which leads to option 1)

My config is right, i have forged also before,but now i get the same error. The blockchain has been fully downloaded and the fimk server started.

I have not downloaded or started the nxt server.

Any ideas?

When I look at server window that's what I see:


By the way, there is no peers at all too...
Sad

Where is the problem?

Set nxt.allowedBotHosts to *
See http://forum.fimk.fi/index.php?topic=554.msg3870#msg3870
sr. member
Activity: 421
Merit: 250
HEAT Ledger
When I'm trying to start forging and enter my passphrase I get the error message
"Unknown account".  Sad
What does it mean?  



That error is thrown here in the source code and can mean two things.

1. That is a brand new account without a public key (those can't forge)
2. You have not correctly configured the allowedToForge property in your config (see below)

In order to set allowedToForge either create a file called nxt.properties or edit the existing nxt-default.properties.
Set it either to * or provide some accounts that can forge on your server (delimited with ; symbols).

# For public nodes, only allow these accounts to forge
# Values can be a ; delimited list of accounts, an empty value (for no forging
# allowed) or a * to allow all accounts to forge.
nxt.allowedToForge=*


Edit: And option 3 might be the blockchain has not finished downloading (which leads to option 1)

My config is right, i have forged also before,but now i get the same error. The blockchain has been fully downloaded and the fimk server started.

I have not downloaded or started the nxt server.

Any ideas?

Not really no, I need some more info like for instance what it is you did that lead to this dialog.
sr. member
Activity: 421
Merit: 250
HEAT Ledger
Also, can I point mofo wallet to my own server as opposed to having mofo wallet run/host the server?

Not yet, but that is how we envision future usage. We need to create the UI for that still.
sr. member
Activity: 421
Merit: 250
HEAT Ledger
One other thing about Mofo... when I have my account in there and it shows "Activity" it seems to show my first few transactions from July 2014... while the bread crumb implies it is showing "latest".

And, show more does nothing.

When I am running the Fim server, is the bottom right corner supposed to show the block number? It just shows 0 for me.

Please PM me your account ID if you can so I can look into it. It's all brand spanking new code both on the client and the server so your account could be an edge case that I would like to look deeper into.

Yes. It's supposed to show the block height as well as a progress bar.
sr. member
Activity: 421
Merit: 250
HEAT Ledger
MY server console also keeps showing this:

WebSocketSession[websocket=JettyListenerEventDriver[nxt.http.websocket.MofoWebSocketAdapter],behavior=SERVER,connection=WebSocketServerConnection@6a1023{IDLE}{f=Flusher[queueSize=0,aggregateSize=0,failure=null],g=Generator[SERVER,validating],p=Parser@1499d55[ExtensionStack,s=START,c=0,len=0,f=null,p=WebSocketPolicy@1f87087[behavior=SERVER,maxTextMessageSize=65536,maxTextMessageBufferSize=32768,maxBinaryMessageSize=65536,maxBinaryMessageBufferSize=32768,asyncWriteTimeout=60000,idleTimeout=300000,inputBufferSize=4096]]},remote=WebSocketRemoteEndpoint@1a3d501[batching=true],incoming=JettyListenerEventDriver[nxt.http.websocket.MofoWebSocketAdapter],outgoing=ExtensionStack[queueSize=0,extensions=[],incoming=org.eclipse.jetty.websocket.common.WebSocketSession,outgoing=org.eclipse.jetty.websocket.server.WebSocketServerConnection]]
2015-03-22 14:56:21 FINE: Disconnecting because of not-allowed bot host
2015-03-22 14:56:21 FINE: Socket Closed: [1006] Harsh disconnect

HELP!?


Try this..
http://forum.fimk.fi/index.php?topic=554.msg3870#msg3870
legendary
Activity: 1736
Merit: 1001
MY server console also keeps showing this:

WebSocketSession[websocket=JettyListenerEventDriver[nxt.http.websocket.MofoWebSocketAdapter],behavior=SERVER,connection=WebSocketServerConnection@6a1023{IDLE}{f=Flusher[queueSize=0,aggregateSize=0,failure=null],g=Generator[SERVER,validating],p=Parser@1499d55[ExtensionStack,s=START,c=0,len=0,f=null,p=WebSocketPolicy@1f87087[behavior=SERVER,maxTextMessageSize=65536,maxTextMessageBufferSize=32768,maxBinaryMessageSize=65536,maxBinaryMessageBufferSize=32768,asyncWriteTimeout=60000,idleTimeout=300000,inputBufferSize=4096]]},remote=WebSocketRemoteEndpoint@1a3d501[batching=true],incoming=JettyListenerEventDriver[nxt.http.websocket.MofoWebSocketAdapter],outgoing=ExtensionStack[queueSize=0,extensions=[],incoming=org.eclipse.jetty.websocket.common.WebSocketSession,outgoing=org.eclipse.jetty.websocket.server.WebSocketServerConnection]]
2015-03-22 14:56:21 FINE: Disconnecting because of not-allowed bot host
2015-03-22 14:56:21 FINE: Socket Closed: [1006] Harsh disconnect

HELP!?
legendary
Activity: 1736
Merit: 1001
When I'm trying to start forging and enter my passphrase I get the error message
"Unknown account".  Sad
What does it mean?  



That error is thrown here in the source code and can mean two things.

1. That is a brand new account without a public key (those can't forge)
2. You have not correctly configured the allowedToForge property in your config (see below)

In order to set allowedToForge either create a file called nxt.properties or edit the existing nxt-default.properties.
Set it either to * or provide some accounts that can forge on your server (delimited with ; symbols).

# For public nodes, only allow these accounts to forge
# Values can be a ; delimited list of accounts, an empty value (for no forging
# allowed) or a * to allow all accounts to forge.
nxt.allowedToForge=*


Edit: And option 3 might be the blockchain has not finished downloading (which leads to option 1)

My config is right, i have forged also before,but now i get the same error. The blockchain has been fully downloaded and the fimk server started.

I have not downloaded or started the nxt server.

Any ideas?

I'm seeing the same problem. I think the wallet things no blocks are downloaded, since it shows a 0 for local blocks... although I used the db files from my previous version which was up to date.

Somethings not right.

Also, when I use the 64-bit version, the server doesn't even run.
legendary
Activity: 1736
Merit: 1001
One other thing about Mofo... when I have my account in there and it shows "Activity" it seems to show my first few transactions from July 2014... while the bread crumb implies it is showing "latest".

And, show more does nothing.


When I am running the Fim server, is the bottom right corner supposed to show the block number? It just shows 0 for me.
legendary
Activity: 1736
Merit: 1001
Also, can I point mofo wallet to my own server as opposed to having mofo wallet run/host the server?
legendary
Activity: 1736
Merit: 1001
I am having an issue with the 0.4.0 server which I installed. I modified the config file to enable to API.

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?
newbie
Activity: 11
Merit: 0
When I'm trying to start forging and enter my passphrase I get the error message
"Unknown account".  Sad
What does it mean?  

http://c2n.me/3eBnHnm.png

That error is thrown here in the source code and can mean two things.

1. That is a brand new account without a public key (those can't forge)
2. You have not correctly configured the allowedToForge property in your config (see below)

In order to set allowedToForge either create a file called nxt.properties or edit the existing nxt-default.properties.
Set it either to * or provide some accounts that can forge on your server (delimited with ; symbols).

# For public nodes, only allow these accounts to forge
# Values can be a ; delimited list of accounts, an empty value (for no forging
# allowed) or a * to allow all accounts to forge.
nxt.allowedToForge=*


Edit: And option 3 might be the blockchain has not finished downloading (which leads to option 1)

My config is right, i have forged also before,but now i get the same error. The blockchain has been fully downloaded and the fimk server started.

I have not downloaded or started the nxt server.

Any ideas?

When I look at server window that's what I see:
http://c2n.me/3eF4YGc.png

By the way, there is no peers at all too...
Sad

Where is the problem?
legendary
Activity: 1708
Merit: 1000
Reality is stranger than fiction
When I'm trying to start forging and enter my passphrase I get the error message
"Unknown account".  Sad
What does it mean?  



That error is thrown here in the source code and can mean two things.

1. That is a brand new account without a public key (those can't forge)
2. You have not correctly configured the allowedToForge property in your config (see below)

In order to set allowedToForge either create a file called nxt.properties or edit the existing nxt-default.properties.
Set it either to * or provide some accounts that can forge on your server (delimited with ; symbols).

# For public nodes, only allow these accounts to forge
# Values can be a ; delimited list of accounts, an empty value (for no forging
# allowed) or a * to allow all accounts to forge.
nxt.allowedToForge=*


Edit: And option 3 might be the blockchain has not finished downloading (which leads to option 1)

My config is right, i have forged also before,but now i get the same error. The blockchain has been fully downloaded and the fimk server started.

I have not downloaded or started the nxt server.

Any ideas?
legendary
Activity: 1596
Merit: 1005
https://cryptodatabase.net


Your coin and it's information has now been added to Crypto Database. It is listed under the F category found here.

If any information is missing or inaccurate please let me know via private message or by posting on my thread found here.

Regards,
Crypto Database
http://cryptodatabase.net
sr. member
Activity: 421
Merit: 250
HEAT Ledger
I still have my FIM and prefer to have more markets to sell if you want, but development continues Mofowallet I find that working hard and who knows where we can go.
Courage, FIMKripto and Mofowallet.

??

Google translate might have messed that one up.

Am I correct that this was meant in a positive way?

Yes, is positive

This is negative: I still have my FIM and prefer to have more markets to sell if you want

But, this is very positive: but development continues Mofowallet I find that working hard and who knows where we can go.

if work continues is always positive. There are many cryptos that appear and disappear at 3 months.

Great  Grin

About the exchanges you really should talk to Eliphaz.

When it comes to mofowallet (soon to be renamed) we are just getting started..
hero member
Activity: 822
Merit: 531
I still have my FIM and prefer to have more markets to sell if you want, but development continues Mofowallet I find that working hard and who knows where we can go.
Courage, FIMKripto and Mofowallet.

??

Google translate might have messed that one up.

Am I correct that this was meant in a positive way?

Yes, is positive

This is negative: I still have my FIM and prefer to have more markets to sell if you want

But, this is very positive: but development continues Mofowallet I find that working hard and who knows where we can go.

if work continues is always positive. There are many cryptos that appear and disappear at 3 months.

Indeed, I write in Spanish and I use google translator. I see that the result is not good sometimes. Sorry.


sr. member
Activity: 421
Merit: 250
HEAT Ledger
I still have my FIM and prefer to have more markets to sell if you want, but development continues Mofowallet I find that working hard and who knows where we can go.
Courage, FIMKripto and Mofowallet.

??

Google translate might have messed that one up.

Am I correct that this was meant in a positive way?
hero member
Activity: 822
Merit: 531
I still have my FIM and prefer to have more markets to sell if you want, but development continues Mofowallet I find that working hard and who knows where we can go.

Courage, FIMKripto and Mofowallet.
sr. member
Activity: 421
Merit: 250
HEAT Ledger
Congratulations!

This version is really good.

I even see that it gives more information than the official client of NXT. I her have used little, but for example in the asset a column appears with the nº of confirmations of every order. Also the graphs are seen very well.

It must have a lot of work behind. Congratulations again.

You are correct that it shows much more information than the standard NXT client could ever show.

What I personally find a nice feature is that asset orders are shown even when they are unconfirmed and because of the websockets this happens instantly and the moment someone enters his order.

We used to think the asset exchange was very limited since you only see trades appear once every block, now it seems it's actually instant even faster than most 'real' exchanges.

- there is some work to be done still in the asset department -



hero member
Activity: 822
Merit: 531
Congratulations!

This version is really good.

I even see that it gives more information than the official client of NXT. I her have used little, but for example in the asset a column appears with the nº of confirmations of every order. Also the graphs are seen very well.

It must have a lot of work behind. Congratulations again.
Pages:
Jump to: