XF 1.4 Avatar Uploading

TDUBS

Active member
Hello,

Whenever I or a user tries uploading an avatar, the below error comes up:

Screenshot_18-12-27.png


I've tried it on the default theme and same thing happens.

Thanks!
 
Check and make sure your /data and /internal_data are 777 permissions. Also make sure that your PHP has either GD PECL or ImageMagick PECL installed (ACP -> Tools -> PHP Info).
 
Thanks. One of these solutions work. I installed php-gd and;

Code:
yum install ImageMagick
yum install ImageMagick-devel
yum install php-pear
mount -o,remount,rw,exec /var/tmp
pecl install imagick
mount -o,remount,rw,noexec /var/tmp
 
Top Bottom