Nov 03, 2012, 07:07 AM
Metamod is telling you why SourceOP isn't loading:
libssl.so.6 isn't available on your server. Since you're using Linux of some sort, you can (assuming you can login as root) use your package manager (yum, apt-get, emerge, etc.) to search for whatever package that provides libssl.so.6.
An example for the yum package manager would be
su root
<enter password for root>
yum search libssl.so.6
It should return a list of packages that provide libssl.so.6 (usually the first package), in which case you install it.
Code:
Failed to load plugin bin/sourceop (libssl.so.6: cannot open shared object file: No such file or directory).
libssl.so.6 isn't available on your server. Since you're using Linux of some sort, you can (assuming you can login as root) use your package manager (yum, apt-get, emerge, etc.) to search for whatever package that provides libssl.so.6.
An example for the yum package manager would be
su root
<enter password for root>
yum search libssl.so.6
It should return a list of packages that provide libssl.so.6 (usually the first package), in which case you install it.