Thanks
derrg
Posts
-
Question about docs branch -
Question about docs branchIt's merged with the docs branch, which isn't being used though. :<
-
Question about docs branchCool, would it be possible to merge my most recent change into master?
-
Question about docs branchHey all, I noticed that there's a docs branch that hasn't been touched since the end of April (less a pull request I put in today). Is this branch still active? I have another pull request waiting to bring it up to date with master if it is.
-
getting error nodebb adress already in useYou can check to see if nodebb is running with
ps -ewwo pid,args | grep nodebb
. -
Can't upload profile pics on Windows server installI've managed to reproduce the issue on Win2k8R2. It's coming from ImageMagick not being installed/configured correctly.
These are the steps I took to fix the issue:
-
Go out and install the latest version of ImageMagick
-
After running the installer make sure that you close the command prompt from which you are running NodeBB.
-
Open a new command prompt and rerun
node app.js
The problem should be fixed!
-
-
Can't upload profile pics on Windows server installI'll try to reproduce the error and see if I can't fix it.
-
Can't upload profile pics on Windows server installLooks like a permissions error, but their solution is to use
require('gm').subClass({ imageMagick : true})
.Maybe Linux is the answer for you after all!
-
Can't upload profile pics on Windows server installI can't blame you; Windows can be pretty finicky sometimes. If you have UAC enabled, I think you might still have to specify that you want to run your command prompt in Administrator mode. I'd double check that just to make sure.
I found someone who was having somewhat similar problems with node's GraphicsMagick (gm) plugin on StackOverflow and it looks like their solution involved changing
require('gm').subClass({imageMagick:true})
torequire('gm')
, as well as running node from Administrator mode. -
Can't upload profile pics on Windows server installHave you tried running node from a command prompt in Administrator mode ('Run as Administrator')?