Disabling Syslog in Drupal
-
- Login to your Drupal admin section.
-
- Click the modules link within the top menu, a lightbox will popup listing all the available modules.
- Scroll down and ensure that the syslog module is not ticked, then click save configuration.
Disabling Syslog via MySQL commands.
-
- Login to your Drupal MySQL database via PhpMyAdmin.
-
- We need to check the status of the module with the help of the following SELECT command:
SELECT name,status FROM system WHERE type='module';
-
- The following UPDATE command disables the module by changing the status to “0”:
UPDATE system SET status='0' WHERE name='syslog';
These changes can be confirmed by re-running the SELECT command again.
Classification: Public
Last saved: 2019/08/14 at 15:19 by Jamie