Show Posts

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.


Messages - venty

Pages: 1 ... 7 8 [9] 10 11 ... 23
121
DNS / DNS zone in user panel??
« on: July 10, 2019, 05:45:47 PM »
Hi,

I added a domain through the user panel, but please look at the picture http://prntscr.com/od88jd  - there are no names of recordings and appeared "@" ... Before it was not like that?!?


If I delete the MX record and then I want to add it, I get this   http://prntscr.com/od832h ???

What settings should be here    http://prntscr.com/od8bzf   ???

BR
Venty


122
DNS / Can not delete a domain through the user panel
« on: July 10, 2019, 04:47:59 PM »
Hi,

I can not delete a domain through the user panel and delete it as a "root", deleting it, but it has the following message at the top of the page:

Warning: file_get_contents(/usr/local/cwpsrv/htdocs/resources/conf/slave_dns/slave_dns_active_conf.json): failed to open stream: No such file or directory in /usr/local/cwpsrv/htdocs/resources/admin/include/functions.php on line 0

???

BR
Venty

123
OK, thanks you for the answer .... :)

124
Hi,

for a while (on a weekly basis) when loading root / admin panel and user panel, the thing is with SSL certificate (https://) and port 2031 ...?!?

Previously, there was a possibility at the htpp://.. and port 2030 ...

Is this normal?


BR

Venty

125
PHP / Re: Issue with IonCube Loader for PHP Version 7.3.2
« on: April 16, 2019, 02:54:58 PM »
I suggest you read up on what ioncube is and where it comes from...It is not part of the open source php project. Fundamentally different philosophies.

Hi,

you want to tell me that ioncube not need for the normal work of PHP and CWP...??

BR

Venty

126
PHP / Re: Issue with IonCube Loader for PHP Version 7.3.2
« on: April 14, 2019, 01:27:11 PM »
Hi, yes you can and it must be working.

Hi!
OK thanks..
But IonCube is not in the list of options when compiling the PHP 7.3 and later versions with PCP switcher..

BR
Venty

127
PHP / Re: Issue with IonCube Loader for PHP Version 7.3.2
« on: April 09, 2019, 01:34:38 PM »
php 7.3.2 is using ioncube 7.3
php 7.3.3 and l....??
Can I use PHP switcher to compilation PHP 7.3.3 with ioncube 7.3....???

128
PHP / Re: Issue with IonCube Loader for PHP Version 7.3.2
« on: April 08, 2019, 07:21:11 AM »
sh /scripts/update_ioncube
will get you the latest update

I used it ( sh /scripts/update_ioncube ) and check the location and found that IonCube Loader for PHP Version 7.3.2 is missing .

Also i tried Php Settings >> Php Addons >> Install IonCube Loader and again found that the  IonCube Loader for PHP Version 7.3.2 is missing on /usr/local/ioncube/   

So Please update the script for smooth operation.
.

Is there any progress...?!?

129
PHP / Re: PHP Selector
« on: March 28, 2019, 03:28:11 PM »
Hi,

The problem was found in the ICU version - because of the use of prestashop, I had to compile the latest version of ICU,  version 63.1...

I did so by following and applying the help my colleagues gave to the following address:

http://forum.centos-webpanel.com/php/update-icu-system-package-and-the-intl-php-extension/msg20852/#msg20852

and more precisely, in the following terms:

Quote
[root@cwp7 source]# yum list available | grep libicu
libicu.i686                               50.1.2-15.el7                  base
libicu-devel.i686                         50.1.2-15.el7                  base
libicu-doc.noarch                         50.1.2-15.el7                  base

Quote
[root@cwp7 ~]# icuinfo | grep version
    <param name="version">50.1.2</param>
    <param name="version.unicode">6.2</param>
    <param name="cldr.version">22.1.1</param>
    <param name="tz.version">2012j</param>


Well 50.1.2 the latest version of icu available for centos 7 base repository.

If you need any other version then you need to compile it from source (http://download.icu-project.org/files/icu4c/).

So lets take 62.1 version and compile it.


Quote
cd /usr/local/src
wget http://download.icu-project.org/files/icu4c/62.1/icu4c-62_1-src.tgz
tar -xvf icu4c-*.tgz
cd icu/source/
sed -i '/#define __UCONFIG_H__/a #define UCONFIG_ENABLE_PLUGINS 1' common/unicode/uconfig.h
./configure --prefix=/usr --bindir=/usr/bin --libdir=/usr/lib64 --datadir=/usr/share --enable-plugins
make -j4 && make install

Quote
[root@cwp7 source]# icuinfo | grep version
    <param name="version">62.1</param>
    <param name="version.unicode">11.0</param>
    <param name="cldr.version">33.1</param>
    <param name="tz.version">2018e</param>

More compiling options can be found inside "configure" and you can use as per your need.

This version of ICU works with PHP 7 and later, but it did not work with PHP 5.6.38 - 40 ... and when compiling with the PHP selector does not get ...
When removed the "INTL" from option list, the version 5.6.40 is installed without problems ...

With PHP Switcher I have installed a version of PHP 7.2.14 and there things are ok ...

Before I changed the ICU version to 63.1 with the other PHP-FPM selector I have compiled a version of PHP 5.6.38 and it is still active and uses the old version of ICU 50.1

This means I have both ICU versions, but when compiling an older version of a PHP, for example, 5.6.38 or 5.6.40 should be said to use the older ICU or maybe in the compilation of the PHP and choosing the "INTL" module should be told to which version of the ICU should be compiled ...

Thanks in advance!

BR

Venty

To ask again is there a variant of not one server to use two versions of intl (both ICU versions)???

BR
Venty
Pls, help...

130
PHP / Re: update ICU system package and the intl PHP extension
« on: March 18, 2019, 06:49:44 PM »
Hi,

The problem was found in the ICU version - because of the use of prestashop, I had to compile the latest version of ICU,  version 63.1...

I did so by following and applying the help my colleagues gave to the following address:

http://forum.centos-webpanel.com/php/update-icu-system-package-and-the-intl-php-extension/msg20852/#msg20852

and more precisely, in the following terms:

Quote
[root@cwp7 source]# yum list available | grep libicu
libicu.i686                               50.1.2-15.el7                  base
libicu-devel.i686                         50.1.2-15.el7                  base
libicu-doc.noarch                         50.1.2-15.el7                  base

Quote
[root@cwp7 ~]# icuinfo | grep version
    <param name="version">50.1.2</param>
    <param name="version.unicode">6.2</param>
    <param name="cldr.version">22.1.1</param>
    <param name="tz.version">2012j</param>


Well 50.1.2 the latest version of icu available for centos 7 base repository.

If you need any other version then you need to compile it from source (http://download.icu-project.org/files/icu4c/).

So lets take 62.1 version and compile it.


Quote
cd /usr/local/src
wget http://download.icu-project.org/files/icu4c/62.1/icu4c-62_1-src.tgz
tar -xvf icu4c-*.tgz
cd icu/source/
sed -i '/#define __UCONFIG_H__/a #define UCONFIG_ENABLE_PLUGINS 1' common/unicode/uconfig.h
./configure --prefix=/usr --bindir=/usr/bin --libdir=/usr/lib64 --datadir=/usr/share --enable-plugins
make -j4 && make install

Quote
[root@cwp7 source]# icuinfo | grep version
    <param name="version">62.1</param>
    <param name="version.unicode">11.0</param>
    <param name="cldr.version">33.1</param>
    <param name="tz.version">2018e</param>

More compiling options can be found inside "configure" and you can use as per your need.

This version of ICU works with PHP 7 and later, but it did not work with PHP 5.6.38 - 40 ... and when compiling with the PHP selector does not get ...
When removed the "INTL" from option list, the version 5.6.40 is installed without problems ...

With PHP Switcher I have installed a version of PHP 7.2.14 and there things are ok ...

Before I changed the ICU version to 63.1 with the other PHP-FPM selector I have compiled a version of PHP 5.6.38 and it is still active and uses the old version of ICU 50.1

This means I have both ICU versions, but when compiling an older version of a PHP, for example, 5.6.38 or 5.6.40 should be said to use the older ICU or maybe in the compilation of the PHP and choosing the "INTL" module should be told to which version of the ICU should be compiled ...

Thanks in advance!

BR

Venty

To ask again is there a variant of not one server to use two versions of intl (both ICU versions)???

BR
Venty

131
PHP / Re: PHP Selector
« on: March 18, 2019, 04:01:34 PM »
Hi,

The problem was found in the ICU version - because of the use of prestashop, I had to compile the latest version of ICU,  version 63.1...

I did so by following and applying the help my colleagues gave to the following address:

http://forum.centos-webpanel.com/php/update-icu-system-package-and-the-intl-php-extension/msg20852/#msg20852

and more precisely, in the following terms:

Quote
[root@cwp7 source]# yum list available | grep libicu
libicu.i686                               50.1.2-15.el7                  base
libicu-devel.i686                         50.1.2-15.el7                  base
libicu-doc.noarch                         50.1.2-15.el7                  base

Quote
[root@cwp7 ~]# icuinfo | grep version
    <param name="version">50.1.2</param>
    <param name="version.unicode">6.2</param>
    <param name="cldr.version">22.1.1</param>
    <param name="tz.version">2012j</param>


Well 50.1.2 the latest version of icu available for centos 7 base repository.

If you need any other version then you need to compile it from source (http://download.icu-project.org/files/icu4c/).

So lets take 62.1 version and compile it.


Quote
cd /usr/local/src
wget http://download.icu-project.org/files/icu4c/62.1/icu4c-62_1-src.tgz
tar -xvf icu4c-*.tgz
cd icu/source/
sed -i '/#define __UCONFIG_H__/a #define UCONFIG_ENABLE_PLUGINS 1' common/unicode/uconfig.h
./configure --prefix=/usr --bindir=/usr/bin --libdir=/usr/lib64 --datadir=/usr/share --enable-plugins
make -j4 && make install

Quote
[root@cwp7 source]# icuinfo | grep version
    <param name="version">62.1</param>
    <param name="version.unicode">11.0</param>
    <param name="cldr.version">33.1</param>
    <param name="tz.version">2018e</param>

More compiling options can be found inside "configure" and you can use as per your need.

This version of ICU works with PHP 7 and later, but it did not work with PHP 5.6.38 - 40 ... and when compiling with the PHP selector does not get ...
When removed the "INTL" from option list, the version 5.6.40 is installed without problems ...

With PHP Switcher I have installed a version of PHP 7.2.14 and there things are ok ...

Before I changed the ICU version to 63.1 with the other PHP-FPM selector I have compiled a version of PHP 5.6.38 and it is still active and uses the old version of ICU 50.1

This means I have both ICU versions, but when compiling an older version of a PHP, for example, 5.6.38 or 5.6.40 should be said to use the older ICU or maybe in the compilation of the PHP and choosing the "INTL" module should be told to which version of the ICU should be compiled ...

Thanks in advance!

BR

Venty

To ask again is there a variant of not one server to use two versions of intl (both ICU versions)???

BR
Venty

132
PHP / Activate / Unaktivate
« on: March 18, 2019, 10:34:30 AM »
HI,

how can I set a folder - module in the global PHP compiled setting to stop being active and how can I set a module that is not active when compiling to activate ... ???

BR
Venty

133
PHP / Important for Prestashop....
« on: March 18, 2019, 10:15:11 AM »
Hi,

which modules, parts of the PHP are important for Prestashop and should be included in the compilation???
Which modules are required and popular PHP setting for the Prestashop???

BR
Venty

134
PHP / Important for joomla....
« on: March 18, 2019, 10:14:05 AM »
Hi,

which modules, parts of the PHP are important for joomla and should be included in the compilation???
Which modules are required and popular PHP setting for the Joomla???

BR
Venty

135
PHP / modules of the PHP recode and ioncube
« on: March 18, 2019, 09:02:41 AM »
Hi,

the modules of the PHP recode and ioncube.....Are they important?

BR
Venty



Pages: 1 ... 7 8 [9] 10 11 ... 23