Developer Area/Setting up ClamAV: Difference between revisions
From Mahara Wiki
< Developer Area
(Created page with "To do this on Ubuntu, you can open a terminal and insert “sudo apt-get install clamav” and press enter. You may also build ClamAV from sources to benefit from better scann...") |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
To do this on Ubuntu, you can open a terminal and insert | === 1. Install ClamAV === | ||
To do this on Ubuntu, you can open a terminal and insert | |||
sudo apt-get install clamav | |||
and press enter. | |||
You may also build ClamAV from sources to benefit from better scanning performance. | You may also build ClamAV from sources to benefit from better scanning performance. | ||
If you need to update the signatures, you can type | |||
sudo freshclam | |||
on a terminal session and press enter. | |||
=== 2. Enable ClamAV === | |||
In your Mahara you need to specify the path to your install ClamAV program in your config.php file, eg: | |||
$cfg->pathtoclam = '/usr/bin/clamscan'; | |||
Then you need to go to Administration -> Configure site -> Security settings and turn on the '''Virus Checking''' switch and saving |
Latest revision as of 14:00, 14 Mayıs 2018
1. Install ClamAV
To do this on Ubuntu, you can open a terminal and insert
sudo apt-get install clamav
and press enter.
You may also build ClamAV from sources to benefit from better scanning performance.
If you need to update the signatures, you can type
sudo freshclam
on a terminal session and press enter.
2. Enable ClamAV
In your Mahara you need to specify the path to your install ClamAV program in your config.php file, eg:
$cfg->pathtoclam = '/usr/bin/clamscan';
Then you need to go to Administration -> Configure site -> Security settings and turn on the Virus Checking switch and saving