Title: Problem with Monero (RPC) no connect to my script. Post by: hackore55 on March 14, 2024, 04:44:51 PM SOLVED
Title: Re: Problem with Monero (RPC) no connect to my script. Post by: BlackHatCoiner on March 14, 2024, 05:11:09 PM Hello. First of all move this thread to the altcoin section. There's a "move topic (https://bitcointalk.org/index.php?action=movetopic;topic=5488927.0)" down in this page. Select "Alternative cryptocurrencies - Altcoin Discussion".
Could you send me the marketplace script in private so I can try to debug it? I do have a Monero node running, and maybe I can figure out what's wrong, but without this specific web module, I have no idea what might be the fault. It could even be the PHP version. Alternatively, you can try to contact them (https://laramonero.com/contact). Title: Re: Problem with Monero (RPC) no connect to my script. Post by: hackore55 on March 14, 2024, 05:47:03 PM Hello. First of all move this thread to the altcoin section. There's a "move topic (https://bitcointalk.org/index.php?action=movetopic;topic=5488927.0)" down in this page. Select "Alternative cryptocurrencies - Altcoin Discussion". Could you send me the marketplace script in private so I can try to debug it? I do have a Monero node running, and maybe I can figure out what's wrong, but without this specific web module, I have no idea what might be the fault. It could even be the PHP version. Alternatively, you can try to contact them (https://laramonero.com/contact). File have been send. Thanks for reply. I have contact the seller but reply 1x per week since 3 week i try to resolve this.. Title: Re: Problem with Monero (RPC) no connect to my script. Post by: BlackHatCoiner on March 14, 2024, 06:28:13 PM I confirm I received the files.
I think I have figured it out, but I don't cross my fingers. create_account method fails, because your Monero wallet and daemon run on mainnet, whereas the script calls the testnet. Take a look on app/Models/Market/Monero.php, line 27. Whoever wrote this passes 28088 in walletRPC, which is a (by default) testnet port, if I'm not mistaken. BTW, this exact line is mentioned in the last step of the installation document (pdf). But, you're not passing 'rpcuser' nor 'rpcpass'. It should look like this: Code: $walletRPC = new walletRPC('127.0.0.1', 'RPC_USER', 'RPC_PASS', 18088, false); Update the file with your RPC credentials, retry and let me know. (Edit: I assume you're running both the daemon and the script in the same machine, otherwise it is not '127.0.0.1') Title: Re: Problem with Monero (RPC) no connect to my script. Post by: hackore55 on March 14, 2024, 07:17:36 PM I confirm I received the files. I think I have figured it out, but I don't cross my fingers. create_account method fails, because your Monero wallet and daemon run on mainnet, whereas the script calls the testnet. Take a look on app/Models/Market/Monero.php, line 27. Whoever wrote this passes 28088 in walletRPC, which is a (by default) testnet port, if I'm not mistaken. BTW, this exact line is mentioned in the last step of the installation document (pdf). But, you're not passing 'rpcuser' nor 'rpcpass'. It should look like this: Code: $walletRPC = new walletRPC('127.0.0.1', 'RPC_USER', 'RPC_PASS', 18088, false); Update the file with your RPC credentials, retry and let me know. (Edit: I assume you're running both the daemon and the script in the same machine, otherwise it is not '127.0.0.1') Yes i have put $walletRPC = new walletRPC('94.154.***.**', 'user','password', 18088, false); IP User, Pass & Port have been addded and not working. With my 2 wallet its dont work. VPS & SelfHost Title: Re: Problem with Monero (RPC) no connect to my script. Post by: BlackHatCoiner on March 15, 2024, 12:20:44 AM IP User, Pass & Port have been addded and not working.
And please provide more insight apart from yes-no. Title: Re: Problem with Monero (RPC) no connect to my script. Post by: hackore55 on March 15, 2024, 01:39:38 PM IP User, Pass & Port have been addded and not working.
And please provide more insight apart from yes-no. Yes i have test 127.0.0.1 i have try with my vps IP .. I have try all possibility.. The error are from the script.. Title: Re: Problem with Monero (RPC) no connect to my script. Post by: hackore55 on March 17, 2024, 02:57:51 AM Upppp...
|