Tim Garrity

Results 93 comments of Tim Garrity

Change line 77 in Applications/core/My_Controller.php from: $redirect_url = empty($this->mModule) ? 'error' : $this->mModule.'/error'; to $redirect_url = empty($this->mModule) ? 'myerror' : $this->mModule.'/myerror'; Rename Applications/controllers/Error.php to Applications/controllers/Myerror.php Rename the class in Applications/controllers/Myerror.php...

Definitely: Here's a solution, rename the error controller to syserr or "NotFound" as you suggested: application/config/routes.php: ``` php $route['error/'] = 'syserr/'; ```

@mert4k would it be beneficial to just keep this issue open and then reference it when the documentation or GK project gets posted and just add a commit to ref...

Issue not present for me with PHP7.1

Run npm start after updating settings.json, and then you can run the market sync.

set this ``` "exchange": "crex", ``` to ``` "exchange": "btc", ``` in your settings.json. https://github.com/iquidus/explorer/blob/c6813065cb1fed9d7d55fbc572fef684d516803e/lib/markets/crex.js#L7 The api is calling for "BTAD-CREX" in your current setting which is not a ticker....

Guessing he is upgrading from an older version, his user/pass is probably not updated to username/password.

@TheHolyRoger quick and dirty would be: ``` const Client = require('bitcoin-core'); if(settings.wallet.password || settings.wallet.username){ }else{ settings.wallet.password = settings.wallet.pass; settings.wallet.username = settings.wallet.user; } const client = new Client(settings.wallet); ``` in explorer.js...

Perfect, thanks @DigitalCoin1 for the update. Reopening the issue and will rename it for the fact we should have error-handling for this required upgrade (it will likely cause issues for...

@sundanny26 create a new issue next time so that you can provide your own settings. I've created #475 for you in the meantime. Please show a screenshot/output of your settings.json...