Posts for Errors solved

Detailed instructions to solve errors in your code

Fix – ReactDOM is not defined

If you are getting ReactDom is not defined in React, this article will help you fix the issue. This issue could pop out because: you don’t have module react-dom properly installed inside your project and you tried to call it, or simply you didn’t call this module correctly. To fix that, you will need to […]

February 20, 2021 in Errors solved
Deven
Deven wrote

Fix could not open input file artisan

If you are facing this issue “could not open input file artisan” the most common solution is you need to first create a Laravel project and if you already have one you need to go to this project dir using cd command in terminal Like below: Now you will be able to run any artisan […]

February 11, 2021 in Errors solved
Deven
Deven wrote

Fix – Javascript try if document.body.innerhtml var a not working

If Javascript try if document.body.innerhtml is not working for you. The main reason for this error can be getting Aside from overwriting page HTML with a single value each iteration. When you replace the entire page HTML and break its javascript events such as click/hover handlers and many others attached via addEventListener or .on properties. Also, […]

February 11, 2021 in Errors solved
Deven
Deven wrote

Setting up Discord welcome message template

Discord welcome message template and JoinDiscordBot for your discord that allows you to put a welcome message on your discord server, the modification of the channel is done in the code index.js. Our Index.js file contains the following code. Now follow the following steps to get it working. open the index.js file Change the prefix […]

February 11, 2021 in Errors solved
Deven
Deven wrote

Fix – error in node_modules/rxjs/internal/types.d.ts(81,44): error ts1005: ‘;’ expected.

If you are getting node_modules/rxjs/internal/types.d.ts(81,44): error ts1005: ‘;’ expected error, the problem might arise due to version mismatch. To solve your problem you need to do the following changes in your package.json file Go to package.json and modify “rxjs”: “”rxjs”: “^7.0.0” to “rxjs”: “7.0.0”and Run npm install in your project also there is no need to change […]

February 11, 2021 in Errors solved