DirectAdmin & InterWorx compatibility with configserver products
Re: DIrectAdmin compatibility of products configserver
Awesome work on CSF/LFD for IW - I pushed it to a testing server (about to be two), configured it, set it off, and it's dumping IPs that need to be dumped.
Really looking forward to a port of MSFE for IW if you're able to do it.
Really looking forward to a port of MSFE for IW if you're able to do it.
-
- Moderator
- Posts: 1524
- Joined: 01 Oct 2008, 09:24
Re: DirectAdmin & InterWorx compatibility with configserver products
MSFE might be tricky with qmail as MailScanner does not officially support it and it apparently requires a rebuild of qmail to possible get it working.
Re: DirectAdmin & InterWorx compatibility with configserver products
If it can be done, you're the guy to do. If it can't, then that's just the way it goes. Fortunately, the spamassassin interface tools for users on the IW side are far better than cPanel's offerings. If you could look at mail queues/mail manage (IW uses mbox) for IW, that would be outstanding.
-
- Junior Member
- Posts: 6
- Joined: 12 Jul 2019, 14:26
Re: DirectAdmin & InterWorx compatibility with configserver products
Just a question is the CSF for interworx integrated with and in the UI of IW?
-
- Moderator
- Posts: 1524
- Joined: 01 Oct 2008, 09:24
Re: DirectAdmin & InterWorx compatibility with configserver products
Yes, it is.rsnetworks wrote: ↑12 Jul 2019, 14:50 Just a question is the CSF for interworx integrated with and in the UI of IW?
-
- Junior Member
- Posts: 6
- Joined: 12 Jul 2019, 14:26
Re: DirectAdmin & InterWorx compatibility with configserver products
Oh perfect. You are a hero for us serious.
Your work is extreme appreciated
Your work is extreme appreciated
-
- Junior Member
- Posts: 6
- Joined: 12 Jul 2019, 14:26
Re: DirectAdmin & InterWorx compatibility with configserver products
I have installed it on IW server and working almost perfect.
In the main interface on the panel you have the check if the standard firewall is working that is conflicting because it is ofcourse off but the check sustains and giving a popup with: replyCode: 504
replyText: Server Mislukt to Respond
replyData:
null
I have a screenshot of it
In the main interface on the panel you have the check if the standard firewall is working that is conflicting because it is ofcourse off but the check sustains and giving a popup with: replyCode: 504
replyText: Server Mislukt to Respond
replyData:
null
I have a screenshot of it
-
- Moderator
- Posts: 1524
- Joined: 01 Oct 2008, 09:24
Re: DirectAdmin & InterWorx compatibility with configserver products
We'll look into the issue for the next release of csf. For now, if you want to stop the error you will need to restore the original Firewall.php:
Code: Select all
cd /usr/local/interworx/include/Ctrl/Nodeworx
cp Firewall.php.orig /usr/local/interworx/plugins/configservercsf/Firewall.php
cp Firewall.php.orig Firewall.php
-
- Junior Member
- Posts: 6
- Joined: 12 Jul 2019, 14:26
Re: DirectAdmin & InterWorx compatibility with configserver products
Thank you for your response.ForumAdmin wrote: ↑12 Jul 2019, 16:22 We'll look into the issue for the next release of csf. For now, if you want to stop the error you will need to restore the original Firewall.php:Code: Select all
cd /usr/local/interworx/include/Ctrl/Nodeworx cp Firewall.php.orig /usr/local/interworx/plugins/configservercsf/Firewall.php cp Firewall.php.orig Firewall.php
That doesn't replace the old file because it isn't there anymore.
I will wait till the next update because the popup doesn't hurt.
-
- Moderator
- Posts: 1524
- Joined: 01 Oct 2008, 09:24
Re: DirectAdmin & InterWorx compatibility with configserver products
If you replace /usr/local/interworx/plugins/configservercsf/Firewall.php with the following code:
Then copy this file into place:
This should fix the issue for now.
Code: Select all
<?php
if ($_SERVER['REQUEST_URI'] === '/nodeworx/firewall') {
throw new IWorx_Exception_ActionBlocked('ConfigServer Plugins > Firewall & Security, has replaced this item');
} else {
throw new IWorx_Exception_ActionBlocked('N/A');
}
?>
Code: Select all
cp /usr/local/interworx/plugins/configservercsf/Firewall.php /usr/local/interworx/include/Ctrl/Nodeworx/