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

Pages: 1 ... 5 6 [7] 8 9 ... 55
91
DNS / Re: rDNS is required to match the hostname of CWP
« on: December 13, 2023, 04:43:20 AM »
i would say, for 95% of the people the rDNS is NOT the same as your hostname, because rDNS is something you will get from your ISP and nothing to set on your own.

E.G if you check google, the MX is called
smtp.google.com

But the rDNS or PTR Record is:
mail-ve1eur010036.inbound.protection.outlook.com

This is not the same ;)

also mine is not the same, all i need to do for CWP to make it work is to manually change the name in the postfix main.cf
and change the following line manually to my rDNS name because CWP default wants to set it the same as the hostname


myhostname = RDNSNAME

I don't know about you.  But EVERY VPS/Server I have ever rented, I simply emailed support and asked for them to set my PTR record to my hostname.  I have never had them tell me no.

92
CentOS 8 Problems / Re: 403 Forbidden -- Pterodactyl Web Panel Error
« on: December 13, 2023, 04:39:08 AM »
I'm going to go out on a limb, and say that this is not going to be supported by CWP.  Your game server requires basically a dedicated server, or VPS.  I would highly recommend you either virtualize a new environment, or use a separate server.  Following the directions of installing composer and PHP8 may well muck up your CWP installation.

93
CentOS 7 Problems / Re: CWP nameserver not resolve
« on: December 11, 2023, 09:02:05 PM »
How about CSF firewall, and make sure named is running

94
CentOS 7 Problems / Re: CWP nameserver not resolve
« on: December 11, 2023, 06:54:12 PM »
When I try to test your DNS server, I get a connection timeout.  Make sure port 53 is open on  your firewall and bind/named is running on the server.

95
CentOS 7 Problems / Re: CWP nameserver not resolve
« on: December 11, 2023, 04:49:02 PM »
What is your domain name and nameservers.  Perhaps we can find the issue.

96
DNS / Re: rDNS is required to match the hostname of CWP
« on: December 11, 2023, 04:47:52 PM »
I'm just going to put this here, but if rDNS does not match your hostname, 60-70% of your mail from that server will fail.

97
CentOS 7 Problems / Re: CWP nameserver not resolve
« on: December 11, 2023, 04:37:41 AM »
From CWP. /admin/index.php?module=dns_list_zones

You should have a zone ns1.(yourdomain) and ns2.(yourdomain) zones.  IF you don't you need to create them with the following

Code: [Select]
; Zone file for ns1.(yourdomain)
$TTL 14400
ns1.(yourdomain).      86400      IN      SOA      ns1.(yourdomain).      info.centos-webpanel.com.      (
      2013071600 ;serial, todays date+todays
      86400 ;refresh, seconds
      7200 ;retry, seconds
      3600000 ;expire, seconds
      86400 ;minimum, seconds
      )
ns1.(yourdomain). 86400 IN NS ns1.(yourdomain).
ns1.(yourdomain). 86400 IN NS ns2.(yourdomain).
ns1.(yourdomain). 14400 IN A (yourip)

Code: [Select]
; Zone file for ns2.(yourdomain)
$TTL 14400
ns2.(yourdomain).      86400      IN      SOA      ns1.(yourdomain).      info.centos-webpanel.com.      (
      2013071600 ;serial, todays date+todays
      86400 ;refresh, seconds
      7200 ;retry, seconds
      3600000 ;expire, seconds
      86400 ;minimum, seconds
      )
ns2.(yourdomain). 86400 IN NS ns1.(yourdomain).
ns2.(yourdomain). 86400 IN NS ns2.(yourdomain).
ns2.(yourdomain). 14400 IN A (yourip)

98
Information / Re: Connection refused from ffmpeg.pro/cwp2|bash
« on: December 08, 2023, 03:42:18 PM »
Delete that line mate.  And run a virus check on your server.  That is not part of CWP, and was not issued in any update they did.  That script is indeed a virus.

Also secure your ssh.  I'd recommend only allowing cert authentication.

Make sure root is not allowed to log in as ftp.  Also check all software that is run by the root user, and if possibly, DO NOT run any as root.

99
Installation / Re: Logrotate configuration not working
« on: December 07, 2023, 07:51:47 PM »
Your missing the very important part.  You need a "rotate" option for how many files to keep.  Add " rotate 1 " as an option and it might work.

101
Installation / Re: Logrotate configuration not working
« on: December 06, 2023, 09:36:18 PM »
You have to put the full path to the log files in the logrotate config.  Please post the contents of that file...

102
DNS / Re: Private nameserver/glue record config
« on: December 05, 2023, 12:18:54 AM »
SOA records are set by YOUR NS1 and NS2, and should reflect your first nameserver as the SOA.

Checking your domain, it looks like everything propagated properly now.


103
Updates / Re: How can update PHP for cwpsrv
« on: December 05, 2023, 12:02:11 AM »
You cannot update CWP's PHP, because of the ioncube encoder.  It will probably be months, as a complete rewrite for PHP8 will be required, as well as they have to pay to get the newest encoder for PHP 8.2/8.3.

104
DNS / Re: Reverse dns setup
« on: December 04, 2023, 12:08:47 AM »
Reverse DNS is not something that should programmed automatically.  It also Should only point to FQDN (Ex: server.yourserver.com).  If you are setting up rDNS to the users domain name, it's legal, however in reality, all of you /24 should point to your servers hostname.   When MX lookups do a PTR lookup for domain xyz.com and see xyz.com as the server name, but the mail header reads from server.yourserver.com, it may very well fail the message.  JS

105
MySQL / Re: User can create a database from phpmyadmin
« on: December 03, 2023, 01:31:14 AM »
They can do it from their computer, or you are testing and able to do it.  Because If I log into phpmyadmin from CWP, then switch to a user account and load from there, I stay logged in as root.  JS

Pages: 1 ... 5 6 [7] 8 9 ... 55