OK solved it now!
The image has to have a data size less than 50Kb for the controller to be able to download and process.
Took a bit of messing around and tweaking in GIMP but got it down to 24Kb and now it loads.
I am trying to download a .csv of my customer list, but I get an error every time. What am I doing wrong? @administrators
@kevin-redx Can you post the error log?
@jtsimoes When I select the leads to export to .csv, it opens up a new tab with this being displayed.
Hummm... My NodeBB exports perfectly
So, I think it's not a bug...
@jtsimoes Oh dang, might just be something I have set up incorrectly then. When you select the leads and then hit export, is it just downloading right to your desktop?
Hello! I am experiencing the same but when run on local, it exports perfectly. Any idea what could be mistake in setup?
This error happens if the referrer header doesn't match what nodebb expects.
if (!referer || !referer.replace(nconf.get('url'), '').startsWith('/admin/manage/users')) {
return res.status(403).send('[[error:invalid-origin]]');
}
Make sure the url in your config.json matches the url you use to access the site.
Thank you so much for your answer @baris .
The issue was resolved when I removed the extra / in url in config.json
so from
{
"url": "https://forum.forum.com/",
...
}
to
{
"url": "https://forum.forum.com",
...
}