coin wallet not need be synchronized to my script will work for you
your test showed the getinfo I see when I type netcoind getinfo
coin wallet (netcoind) may be in the directory as compiled or upload it to the root folder
To replace wallet.dat file, you need to stop the coin wallet (netcoind)
I did stop the wallet before maing any changes, but it still did very weird things LOL I even stopped and rebooted VPS and still same problems But like I said it is very OK no problems
I just moved the coins out of the old wallet and threw it away since I have to resync anyways
In that case, it must also work getbalance, getnewaddress, etc.
Your script should work too.
Yes, That is good news that your script worked for him!
regarding $driver_login that is a variable. I don't believe there is a file named that.
Can you check the coind logs on the coind server to see if it gives any error message?
I am not sure where to find that, I looked at the db.log and debug.log and there was nothing in them at all. is that what you were talking about??
well At least now I do know its not y communications its something wrong inside the code. I just can not find it, I do know I can force ti to get thru the installation is I tell it to accept all variables as true but once the site loads you can not deposit coins
it still is not connecting to the wallet
what i mean is take this code
$this->debug && $this->debug.='***** Server response *****'."\n".$response.'***** End of server response *****'."\n";
$response = json_decode($response,true);
} else {
throw new Exception('Unable to connect to '.$this->url);
}
if ($this->debug) {
echo nl2br($debug);
}
if (!$this->notification) {
if ($response['id'] != $currentId)
{
throw new Exception('Incorrect response id (request id: '.$currentId.', response id: '.$response['id'].')');
}if (!is_null($response['error']))
{
throw new Exception('Request error: '.$response['error']);
}return $response['result'];
} else {
return true;
and make it say
$this->debug && $this->debug.='***** Server response *****'."\n".$response.'***** End of server response *****'."\n";
$response = json_decode($response,true);
} else {
throw new Exception('Unable to connect to '.$this->url);
}
if ($this->debug) {
echo nl2br($debug);
}
if (!$this->notification) {
if ($response['id'] != $currentId)
return true;if (!is_null($response['error']))
return true;return $response['result'];
} else {
return true;
it will get thru the installation but the wallet still wont work
so what that tells me is it is a code that is present both during the installation and used after the installation.
but so far the only one I have seen is the driver_test.php which is the exact same file as the wallet_driver.php in another folder. since you are supposed to delete the install file after installation I decided to look for matching files elesewhere in the directories.