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

Pages: 1 ... 10 11 [12] 13 14 ... 29
166
PHP Selector / Re: Selecting PHP 8.3.x with ionCube
« on: December 25, 2024, 11:15:28 AM »
Ya, two things could cause the problem:

1. Wrong path and/or filename to load the ionCube lib
2. Outdated ionCube loader libs

I decided to provide full set of steps to fix the problem if it is caused by any of these.

Anyway, I am glad to hear you solved the problem.

168
PHP Selector / Re: Selecting PHP 8.3.x with ionCube
« on: December 24, 2024, 08:34:15 AM »
Update ionCube manually:


Code: [Select]
cd /usr/local/src/
rm -rf ioncube*
wget https://downloads.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz
tar -xvzf ioncube_loaders_lin_x86-64.tar.gz
mv /usr/local/ioncube /usr/local/ioncube_old
chown -R root.root ioncube
mv ioncube /usr/local/
mv /usr/local/php/php.d/ioncube.ini /usr/local/php/php.d/ioncube.ini_old
echo "zend_extension = /usr/local/ioncube/ioncube_loader_lin_8.3.so" > /usr/local/php/php.d/ioncube.ini

169
CentOS-WebPanel Bugs / Re: Cannot log in to the MySQL server
« on: December 20, 2024, 08:35:01 PM »
Make sure your account isn't out of free space. If it is ok then try to reset your CWP password and then make new attempt to access MySQL using PHPMyAdmin.

170
Updates / Re: Problem Yesterday Update (19Dic)
« on: December 20, 2024, 06:08:55 AM »
Did you check error logs of the subdomains to find what cases the problem ? Please show us the errors.

171
CentOS-WebPanel GUI / Re: CWP Invalid session on login
« on: December 19, 2024, 10:48:20 PM »
Here's a starting point...
https://www.alphagnu.com/topic/28-cwp-apache-restore-original-visitor-ips-with-mod_remoteip-when-using-cloudflare-proxy/

It will not work and here is why:

CWPSRV is based on Nginx and compiled without ngx_http_realip_module:
https://nginx.org/en/docs/http/ngx_http_realip_module.html

Here is the compilation options of cwpsrv:
Code: [Select]
configure arguments: --prefix=/usr/local/cwpsrv --sbin-path=/usr/local/cwpsrv/bin/cwpsrv --conf-path=/usr/local/cwpsrv/conf/cwpsrv.conf --pid-path=/usr/local/cwpsrv/var/run/nginx.pid --error-log-path=/usr/local/cwpsrv/logs/error_log --http-log-path=/usr/local/cwpsrv/logs/access_log --user=root --group=root --with-http_ssl_module --with-http_gzip_static_module --with-file-aio --with-http_secure_link_module --with-http_ssl_module --add-module=src/misc/ngx_http_auth_pam_module

Sure, it is possible to recompile cwpsrv but you will have to do it every time once cwpsrv binary package is updated.

Therefore, I think will be better if the developers of CWP add support of ngx_http_realip_module to cwpsrv.


172
Backup / Re: Is there a backup guide?
« on: December 18, 2024, 10:13:46 AM »
CWP provides two backup systems. Look here:
https://www.inmotionhosting.com/support/edu/control-web-panel/cwp-admin/server-management/cwp-backups/

It will explain you how to set up tasks to make backups.

If the backup systems provided by CWP satisfy your requirements then you don't need to create your own script for backups.

173
E-Mail / Re: Do updates to email filter templates apply retrospectively?
« on: December 17, 2024, 10:51:58 PM »
It is not clear how you added/created the email filter template. Could you elaborate more about this ?

174
Does the password contain some special chars like "!@#$%^&*()_+" ?

175
CentOS-WebPanel Bugs / Re: CentOS 9 stream CWP installation problem
« on: December 16, 2024, 06:41:45 PM »
On the server already installed php+mysql (mariadb) and webpages working well.
But I can`t finish cwp installation.

The server must be clean without  nginx, apache, php, mysql/mariadb.

176
How to / Re: Increase /root Partition in CWP?
« on: December 16, 2024, 08:50:46 AM »
If you can access the server using VNС and the server can be booted from a bootable USB flash drive then the simplest way to resize partitions is:

(Make backup of your data before you do any changes.)

1. Make bootable USB drive using "SystemRescue Disk". The image can be downloaded here:
https://www.system-rescue.org/Download/

2. Boot the server from the created USB drive.

3. Run "startx" to run graphical interface if the server is booted in text mode.

4. Find and run "GPARTED" from the start menu. GPARTED allows you to manage the partitions using mouse (shrink "/home" and increase "/")

5. Apply the changes and wait some time to allow all necessary steps to be performed by GPARTED.

6. Reboot the server.

Please note you do it on your own risk.

177
I can build it / Re: Server IP problem on phpbb records
« on: December 15, 2024, 04:25:42 PM »
Does the website use CloudFlare ?

178

I do not want to ignore a warning. I want what the warning is and correct it.

What needs to be done to correct?

CSF/LFD is configured to send warnings if some process running more than 1800 seconds on your server. As you can see from the warning message rpcbind works more than 1800 seconds. That is why you got the email.

It is ok for rpcbind because it is a daemon. So add the process to exceptions (/etc/csf/csf.pignore) as @Sandeep recommended or stop/disable rpcbind if you don't need it.

179
How to / Re: Increase /root Partition in CWP?
« on: December 14, 2024, 08:40:08 AM »
Your system uses LVM. Therefore you need to follow the steps from the tutorial marked as "With LVM". However, I don't recommend you to make any changes on the production server if you resize the partitions the first time.

It is better to setup a VPS for testing purposes and try to resize partitions there. You must understand what you do before you make any changes. It is very very danger operation.

180
How to / Re: Increase /root Partition in CWP?
« on: December 13, 2024, 08:39:51 PM »
CWP is webhosting control panel. It doesn't have any tools to manage disk partitions because in most cases such tasks can be done in "rescue mode"/"single user mode". If you need to resize partitions then use linux tools like parted, lvm, etc. However, I recommend you to read docs and tutorials before you make any changes because you could kill the system and make it unbootable.

Pages: 1 ... 10 11 [12] 13 14 ... 29