Mehic.info

Category Archives: Actual topics from IT

Actual topics from IT

Kerberos – Communication failure with server while initializing kadmin interface

Communication failure with server while initializing kadmin interface Cause: The host that was specified for the admin server, also called the master KDC, did not have the kadmind daemon running. Solution: Make sure that you specified the correct host name for the master KDC. If you specified the correct host name, make sure that kadmind is running on the […]

Read more

Downgrade form php5 5.5 to php5 5.4.28 in ubuntu 12.04

First you need to remove all php5 files : sudo apt-get remove –purge ‘dpkg -l | grep php | grep -w 5.5 | awk ‘{print $2}’ | xargs’ After that try to search for php 5.4. available resources : apt-cache policy php5 My result : php5: Installed: (none) Candidate: 5.5.12+dfsg-2+deb.sury.org~saucy+1 Version table: 5.5.12+dfsg-2+deb.sury.org~saucy+1 0 500 […]

Read more

phpldapadmin is not compatible with Saucy PHP 5.5

  I received following error Fatal error: Cannot redeclare password_hash() in /var/www/phpldapadmin/lib/functions.php on line 2225 after installation of phpldapadmin on ubuntu 12.04 with php 5.5. Later I found that latest version of phpldapadmin is not compatible with php 5.5, since there are some problems with function names conventions. Best solution is to downgrade your php version to 5.4 or […]

Read more