Configserver firewall

cabn12

Verified User
Joined
Dec 17, 2019
Messages
132
Good afternoon, I installed the DA on another dedicated server, when starting to configure the csf, I realized that his interface is not loading the css file of the plug-in it appears the unconfigured interface, its logo image is missing.
 
Had the same issue on a new server setup. I just reinstalled CSF manually and it installed the missing log and CSS files.

Code:
cd /usr/src
rm -fv csf.tgz
wget https://download.configserver.com/csf.tgz
tar -xzf csf.tgz
cd csf
sh install.directadmin.sh
 
Navigate to CSF plugin images folder and check the contents. The dashboard images and CSS files should be located in this folder.

Code:
cd /usr/local/directadmin/plugins/csf/images
 
root@cloudbr ~]# cd /usr/local/directadmin/plugins/csf/images
-bash: cd: /usr/local/directadmin/plugins/csf/images: No such file or directory
[root@cloudbr ~]#
 
Did you do all of the conversion steps to the fully integrated csf in Directadmin?
That is not needed to get the plugin images active. The ./install.directadmin.sh should already have done the trick.

However, full integration is ofcourse nicer to work with.
 
The CSF install above should have reinstalled any missing files and created the images folder which appears to have not been created which is strange. Is there anything in the CSF plugin folder?

Code:
cd /usr/local/directadmin/plugins/csf

Another option is uninstall CSF completely and reinstall using the commands above to see if that works.

Code:
cd /etc/csf
sh uninstall.sh
 
Did you load all of the Perl modules?
Perl Modules
============

While most should be installed on a standard perl installation the following
may need to be installed manually:

# On rpm based systems:
yum install perl-libwww-perl.noarch perl-LWP-Protocol-https.noarch perl-GDGraph

Also what does
Code:
perl /usr/local/csf/bin/csftest.pl
give
 
Back
Top