Wrap_newBundle not available SWIG & webpay

I want to configure webpayto local

  • Installed by SWIG
  • Added extension webpaytophp.ini

Then I tried to execute test.php, it shows the following error:

--------error while opening file [libwebpayclient.so]--------
<html>
<p> Starting webpay Transaction </p>
 wrap_newBundle not available 

Any idea?

+5
source share
2 answers

Check for any dependencies in the libwebpayclient.so library:

Use the following check to check the dependencies (correct the path according to your environment):

ldd /usr/lib/php5/20090626+lfs/libwebpayclient.so

, , libwebpayclient.so libssl.so.6 libcrypto.so.6. , , ( ).

cd /usr/lib/i386-linux-gnu
sudo ln -s libssl.so.1.0.0 libssl.so.6
sudo ln -s libcrypto.so.1.0.0 libcrypto.so.6

: http://forums.whirlpool.net.au/archive/762312

+9

ldd libwebpayclient.so , libssl.so.6 libcrypto.so.6 .

Centos 6, libssl.so.6 libcrypto.so.6, yum install openssl098e.

0

All Articles