Last active
April 29, 2021 09:07
-
-
Save navsqi/b72e54dd54b337a3678ee1fa378e3596 to your computer and use it in GitHub Desktop.
Error on working
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Error: Ngirim email menggunakan nodemailer & smtp google, di pc local lancar di production gagal. | |
| Error Message: Error: connect ECONNREFUSED,code: ESOCKET, port: 45 | |
| Sebelumnya: | |
| nodemailer.createTransport({ | |
| service: 'Gmail', | |
| auth: { | |
| user: 'xx', | |
| pass: 'xx', | |
| }, | |
| }); | |
| Fixed: | |
| nodemailer.createTransport({ | |
| host: 'smtp.gmail.com', | |
| port: 587, | |
| secure: false, | |
| logger: true, | |
| debug: true, | |
| auth: { | |
| user: 'xx', | |
| pass: 'xx', | |
| }, | |
| }); | |
| ~~~ | |
| Error: Tidak bisa clone private github repo ke cpanel | |
| Solusi: https://dashboard.webhostingmagic.com/knowledgebase/242/How-To-Clone-A-Private-Github-Repo-To-A-cPanel-Server.html | |
| ~~~ | |
| React Native | |
| Error: [eslint] Delete 'cr' [prettier/prettier] | |
| Solusi: https://stackoverflow.com/questions/53516594/why-do-i-keep-getting-delete-cr-prettier-prettier/63654585 | |
| Error: Execution failed for task ':app:installDebug' | |
| Solusi: https://stackoverflow.com/questions/37500205/react-native-appinstalldebug-failed | |
| ~~~ | |
| NodeJS open to LAN | |
| 1. Open "Windows Defender Firewall with Advanced Security" | |
| 2. Select "Inbound Rules" in the left pane. | |
| 3. In the list of available rules, "Node.js Server-side Javascript" has "Block the connection" radio checked. Change this to "Allow the connection". |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment