Jdrew
March 18, 2014, 3:47pm
1
I have been having trouble with my pysnip server on linux. The status page can’t seem to show the map overview and I was wondering if you guys could help. The paste-bin below is a small log of what happens when the status page is parses.
^paste-bin link
http://69.175.123.234:32884/
^status page link
ei8htx
March 18, 2014, 6:05pm
2
Definitely a Danko question…
Danke
March 18, 2014, 9:13pm
4
Looks like you need zlib, or pil isn’t linking to zlib properly.
topo
March 19, 2014, 5:24am
6
python -m easy_install pip && pip install pillow
or
python -m easy_install pillow # not sure if this one works, can’t test right now
modify feature_server/statusserver.py:
change “import Image” to “from PIL import Image”
Jdrew
March 21, 2014, 2:07am
7
log of what happens when a player tries to get the overview:
topo
March 21, 2014, 4:05am
8
python -m easy_install pip && pip install pillow
or
python -m easy_install pillow # not sure if this one works, can’t test right now
modify feature_server/statusserver.py:
change “import Image” to “from PIL import Image”