Thomas Günther
80fb6cd452
xmlrpc deaktivieren Autorenscan deaktivieren Scripting in /wp-content/uploads/ deaktivieren Zugriff auf potenziell sensible Dateien blockieren Dateieditor im WP Dashboard deaktivieren Skriptverkettung deaktivieren Skriptausführung im Include-Verzeichnis deaktivieren Zugriff von ungewollten Bots verbieten Auflistung von Verzeichnissen deaktivieren Debug-Ausgaben deaktivieren Login-URL ändern
23 lines
1011 B
PHP
23 lines
1011 B
PHP
<h2><?= __('Bot Detection Database', BDP_LV_PLUGIN_SLUG); ?></h2>
|
|
<div class="pwp_setting_box">
|
|
<h3><?= __('Registered bots', BDP_LV_PLUGIN_SLUG); ?></h3>
|
|
<?php
|
|
foreach (get_prohibitedbot_list() as $currenBot) {
|
|
?>
|
|
<p style=" margin: 10px auto; width: 80%;">
|
|
<input type="text" name="existing_bots[]" value="<?= $currenBot ?>" style="width: 100%;" /><br />
|
|
<label style="cursor: default; color: #a0a0a0; fot-size: 9pt; font-style: italic"><?= __('Leave blank in order to delete', BDP_LV_PLUGIN_SLUG); ?></label>
|
|
</p>
|
|
<?php
|
|
}
|
|
?>
|
|
</div>
|
|
<div class="pwp_setting_box">
|
|
<h3><?= __('Add more bots', BDP_LV_PLUGIN_SLUG); ?></h3>
|
|
<p style=" margin: 10px auto; width: 80%;">
|
|
<textarea placeholder="<?= __('Please use line breaks to enter multiple bots', BDP_LV_PLUGIN_SLUG); ?>" name="new_bots[]" style="width: 100%;" rows="10"></textarea>
|
|
</p>
|
|
</div>
|
|
<br /><br />
|
|
<input type="submit" class="button" value="<?= __('Save changes', BDP_LV_PLUGIN_SLUG); ?>" />
|