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

Pages: 1 ... 4 5 [6] 7 8 ... 18
76
CentOS 7 Problems / Re: PHP FPM 7.3 Error centOS
« on: March 01, 2022, 10:46:44 PM »
It looks like I read your first post a bit wrong. You mentioned first "/opt/alt/php-fpm73/var/sockets" and then put the log mentioning "/opt/alt/php-fpm73/usr/var/sockets/".

Please rebuild your vhosts using "Webserver Settings - Webserver Main Conf - Rebuild all vhosts on save"
or do this with SSH: "sh /scripts/cwpsrv_rebuild_user_conf"

Also, just a tip, not sure if you did this yet, but DON'T edit the conf files directly. They will be reset by CWP every day or with a CWP panel automatic update.

77
CentOS 7 Problems / Re: PHP FPM 7.3 Error centOS
« on: March 01, 2022, 06:36:26 PM »
The picture says that you haven't clicked on "alt" folder. So, click it.

Edit:
Nevermind, I can see the issue
Path /opt/alt/php-fpm*/var/socket does not exist.
It should be /opt/alt/php-fpm*/usr/var/socket

Have you modified the php-fpm template or conf files recently?
It should be like this:
Code: [Select]
[%backend%]
listen = /opt/alt/%phpfpmver%/usr/var/sockets/%backend%.sock
listen.allowed_clients = 127.0.0.1
....
....

78
Postfix / Re: SASL LOGIN authentication failed: UGFzc3dvcmQ6
« on: February 28, 2022, 11:43:04 PM »
Now that you know that this is what happens when owning a mail server, the next piece of information is that Fail2ban easily bans such attempts.
As an example, since Nov.2020 and until now, my server has banned around 350 IPs just for this specific attempt.

79
Installation / Re: Centos 7 still the recommended version?
« on: February 28, 2022, 09:15:30 PM »
i'm running Centos 8 Stream with Delayed repo. Seems fine so far.

What you actually should be looking out for is the type of virtualization that the server hosting company is using. Avoid OpenVZ servers because some features of CWP wont work on it.
Best ones if I'm not mistaken is Xen-HVM

80
Apache / Re: nginx -> apache -> php-fpm VS nginx -> php-fpm
« on: February 28, 2022, 09:11:32 PM »
Even when selecting nginx - varnish - apache - php on "Select Webserver", Varnish is by default not enabled on domains. Which is good, because like you said, it is tricky.
I have experienced it to be extremely aggressive and will probably conflict with other caching tools.

To enable varnish, re-select the "nginx - varnish - apache - php" on "Webserver Domain Conf" for that specific domain.

Tip: To clear varnish cache for a user instead of the entire server, login to userCP and find the clear cache page.

81
Apache / Re: nginx -> apache -> php-fpm VS nginx -> php-fpm
« on: February 27, 2022, 09:20:47 PM »
using apache allows you to have more flexibility as for nginx all config needs to be done in the nginx vhost conf file,
while apache is more flexible with additional modules and rules like with htacces, PHP custom configuration .user.ini ...and even some scripts will not work well with nginx only.

But with nginx -> apache -> php-fpm all regular htaccess rules will work like in my current config that is Nginx + Apache php-cgi?

yes and no. Everything will work normally in htaccess except the rules that nginx has been specifically configured to take over. Either way, the best server option is "nginx - varnish - apache - phpfpm"

82
Information / Re: problem domain
« on: February 25, 2022, 08:23:42 PM »
this file does not exist

This file DOES exist on a normal server.

Here's an example on my server:
Code: [Select]
[root@host ~]# sh /scripts/whoowns whereisthisdomain.com
Checking User Accounts:

Checking Addon Domains:

Checking SubDomains:

Checking Reseller:

[root@host ~]#

83
Addons / Re: Internal Error in WordPress
« on: February 25, 2022, 08:21:28 PM »
Code: [Select]
vi /usr/local/apache/domlogs/YOUR_DOMAINCheck here what the error is. It should tell you.
Sometimes, wordpress will automatically email the wordpress adminstrator email address the reason for the internal error. So, check your mailbox or the logs above

84
Information / Re: CentOS Stream Delayed Question
« on: February 25, 2022, 08:14:01 PM »
Choose your method:

- Method one:
In AdminCP
Server Settings -> Yum Manager.
Check the names of the repositories. Every CentOS-** repo should have CWP at the beginning of its name.

- Method two:
Code: [Select]
ls -all /etc/yum.repos.dShould give the same output as method 1

For some reason, my server has the original repos restored. Weird. Maybe I need to apply it every time dnf/yum itself gets updated.

85
E-Mail / Re: mail routing issue
« on: February 25, 2022, 08:07:34 PM »
Thank you for your reply. I am using cent7. Disappointing to hear, but it is what it is. So it can't be changed via internal settings right?

You can't hide or "fake" your actual source hostname or IP without ending up in the spam folder or worse; getting blacklisted.

In order to operate a legitimate email server, there are some rules that you have to follow. Two of the main once are:

- The server sending mail needs its hostname resolvable to an IP that can be resolved back to the same hostname.
- The server needs to have SPF, DKIM, and DMARC records to authenticate and sign legitimate mails coming from your server. Those also tell the receiving email servers to not accept email from somewhere else pretending to be you or your server. Those are also there to tell other servers that you have your server setup properly to prevent abuse, which help in appearing legitimate.

If your email server has hostname cloud.xyz.com which resolves to IP 123.123.123.123, then the emails cannot be sent while pretending to be another hostname.

86
Backup / Re: Retention of backup for the last X days
« on: February 24, 2022, 01:07:50 PM »
you could make a workaround on your own till it is maybe implemented.

Just make a cronjob deleting all backups older x days and let it run once a day.

problem solved

This isnt what this topic is about... This is about that the backups getting auto deleted. We want the backup system in example backup 4 times (once a week) and on the fifth backup, it deletes the first oldest backup. Basically there is 4 backups available at all times...

Currently only one backup is available.

87
DNS / Re: DNS/NS Set up
« on: February 23, 2022, 09:54:11 AM »
well.. you need to give us the actual NS instead of hiding it behind "example". I can't help you diagnosing ns1.example.com
If you like privacy, you can PM it to me on this forum
https://forum.centos-webpanel.com/index.php?action=pm;sa=send;u=46135
or even better if you send me your discord in PM so I can try to help you faster

88
Update is out today for anyone interested in updating their PHP

89
DNS / Re: DNS/NS Set up
« on: February 22, 2022, 10:15:42 PM »
Well... your question is a bit wrongly worded I can't seem to figure out what you're trying to say exactly. Are you using google translator?

- you registered a domain with godaddy
- you added "them" (NS?) on godaddy's site. Which NS? What is your NS?
- NS still have no IP. How are you querying this NS?
- Also, what instructions have you followed?

90
Information / Re: FUNDING CWP DEVELOPMENT TEAM
« on: February 22, 2022, 04:09:39 PM »
CWP already has the most important features built in. What features are you looking for that only an increase in license cost will bring them to the table?

I don't agree with the problem that CWP updates are delayed for testing, but I do agree that it's a problem delaying with security updates.

For me, 30$ is too much. The current pricing is fine for me

Pages: 1 ... 4 5 [6] 7 8 ... 18