Error fetching styles.css from nodebb-plugin-emoji
-
You don't understand the properties of config.json
URL is the address at which you access the forum in the browser. This is used in emails for instance. The emoji plugin uses it as the base address for assets, because the emoji plugin assets need to work in emails as well.
The port is just the port that NodeBB binds to on the server. The default is 4567, so setting it to 4567 has no effect.
What URL are you using to access NodeBB from your browser? If you're accessing it at http://localhost:4567, then that's what the URL in config.json should be set to. Of you're accessing it at http://localhost or something else, then set the URL to that.
-
@xaponeis you need to change the URL in config.json to match the URL at which you access your site in the browser.
-
Thank you for you reply @PitaJ. I think my configuration in config.json file is ok. Everything is working fine except for this file from this plugin.
It seems the plugin does not recognize the "PORT" variable from config.json.
My config json was like this:
"url": "${URL}", "port": "${PORT}",
I changed to:
"url": "${URL}:${PORT}"
for testing and now I dont see the error anymore:
But I don't know which one is the correct form. And whether the config like this can lead to others issues.
-
You don't understand the properties of config.json
URL is the address at which you access the forum in the browser. This is used in emails for instance. The emoji plugin uses it as the base address for assets, because the emoji plugin assets need to work in emails as well.
The port is just the port that NodeBB binds to on the server. The default is 4567, so setting it to 4567 has no effect.
What URL are you using to access NodeBB from your browser? If you're accessing it at http://localhost:4567, then that's what the URL in config.json should be set to. Of you're accessing it at http://localhost or something else, then set the URL to that.
-
@PitaJ Yes, I am using http://localhost:4567 to access the forum. It seems I got it wrong how URL variable works. And as I am using the default port everything work it when I changed my config and mislead me to believe that was something wrong with the plugin.
Thank you! -
-