Linkage Error Loader Constraint Violation - JUnit test case development issue
Its good to write unit tests cases, and this part is mostly forgotten by…
March 20, 2018
I was trying to install mongo extension with pecl.
pecl install mongo
It gave me error:
Then, I tried installing php-commons extension.
It gave me errors:
Error: php55w-common conflicts with php-common-5.4.16-43.el7_4.1.x86_64</li>
I searched php*-devel in yum repo:
yum search devel | grep php
I got “php55w-devel”
I installed it:
yum installphp55w-devel
I tried installing mongo again:
pecl install mongo
Error:
configure: error: Cannot find OpenSSL's <evp.h>
ERROR: `/var/tmp/mongo/configure --with-mongo-sasl=no' failed
I installed openssl-devel
yum install openssl-devel
Again tried:
pecl install mongo
Voila! It installed
Its good to write unit tests cases, and this part is mostly forgotten by…
I was testing a bug where a field was limited to 255 characters only. I needed…
Introduction In your backend and frontend projects, you always need to deal with…
To download this code from git: See: Gyanblog Github
Note: This is based on bootstrap-4 If you are using multi column design in your…
While dealing with ELastic Search documents, you faced this issue while updating…
Introduction In this post we will see following: How to schedule a job on cron…
Introduction There are some cases, where I need another git repository while…
Introduction In this post, we will see how to fetch multiple credentials and…
Introduction I have an automation script, that I want to run on different…
Introduction I had to write a CICD system for one of our project. I had to…
Introduction Java log4j has many ways to initialize and append the desired…