I just installed version 2.1 fresh on a new apache install and I have the following issues:
1. Player Portraits do not show up on the site. I have logged in in game, but the image does not make it to the web server. The folder "people" has read write permission, but no new images make it there. No error is displayed in game, but the image does show up on the imgame browser.
2. When I log on in game, it goes to a screen that shows the player logo, name and corp. There are no links to post kill mail or see data. If I try to go to submit.php nothing shows. It i not a big deal to alt tab out of eve and post the kill mail, but I would like to know if this is a problem or working as intended.
I am using PHP 5.1.6
Any ideas?
Thanks
Eric
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I recently attempted to upgrade to v2.1 and I get the same issue regarding player portraits. However, I do get an error - and this seems to involve the non-existence of the 'createimagefromjpeg' function called in the ingame/index.php file. The full text of the error is "PHP Fatal error: Call to undefined function: imagecreatefromjpeg()"
There is a post on the PHP documentation site (http://uk.php.net/manual/en/function.imagecreatefromjpeg.php); the comments on this page seem to match the behaviour I'm seeing - but I've yet to try the suggested fix. I'll let you know how I get on with this.
I've not seen your 2nd problem though.
Hope this is of some use.
PC.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I just installed version 2.1 fresh on a new apache install and I have the following issues:
1. Player Portraits do not show up on the site. I have logged in in game, but the image does not make it to the web server. The folder "people" has read write permission, but no new images make it there. No error is displayed in game, but the image does show up on the imgame browser.
2. When I log on in game, it goes to a screen that shows the player logo, name and corp. There are no links to post kill mail or see data. If I try to go to submit.php nothing shows. It i not a big deal to alt tab out of eve and post the kill mail, but I would like to know if this is a problem or working as intended.
I am using PHP 5.1.6
Any ideas?
Thanks
Eric
Eric,
I recently attempted to upgrade to v2.1 and I get the same issue regarding player portraits. However, I do get an error - and this seems to involve the non-existence of the 'createimagefromjpeg' function called in the ingame/index.php file. The full text of the error is "PHP Fatal error: Call to undefined function: imagecreatefromjpeg()"
There is a post on the PHP documentation site (http://uk.php.net/manual/en/function.imagecreatefromjpeg.php); the comments on this page seem to match the behaviour I'm seeing - but I've yet to try the suggested fix. I'll let you know how I get on with this.
I've not seen your 2nd problem though.
Hope this is of some use.
PC.
Fixed the error message I was getting amd fixing this also enabled the kill-mail submission for me.
Solution was:
I've also got a fairly vanilla Fedora install, so I had to load the libpng package first (e.g. using : # yum install libpng-devel).
Then download an upgraded PHP (from 5.1.2 to 5.2.1)
In the untarred PHP install directory:
# ./configure --with-mysql --with-jpeg-dir --enable-exif --with-gd --with-apxs2=<apache 2 dir>/bin/apxs
# make
# make install
# <apache 2 dir>/bin/apachectl stop
# <apache 2 dir>/bin/apachectl start
The order of the ./configure arguments is significant.
Also had to open the permissions on the ../people directory - but it sounds like you captured that one.
Hope this is of some use - NB this was all done on Fedora.
PC.