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 2 [3] 4 5 ... 8
31
Check the log file:
Code: [Select]
/var/log/messagesfor the messages marked as "Firewall" and your WAN IP address (IP address you try to establish connection from) to identify the problem.

32
Suggestions / Re: Brazilian Portuguese x Portugal Portuguse
« on: September 12, 2024, 09:35:16 AM »
I don't think make files immutable is good solution because it could cause problem during updates too. As a soultion it is better to duplicate the necessary language and update the image file in the duplicate language pack.

Here is another thread about localizations:
https://forum.centos-webpanel.com/addons/language-edit/msg16725/
Hope it will help to perform the necessary task.

33
CentOS-WebPanel Bugs / Re: Cannot Add Nat IP
« on: September 12, 2024, 04:28:42 AM »
I used CWP in NATed mode once and was able to set/update shared/nat IPs without any problems. Currently the latest version of CWP free doesn't allow to set the NAT IP. Not sure if some extra option must be enable or there is a bug.

Therefore try to update the IPs in the file:
Code: [Select]
/usr/local/cwp/.conf/settings.confmanually, restart CWP, CWPSRV services, rebuild vHosts and check if it solves the problem.

34
Suggestions / Re: Brazilian Portuguese x Portugal Portuguse
« on: September 11, 2024, 06:01:12 PM »
Hi,

For the admin interface the flags are located in the folder:
Code: [Select]
/usr/local/cwpsrv/htdocs/admin/design/img/langJust replace the appropriate image file with your own PNG file:
Code: [Select]
PNG 32x32 32x32+0+0 8-bit sRGB
If you want to change the flag for the user level panel, then you need do it in the folder:
Code: [Select]
/usr/local/cwpsrv/var/services/users/cwp_theme/original/img

35
CentOS-WebPanel Bugs / Re: Cannot Add Nat IP
« on: September 11, 2024, 05:49:53 PM »
I tried to open the URL:
https://pasteboard.co/gA9r0dPAtAuV.png
a few times and within but got error 502 always.

Could you upload the screenshot to another image hosting service  (imgur https://imgur.com/upload) ?

36
Installation / Re: Cannot login to admin CWP
« on: September 11, 2024, 03:16:20 PM »
Clean cache (cookies, temporary files, sessions) of your browser and then try to access CWP admin panel again.

In case you decide to reinstall the panel, then make sure there are no errors during installation.

37
Mod_Security / Re: MOD SECURITY issue on new CWP PRO INSTALLATION
« on: September 09, 2024, 01:24:29 PM »
Look at this thread:
https://forum.centos-webpanel.com/centos-9-problems/apache-wont-restart-after-enabling-mod_security/msg48744/#msg48744
it seems you have the same problem.
Hope it will help you to solve the problem.

38
Other / Re: MongoDB Manager not working if authentication is turned on
« on: September 07, 2024, 08:16:47 PM »
127.0.0.1 only if you want to make your databases inaccessible from the internet. However it will make the databases accessible locally from the server using 127.0.0.1 as DB Host.

39
Other / Re: MongoDB Manager not working if authentication is turned on
« on: September 07, 2024, 06:51:07 PM »
I don't use MongoDB personally but I assume you can configure MonoDB to be accessible over loopback only:

Code: [Select]
bindIp: 127.0.0.1

40
Checked this article:
https://wiki.centos-webpanel.com/php-version-switcher
and then files associated with php sodium for EL9. It seems sodium should be compiled by default for php-fpm_selector, php_selector, php_switcher on EL9 systems.

If it wasn't compiled by default then it is better to review /var/log/php-rebuild.log for investigation.

41
The instructions to compile sodium are the similar to imagic:

Code: [Select]
dnf install libsodium-devel
cd /usr/local/src/
wget https://pecl.php.net/get/libsodium-2.0.23.tgz
tar -xvzf libsodium-2.0.23.tgz
cd libsodium-2.0.23
/opt/alt/phpXX/usr/bin/phpize
./configure --with-php-config=/opt/alt/phpXX/usr/bin/php-config
make
make install

Make sure "extension=sodium.so" presents in appropriate .ini file.

P.S. if pecl.php.net is inaccessible for some reason, you can download php libsodium from Github:
Code: [Select]
wget -O libsodium-2.0.23,zip https://github.com/jedisct1/libsodium-php/archive/refs/heads/master.zip

42
Postfix / Re: error when clicking on "manage mail queue" option
« on: September 07, 2024, 12:14:08 PM »
It is better to replace the step 3 with:

Code: [Select]
service cwpsrv-phpfpm restart

43
Postfix / Re: error when clicking on "manage mail queue" option
« on: September 07, 2024, 10:27:13 AM »
Try to do following:

1. Open file:
/usr/local/cwp/phpXX/etc/cwpsrv.conf
(replace phpXX with the php version used by your CWP)

2. Add the line:
Code: [Select]
php_admin_value[max_execution_time] = 3000

3. kill php-fpm processes:
Code: [Select]
killall php-fpmto restart PHP-FPM and apply the new value of  max_execution_time (not sure how to restart php-fpm in other way).

4.Then check the mail queue manager again.

Undo the changes and then perform the steps 2-3 to leave the default values.

44
Hi,

In my opinion you need to compile both extensions from sources and not using packages (RPM).

45
Updates / Re: How to update Imagick?
« on: September 06, 2024, 07:08:27 PM »
Then try to recompile imagick manually. Follow the steps listed bellow:

Code: [Select]
cd /usr/local/src/
wget https://pecl.php.net/get/imagick-3.7.0.tgz
tar -xvzf imagick-3.7.0.tgz
cd imagick*
/opt/alt/phpXX/usr/bin/phpize
./configure --with-php-config=/opt/alt/phpXX/usr/bin/php-config
make
make install

Make sure to replace "phpXX" with path to the correct php version.

Pages: 1 2 [3] 4 5 ... 8