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.
197
Updates / Re: How to update Imagick?
« on: December 01, 2024, 10:51:24 PM »198
Updates / Re: How to update Imagick?
« on: December 01, 2024, 07:12:25 PM »
Don't you get errors when you run `make` `make install` ?
If no errors then run:
You should get something like:
"No such file or directory"
then make sure all previous steps (see my first post in this thread) are completed without errors.
In other case run:
and check every file listed in output to make sure the path to imagick.so is specified correctly. There is just one record associated with imagick.so.
If no errors then run:
Code: [Select]
ls `php -i| grep "^extension_dir" |awk '{print $5}'`/imagick.so
You should get something like:
Code: [Select]
/usr/local/lib/php/extensions/no-debug-non-zts-xxxxxxxxx/imagick.so
if you get:"No such file or directory"
then make sure all previous steps (see my first post in this thread) are completed without errors.
In other case run:
Code: [Select]
php --ini
and check every file listed in output to make sure the path to imagick.so is specified correctly. There is just one record associated with imagick.so.
199
Updates / Re: How to update Imagick?
« on: December 01, 2024, 09:49:07 AM »Quote
-bash: cd: too many arguments
it seems you have two or more folders called like "imagick-something". That is why you get the error when run "cd imagick*"
Quote
-bash: cd: /opt/alt/phpXX/usr/bin/phpize: No such file or directory
overseer right. You just need to specify the correct location of php-config. Each php version has own "php-config". So if you want to build imagick for php 5.6 then run:
Code: [Select]
./configure --with-php-config=/opt/alt/php56/usr/bin/php-config
for php 7.1:
Code: [Select]
./configure --with-php-config=/opt/alt/php71/usr/bin/php-config
etc, but for main php version:
Code: [Select]
./configure --with-php-config=/usr/local/bin/php-config
200
DNS / Re: name servers taken a while to update
« on: November 30, 2024, 10:06:10 PM »
Hi,
The DNS propagation process is fully automatic and it could take up to 72 hours to be finished.
According to whatsmydns.net your domains use the nameservers:
ns1.clickns.cloud
ns2.clickns.cloud
So it looks good for me.
The DNS propagation process is fully automatic and it could take up to 72 hours to be finished.
According to whatsmydns.net your domains use the nameservers:
ns1.clickns.cloud
ns2.clickns.cloud
So it looks good for me.
201
DNS / Re: named.service failed - NO DNS
« on: November 30, 2024, 01:47:15 PM »
Yes, you are right. The capital "R" supposed to be there. (Updated my previous post to reflect the changes).
Actually, overseer's guess was correct. He recommended to check the access permissions of the folders/files used by named. He made his guess based on the log records demonstrated by you:
The commands provided by me just set the correct access permission on the files and folders to make them available for named service.
I saw a few posts on this forum about wrong access permissions applied on the folder/files used by named and seems the problem appears once one or more accounts are transferred by the migration tool (cwp --> cwp, cpanel --> cwp).
Actually, overseer's guess was correct. He recommended to check the access permissions of the folders/files used by named. He made his guess based on the log records demonstrated by you:
Code: [Select]
Nov 30 08:24:43 svruk01.clickns.cloud named[1986]: could not configure root hints from 'named.ca': permission denied
Nov 30 08:24:43 svruk01.clickns.cloud named[1986]: loading configuration: permission denied
Nov 30 08:24:43 svruk01.clickns.cloud named[1986]: exiting (due to fatal error)
The commands provided by me just set the correct access permission on the files and folders to make them available for named service.
I saw a few posts on this forum about wrong access permissions applied on the folder/files used by named and seems the problem appears once one or more accounts are transferred by the migration tool (cwp --> cwp, cpanel --> cwp).
202
DNS / Re: named.service failed - NO DNS
« on: November 30, 2024, 12:46:14 PM »
Try:
then restart named and check if it works.
Code: [Select]
chmod 770 /var/named
chown root.named /var/named
chown root.named /var/named/named.*
chown -R named.named /var/named/data /var/named/dynamic /var/named/slaves
then restart named and check if it works.
203
DNS / Re: New IP (Rebuild Does Not Update)
« on: November 28, 2024, 09:19:03 AM »
Hi,
Please review this tutorial to learn how to change the IP address of the server properly:
https://forum.centos-webpanel.com/how-to/how-to-change-the-ip-address-of-a-server/
Please review this tutorial to learn how to change the IP address of the server properly:
https://forum.centos-webpanel.com/how-to/how-to-change-the-ip-address-of-a-server/
204
Nginx / Re: Nginx - one site will only go to default Server Test Page
« on: November 27, 2024, 07:51:45 AM »
Open the file:
/etc/nginx/nginx.conf
and make sure it contains the line at the end:
if the line is there then check content of the folder:
/etc/nginx/conf.d/
It should contain the file vhosts.conf. Open the file and check if it contains:
Then check the folder:
/etc/nginx/conf.d/vhosts/
It should contain two files named like domain.com.conf, domain.com.ssl.conf for each domain name.
Also, if you use nginx only, double check there are no some frozen apache/httpd processes.
/etc/nginx/nginx.conf
and make sure it contains the line at the end:
Code: [Select]
include /etc/nginx/conf.d/*.conf;
if the line is there then check content of the folder:
/etc/nginx/conf.d/
It should contain the file vhosts.conf. Open the file and check if it contains:
Code: [Select]
include /etc/nginx/conf.d/vhosts/*.conf;
Then check the folder:
/etc/nginx/conf.d/vhosts/
It should contain two files named like domain.com.conf, domain.com.ssl.conf for each domain name.
Also, if you use nginx only, double check there are no some frozen apache/httpd processes.
205
I can build it / Re: Apache Status - Accesses
« on: November 25, 2024, 04:24:51 PM »
Put the following content into the file:
/usr/local/apache/conf.d/remoteip.conf
Replace XXX.XXX.XXX.XXX with the main IP address of your server/VPS.
Please note it will show the real IP addresses of the visitors if some site is configured to be proxied via CloudFlare.
/usr/local/apache/conf.d/remoteip.conf
Code: [Select]
RemoteIPHeader X-Forwarded-For
RemoteIPProxiesHeader CF-Connecting-IP
RemoteIPInternalProxy 127.0.0.1 10.0.0.0/8 172.16.0.0/12 192.168.0.0/16 XXX.XXX.XXX.XXX
RemoteIPTrustedProxy 173.245.48.0/20
RemoteIPTrustedProxy 103.21.244.0/22
RemoteIPTrustedProxy 103.22.200.0/22
RemoteIPTrustedProxy 103.31.4.0/22
RemoteIPTrustedProxy 141.101.64.0/18
RemoteIPTrustedProxy 108.162.192.0/18
RemoteIPTrustedProxy 190.93.240.0/20
RemoteIPTrustedProxy 188.114.96.0/20
RemoteIPTrustedProxy 197.234.240.0/22
RemoteIPTrustedProxy 198.41.128.0/17
RemoteIPTrustedProxy 162.158.0.0/15
RemoteIPTrustedProxy 104.16.0.0/13
RemoteIPTrustedProxy 104.24.0.0/14
RemoteIPTrustedProxy 172.64.0.0/13
RemoteIPTrustedProxy 131.0.72.0/22
Replace XXX.XXX.XXX.XXX with the main IP address of your server/VPS.
Please note it will show the real IP addresses of the visitors if some site is configured to be proxied via CloudFlare.
206
Installation / Re: User Control Panel Login Problem
« on: November 25, 2024, 08:38:05 AM »
My Cpanel is $7 unlimited accounts, it seems even the prices of the boards you don't know them
The Cpanel that gives you 5 accounts for $29.99, but here are many sites that sell the license for a cheap price.
"Unlimited account creation" doesn't mean "ability to host unlimited accounts".
The Login problem, why is it not solved? There are more topics here in the forum that have not solved the problem with them.
Why don't you put the solutions here so that everyone can benefit? I am sure that you do not know the solution
It seems that you learned to write two lines in the shell, so you think that you are a professional and a professor
I deal with a famous German data center that no longer provides these systems.
I deal with a famous German data center that no longer has these systems such as Almalinux 8 and CentOS
Exactly, your request to get assistance sounds like "I don't want to check logs, docs, search forum, etc. Just give me some commands to run on my server to fix the problem.".
Mr. professional, good luck, once again !
207
Installation / Re: User Control Panel Login Problem
« on: November 24, 2024, 08:01:56 PM »
Almalinux 8 is supported (security fixes) until the 1st of March 2029. So it isn't reasonable to disable it for my opinion. I do believe major datacenters offer Almalinux 8 still.
Every cPanel license allows to create certain number of accounts. Than more you pay than more accounts you will be able to create. I do believe the license of $7/month allows to create no more than 5 accounts.
Yes, CWP for Almalinux 9/ RockyLinux 9 in beta. However, if you are the system administrator (not a user who knows how to use copy/paste) then it isn't a problem to fix the problems. At least, most of them are described and solved on this forum numerous times.
Anyway, it is your choice how to spend your time and money
Good luck !
Every cPanel license allows to create certain number of accounts. Than more you pay than more accounts you will be able to create. I do believe the license of $7/month allows to create no more than 5 accounts.
Yes, CWP for Almalinux 9/ RockyLinux 9 in beta. However, if you are the system administrator (not a user who knows how to use copy/paste) then it isn't a problem to fix the problems. At least, most of them are described and solved on this forum numerous times.
Anyway, it is your choice how to spend your time and money

208
Installation / Re: User Control Panel Login Problem
« on: November 24, 2024, 09:26:18 AM »
I use CWP a lot and I am absolutely satisfied. CWP works very well on Almalinux 8. In case you use Almalinux 9 then be prepared for struggle because CWP for Almalinux 9 is at beta stage.
I think the direct comparison of cPanel and CWP isn't fair because cPanel isn't provided for free at all except the trial period (14 days). It costs $40/month and was founded ~20 years ago. Yes, cPanel is solid and well known panel now, but it was very buggy too. Some security problems hasn't been fixed up to now. I know because I use cPanel since beginning.
In my opinion CWP is very good panel with great potential.
I think the direct comparison of cPanel and CWP isn't fair because cPanel isn't provided for free at all except the trial period (14 days). It costs $40/month and was founded ~20 years ago. Yes, cPanel is solid and well known panel now, but it was very buggy too. Some security problems hasn't been fixed up to now. I know because I use cPanel since beginning.
In my opinion CWP is very good panel with great potential.
209
Installation / Re: User Control Panel Login Problem
« on: November 24, 2024, 08:22:26 AM »
Then I just recommend you to reset the passwords for the problematic accounts, clean cache and cookies of your browser and make new attempt to access the user panel. Double check you don't copy some hidden spaces (extra chars) in case you use copy/paste when you specify the login credentials at the login form.
210
Installation / Re: User Control Panel Login Problem
« on: November 23, 2024, 11:46:41 PM »
Make sure the problematic accounts have some free space and the server has some free space overall.