Posts Tagged error

ffmpeg-php undefined symbol php_gd_gdImageSetPixel

Posted on February 13, 2010 with 1 Comment

When i install ffmpeg-php on a plesk server, i got following error

PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php/modules/ffmpeg.so' - /usr/lib/php/modules/ffmpeg.so: undefined symbol: php_gd_gdImageSetPixel in Unknown on line 0

This is caused by loading ffmpeg.so before gd.so

To fix the error, i edited

vi /etc/php.d/gd.ini

added following as last line

extension=ffmpeg.so

Tags: , , , ,

Category: Linux

fipscheck conflicts with fipscheck-lib-1.2.0-1.el5.x86_64

Posted on January 30, 2010 with No Comments

When i run yum update i get error

[root@server12 ~]# yum update
.....
..... some text removed
.....
ERROR with rpm_check_debug vs depsolve:
fipscheck conflicts with fipscheck-lib-1.2.0-1.el5.x86_64
Complete!
(1, ['Please report this error in bugzilla'])
[root@server12 ~]#

This is caused by both 32 and 64 bit version installed.

[root@server12 ~]# rpm -qa fipscheck
fipscheck-1.0.3-1.el5
fipscheck-1.0.3-1.el5
[root@server12 ~]#

I got the error fixed by

yum remove fipscheck

This will also remove package “nss_ldap”.

Tags: , , ,

Category: Linux