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 - Starburst

Pages: 1 ... 52 53 [54] 55 56 ... 79
796
CentOS 7 Problems / Re: Change Server Date & Time
« on: January 15, 2023, 03:32:05 PM »
Here's a great little tutorial that i run from the CLI.

https://linuxize.com/post/how-to-set-or-change-timezone-on-centos-7/

797
Information / Re: Alma Linux 9 Support ETA?
« on: January 08, 2023, 12:43:19 AM »
CWP works fine on AlmaLinux 8.7.

We have tested CWP on AlmaLinux 9.1, but some features do not work like PHP Selector.

798
Backup / Re: little worried to use cwp
« on: January 07, 2023, 02:12:09 AM »
Looks like you have to restore a SQL Backup with phpMyAdmin under Import.

799
Backup / Re: Deleted Backups but Disk Space not reclaimed
« on: January 07, 2023, 01:47:29 AM »
Use FileManager you will have to delete the backups from under /backup in the daily, weekly, monthly sub-folders.

800
CentOS-WebPanel Bugs / 1st attack against CWP outdated PHP
« on: January 06, 2023, 07:40:01 PM »
One of the servers received a brute force attack against the CWP login pages that use the outdated PHP version.

When does CWP plan on updating there base PHP code to 8.1?

Also the DNS Manager still uses PHP 5.6 which really needs updating.

Maybe it's time for CWP to go open source, and let the community help keep it updated.

801
If this is outgoing traffic, you didn't secure the server.

One of the first things you have to do, is change the SSH port.

Then as soon as CWP starts, turn on cfg/lfd, make sure your static IP is whitelisted to your control client, and then disable all the ports you don't need. (SSH, 2030,2031, etc.)

Complete building the server form there, including mail, etc.

If it still happens, you have a hacker in one of your hosting accounts.
Turn them all off, and turn on 1 by one to narrow it down easily

802
Installation / Re: Rocky Linux 8 too Rocky??
« on: December 19, 2022, 08:22:55 PM »
Rocky Linux has suffered from missing packages, since the pre-release versions.

But ultimately we had to abandon it for AlmaLinux.

803
Installation / Re: What distro to go for..
« on: December 19, 2022, 08:20:58 PM »
Rocky Linux (has some missing packages) or I recommend AlmaLinux 8.7, which is the community version of CloudLinux.

As such AlmaLinux 9.1 is also capable of Secure Boot, a feature that came over from CloudLinux.

804
E-Mail / Re: Cant add autoresponder
« on: December 19, 2022, 08:16:37 PM »
You set and edit autoresponders for individual mailboxes via the Roundcube Webmail interface.

Ditto for creating CC'ing & BCC'ing to other mailboxes.

805
CentOS-WebPanel GUI / Re: How to prevent cwp auto update
« on: December 13, 2022, 06:29:23 PM »
@AcemiPenguen

You did NOT read the question.

They want to STOP automatic updates to the CWP panel.
(e.g. Not auto upgrade to 0.9.8.xxxx when it is released)

806
PHP / Re: PHP8.2.* Install?
« on: December 12, 2022, 10:15:37 PM »
Don't know when/if CWP will add 8.2 in the next update, as I mentioned I don't work for them.

I know I was able to go back to 8.1 without problems, and the 8.1 version of this worked with CWP when they finally did add support.

The only way to get 8.2.0 now, would be thru cli via ssh or local.

807
PHP / Re: PHP8.2.* Install?
« on: December 12, 2022, 06:34:23 PM »
In CWP you should see:


808
PHP / Re: PHP8.2.* Install?
« on: December 12, 2022, 06:33:14 PM »
Based On and Credit To:
Sandeep B. - November 26, 2021
https://www.uxlinux.com/install-php-8-1-latest-version-in-cwp-control-panel/

--

NOTE: ionCube 12.0.x does NOT support PHP 8.2.x as of 12 December 2022.

Below was tested on AlmaLinux 8.7 & CWP 0.9.8.1148

Start with PHP 8.1.13
Compiled in CWP WITHOUT: imagick, ioncube, sodium

--

dnf install oniguruma oniguruma-devel gcc make gcc-c++ cpp kernel-headers.x86_64 libxml2-devel openssl-devel bzip2-devel libjpeg-devel libpng-devel freetype-devel openldap-devel postgresql-devel aspell-devel net-snmp-devel libxslt-devel libc-client-devel libicu-devel gmp-devel curl-devel libmcrypt-devel pcre-devel sqlite-devel libdb-devel enchant-devel libXpm-devel mysql-devel readline-devel libedit-devel recode-devel libtidy-devel libtool-ltdl-devel libwebp libwebp-devel expat expat-devel libmemcached libmemcached-devel

--

dnf install libzip libzip-devel
dnf install cmake zlib-devel

--

cd /usr/local/src
rm -rf libzip*
wget https://libzip.org/download/libzip-1.9.2.tar.gz
tar zxvf libzip*
cd libzip*/
mkdir build
cd build
/usr/bin/cmake3 ..
make && make install

--

cd /usr/local/src
rm -rf pcre2*
wget https://github.com/PhilipHazel/pcre2/releases/download/pcre2-10.41/pcre2-10.41.zip -O pcre2.zip
unzip pcre2.zip
cd pcre2-*/
./configure
make && make install

--

cd /usr/local/src
rm -rf master* libavif-master*
wget https://github.com/AOMediaCodec/libavif/archive/refs/heads/master.zip
unzip master.zip
cd libavif-main
mkdir build-dir
cd build-dir
cmake ..
make
make install

--

export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/local/lib64/pkgconfig

--

mkdir -p /usr/local/php-82
cd /usr/local/php-82
wget http://php.net/distributions/php-8.2.0.tar.gz
tar zxvf php-8.2.0.tar.gz
cd php-8.2.0
./configure --with-config-file-path=/usr/local/php --enable-cgi --with-config-file-scan-dir=/usr/local/php/php.d --with-zlib=/usr --enable-mbstring --with-zip --enable-bcmath --enable-pcntl --enable-ftp --enable-exif --enable-calendar --enable-sysvmsg --enable-sysvsem --enable-sysvshm --with-tidy --with-curl --with-iconv --with-gmp --with-pspell --enable-gd --with-avif --with-jpeg --with-freetype --enable-gd-jis-conv --with-webp --with-zlib-dir=/usr --with-xpm --with-openssl --with-pdo-mysql=mysqlnd --with-gettext=/usr --with-bz2=/usr --with-mysqli --enable-soap --enable-phar --with-xsl --with-kerberos --enable-posix --enable-sockets --with-external-pcre --with-libdir=lib64 --with-mysql-sock=/var/lib/mysql/mysql.sock --enable-intl --with-password-argon2 --enable-litespeed --with-ldap=/usr --with-ldap-sasl=/usr 
make
make install

--

php -v

You should see (if all went well):

PHP 8.2.0 (cli) (built: Dec 12 2022 17:57:50) (NTS)
Copyright (c) The PHP Group
Zend Engine v4.2.0, Copyright (c) Zend Technologies

809
Why do you want to migrate?

I know CyberPanel is lacking in some areas.
But also has OpenLightSpeed & WordPress management.

810
PHP / Re: PHP8.2.* Install?
« on: December 12, 2022, 04:04:15 PM »
I thought PHP 8.2 was still in the RC stage.

Just looked and it is released.

Let me do some testing, and I'll get back with you.

(BTW I do not work for CWP)

Pages: 1 ... 52 53 [54] 55 56 ... 79