This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
931
PHP / Re: How to add yaz extension to php?
« on: April 12, 2018, 07:45:23 AM »Hi I run a joomla site and one of its components requires the yaz extension. How do I find and install yaz extension.
Thanks in advance for your help
I am running PHP version: 7.2.0
Code: [Select]
cd /root
wget http://ftp.indexdata.dk/pub/yaz/yaz-5.23.1.tar.gz
tar -zxvf yaz-5.23.1.tar.gz
cd yaz-5.23.1
./configure
make
make install
cd /root
wget https://pecl.php.net/get/yaz-1.2.2.tgz
tar -zxvf yaz-1.2.2.tgz
cd yaz-1.2.2
phpize
./configure
make
make install
add this line to php.ini :
Code: [Select]
extension=yaz.so
932
CentOS-WebPanel GUI / Re: Login to CWP (SSL_ERROR_RX_RECORD_TOO_LONG)
« on: March 19, 2018, 02:03:28 PM »
unfortunately this error is caused due to OS/backend firewall issues you need to reinstall or if you've backend firewall check with the admin
933
Varnish / Re: Is there a default.vcl that is good for lowering the load?
« on: March 19, 2018, 01:59:36 PM »
you can install it via php switcher
934
Varnish / Re: Is there a default.vcl that is good for lowering the load?
« on: March 18, 2018, 02:22:06 PM »
implement memcached or redis for your script this will lower the load to 30-40%
935
Installation / Re: Is it possible that CWP install on Centos7 in other language?
« on: March 18, 2018, 02:17:46 PM »
OS language should be in eng (us)
936
CentOS-WebPanel GUI / Re: Login to CWP (SSL_ERROR_RX_RECORD_TOO_LONG)
« on: March 18, 2018, 02:13:16 PM »
reinstall the os ensure you ran this command before installing cwp :
Code: [Select]
yum update -y && reboot now
938
CentOS-WebPanel Bugs / Re: failed to open stream: Connection refused in /usr/local/cwpsrv/htdocs/resources/
« on: February 01, 2018, 03:52:45 PM »
is port 80 is open globally ?
939
CentOS-WebPanel Bugs / Re: ftp server still showing after removal of pure-ftpd
« on: February 01, 2018, 03:31:37 PM »
if you want to disable pureftpd you can stop it and disable start up after reboot. It will shown unknown status
940
CentOS-WebPanel Bugs / Re: ftp server still showing after removal of pure-ftpd
« on: February 01, 2018, 03:30:00 PM »
it will show because it is integrated with CWP.
941
PHP / Re: PHP7.1 ZendGuardLoader.so: undefined symbol: zval_used_for_init
« on: February 01, 2018, 03:11:08 PM »
you can learn more about zend engine : http://www.zend.com/products/zend_engine/in_depth
942
PHP / Re: PHP7.1 ZendGuardLoader.so: undefined symbol: zval_used_for_init
« on: February 01, 2018, 03:08:44 PM »downgraded to PHP5.6.3 through the PHP switcherCode: [Select]rpm -qa php\* | sort; rpm -Va php\*; php -m
no issues reported
rpm -qa php-cgi\* | sort; rpm -Va php\*; php -m
rpm -qa php-fpm\* | sort; rpm -Va php\*; php -mCode: [Select]php -v
no issues reported
php-cgi -vCode: [Select]php-fpm -v
Failed loading /usr/local/zend/5.6/ZendGuardLoader.so: /usr/local/zend/5.6/ZendGuardLoader.so: undefined symbol: zval_used_for_init
PHP 7.0.10 (fpm-fcgi)
The issue is fixed by the developer
thanks for reporting
943
PHP / Re: PHP7.1 ZendGuardLoader.so: undefined symbol: zval_used_for_init
« on: February 01, 2018, 03:04:51 PM »
php switcher/selector are intended to work with your scripts only
944
PHP / Re: PHP7.1 ZendGuardLoader.so: undefined symbol: zval_used_for_init
« on: February 01, 2018, 02:37:52 PM »
you can upgrade it anytime, and this issue will be resolved on future version for now don't build php 5.5 and 5.6 with zen guard loader untill and unless you really need it.
945