Bitcoin Forum
May 14, 2024, 09:20:45 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 [8] 9 »
141  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Qora | 100% POS | Assets | Names | Voting | Automated Transactions on: April 07, 2015, 06:28:15 PM
win 8.1 give an error like that :


On my Windows10 it shows too.

Run as administrator helps. Probably this and the fact that ordinary users write to the folder with the programs is prohibited.


Right click the icon and run it as administrator and the problem is solved.
142  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Qora | 100% POS | Assets | Names | Voting | Automated Transactions on: April 07, 2015, 06:23:27 PM
Hi @skerberus;

 it has worked smoothly when i right click on qora wallet and choose run as an admin. it is working good now and sync.

I can confirm that things do work when you run it as administrator.

nice to hear! I will change the one-click-installer to require those privileges. Sorry for the inconvenience

Now that I see where it is saving data I see exactly why this is the case and really you should change where it saves the data to, otherwise only people with admin access will ever be able to run this.  As the Program Files (x86) folder on windows is more restrictive than most any other folder.  Had you saved the data like most clients in Users\Appdata\Roaming it would have worked flawlessly out of the box without needing admin permissions.

Good suggestion! I will look into this Smiley.

Just remember if you make that change you really should implement code to migrate the files on the hard drive for people who already have it installed and running. Wink

Well to do this there are also admin privileges required so to prevent further problems this will not be part of the bugfix-release. Of course you can move those folder manually if you want.

Yes but if you do it at install / upgrade time only, then it really shouldn't be a problem especially since it is already requiring permissions for the directory.
143  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CYP]Cypher[QUBIT][1MB][IEO +17 BTC RAISED - ESCROW][SITE][1 HOUR end IEO] on: April 07, 2015, 06:02:47 PM
I am ready to get this coin party started Cheesy
144  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Qora | 100% POS | Assets | Names | Voting | Automated Transactions on: April 07, 2015, 05:18:47 PM
Hi @skerberus;

 it has worked smoothly when i right click on qora wallet and choose run as an admin. it is working good now and sync.

I can confirm that things do work when you run it as administrator.

nice to hear! I will change the one-click-installer to require those privileges. Sorry for the inconvenience

Now that I see where it is saving data I see exactly why this is the case and really you should change where it saves the data to, otherwise only people with admin access will ever be able to run this.  As the Program Files (x86) folder on windows is more restrictive than most any other folder.  Had you saved the data like most clients in Users\Appdata\Roaming it would have worked flawlessly out of the box without needing admin permissions.

Good suggestion! I will look into this Smiley.

Just remember if you make that change you really should implement code to migrate the files on the hard drive for people who already have it installed and running. Wink
145  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Qora | 100% POS | Assets | Names | Voting | Automated Transactions on: April 07, 2015, 05:09:57 PM
Hi @skerberus;

 it has worked smoothly when i right click on qora wallet and choose run as an admin. it is working good now and sync.

I can confirm that things do work when you run it as administrator.

nice to hear! I will change the one-click-installer to require those privileges. Sorry for the inconvenience

Now that I see where it is saving data I see exactly why this is the case and really you should change where it saves the data to, otherwise only people with admin access will ever be able to run this.  As the Program Files (x86) folder on windows is more restrictive than most any other folder.  Had you saved the data like most clients in Users\Appdata\Roaming it would have worked flawlessly out of the box without needing admin permissions.
146  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Qora | 100% POS | Assets | Names | Voting | Automated Transactions on: April 07, 2015, 05:00:24 PM
Hi @skerberus;

 it has worked smoothly when i right click on qora wallet and choose run as an admin. it is working good now and sync.

I can confirm that things do work when you run it as administrator.
147  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Qora | 100% POS | Assets | Names | Voting | Automated Transactions on: April 07, 2015, 04:54:29 PM
win 8.1 give an error like that :



Thanks for bringing this to our attention. I assume that the installation itself went through without any error? Could you please check if you can run the application using the run.bat in the application folder?
If you run the shortcut with admin rights does the problem still exist?

Since thats the same error I have, I just tested run.bat and all the happens is it opens runs some stuff really fast and then closes.

We will add java8 to the *.bat soon. While we are investigating the issue, could you please try to create a runoneclick.bat file in the application folder containing
start "Qora" jre/bin/java.exe -Xmx512m -Djava.library.path=libs/native -jar Qora.jar
and then just double click it. This should hopefully work for all people that have problems with the windows one-click-installer.


All I noticed from doing that is that it ran then another cmd prompt style window opened for a second then everything was closed and nothing actually opened.
148  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Qora | 100% POS | Assets | Names | Voting | Automated Transactions on: April 07, 2015, 04:36:40 PM
win 8.1 give an error like that :



Thanks for bringing this to our attention. I assume that the installation itself went through without any error? Could you please check if you can run the application using the run.bat in the application folder?
If you run the shortcut with admin rights does the problem still exist?

Since thats the same error I have, I just tested run.bat and all the happens is it opens runs some stuff really fast and then closes.
149  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Qora | 100% POS | Assets | Names | Voting | Automated Transactions on: April 07, 2015, 03:53:22 PM
Windows wallet version on Windows 7 is a no go. Errors galore. Have anyone had luck with the Java version?

I can also confirm this is the case on windows 8.

Errors seem to relate to files and directories not existing that it expects to exist on run.
150  Bitcoin / Project Development / Best way to handle situations where you need to maintain separate balances on: April 06, 2015, 06:37:26 AM
Okay so here goes, assuming I build say a faucet and a mining pool, what would be the best way to maintain separate balances to prevent any crossover issues between the scripts and them touching coins they shouldn't.

I already know I could create an overlay that tracks the balances separately similar to how things work that have to maintain individual user balances, but I am wondering what other options there are besides running multiple copies of the daemon and duplicating the block chain data and what is the best way to handle this.  I have looked into importprivatekey and that doesn't even look remotely feasible since it will cause the wallet to be unavailable for a period of time due to the rescan not to mention the load overhead that would occur anytime access was needed to a wallet that wasn't currently active.

I have been thinking on this for quite some time, as well as doing a considerable amount of research trying to figure out the very best solution for this, and now I am curious to see what others have to say about this scenario, seeing as the more I plan out my project(s) the more I am starting to need additional wallets/unique balances.
151  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [Launched] CyberCoin [NoPremine][FairLaunch][Scrypt PoW/vPoS] on: April 01, 2015, 12:23:08 AM
I already hit the cc warning threshold on suprnova and had to do a manual cashout.  Thou that limit should probably be higher since I was only at 18.5k coins confirmed which is less than a single block currently.

Yup, i will be raising that but it is always better to have your coins withdrawn, especially for staking Wink

Yea I just hadn't setup an auto withdrawl amount yet Wink
152  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [Launched] CyberCoin [NoPremine][FairLaunch][Scrypt PoW/vPoS] on: March 31, 2015, 11:24:48 PM
I already hit the cc warning threshold on suprnova and had to do a manual cashout.  Thou that limit should probably be higher since I was only at 18.5k coins confirmed which is less than a single block currently.
153  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [Launch Today] CyberCoin [NoPremine][FairLaunch][Scrypt PoW/vPoS] on: March 31, 2015, 09:09:30 PM
Ooookay, Suprnova is up !

suprnova says unable to connect to wallet on pool stats page currently.

Hmm, should be ok now ??

Looks to be good now.
154  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [Launch Today] CyberCoin [NoPremine][FairLaunch][Scrypt PoW/vPoS] on: March 31, 2015, 09:05:46 PM
Ooookay, Suprnova is up !

suprnova says unable to connect to wallet on pool stats page currently.
155  Economy / Reputation / Re: bit2580 - Reputation Thread on: April 07, 2014, 05:11:09 AM
Liz02 (Scrypt 2.10 MH/s) has been down a while now.
156  Economy / Reputation / Re: ad3000 - Trust Thread on: April 06, 2014, 07:27:17 AM
Lease was extended to compensate for the downtime as well as the time when things weren't running stable in terms of speed.
157  Economy / Reputation / Re: ad3000 - Trust Thread on: April 05, 2014, 11:44:31 PM
ADANTS1 (SHA256 395.00 GH/s) has been down for around 2 hours now completely that i know of, looks closer to 3 hours based off both my pools stats and before that it was at times dipping down fairly substantially in speeds for prolonged periods of times due to something on the providers end as my pools were all rock solid during this period of time.  Rig is also still offline as of this posting.
158  Economy / Reputation / Re: EZ Hashing's trust thread on: April 02, 2014, 05:24:37 AM
Only a 40 minute extension when things were down for hours?
159  Economy / Reputation / Re: EZ Hashing's trust thread on: April 02, 2014, 12:26:57 AM
EZ5 (Scrypt 2.85 MH/s) offline and has been for a bit based on my stat tracking on the pools used, and is unresponsive/off on leaserig as well.
160  Economy / Reputation / Re: Belmining Reputation Thread on: March 31, 2014, 08:29:24 PM
Still haven't heard back basically wasted all my money.
Pages: « 1 2 3 4 5 6 7 [8] 9 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!