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

Pages: [1]
1
CentOS-WebPanel GUI / Re: List emails in cwp account control empty...
« on: August 08, 2022, 08:40:25 AM »
Happened to me also, the CPanel was not loading the emails section (?module=email_accounts) and in browser console there was an error about this. I went in the root panel » SQL Services » phpMyAdmin.
I selected the  postfix / alias table and searched for any strange chars or tabs / spaces in the goto column. Deleted the culprit, problem solved.

2
Installation / Re: PHP Version Switcher v2 not changing version
« on: February 05, 2022, 11:12:17 PM »
If you get a sqlite3 error when switching from php 8.x to php 7.4 like undefined reference to 'sqlite3_ you can try and install a newer version of sqlite3:

Code: [Select]
cd /usr/local/src
wget https://www.sqlite.org/2022/sqlite-autoconf-3370200.tar.gz
tar xvfz sqlite-autoconf-3370200.tar.gz
cd sqlite-autoconf-3370200.tar.gz
CFLAGS="-DSQLITE_ENABLE_COLUMN_METADATA=1" ./configure
make & make install


3
Updates / Re: After update today, nginx/1.20.0 error
« on: December 29, 2021, 07:07:15 AM »
Working! Thank you!

4
Updates / Re: After update today, nginx/1.20.0 error
« on: December 29, 2021, 06:51:40 AM »
Also the CPanels all give 404 not found

5
Updates / Re: After update today, nginx/1.20.0 error
« on: December 29, 2021, 06:39:02 AM »
Yes, NGINX is giving 404 Not Found error on all servers. This is a big issue.

6
E-Mail / Re: Roundcube1.5.x Internal Server Error - FIX
« on: October 19, 2021, 09:59:48 AM »
For the new update do we need to remove the fix ?

7
E-Mail / Re: Roundcube1.5.x Internal Server Error - FIX
« on: October 19, 2021, 07:41:01 AM »
Yes, it works, ty

8
CentOS-WebPanel Bugs / Re: php7.x installation fails
« on: June 23, 2020, 11:23:47 AM »
Tried to install php 7.4.7 on the latest CWP 0.9.8.993, got the error :

Quote
checking for libzip... configure: error: system libzip must be upgraded to version >= 0.11

What fix it for me was installing the pychothic ninja repo then running:

Code: [Select]
rpm --import http://wiki.psychotic.ninja/RPM-GPG-KEY-psychotic
rpm -ivh http://packages.psychotic.ninja/6/base/i386/RPMS/psychotic-release-1.0.0-1.el6.psychotic.noarch.rpm

Code: [Select]
yum --enablerepo=psychotic-plus install libzip-devel

Then you just start the desired build and it works.

Pages: [1]