SecurityMehrdad recommended Main search Best practices Website with the list of insecure plugins: DownloadLive WriterGet Live Writer, the best free WYSIWIG WordPress editor (Windows only). wp-config.php// Uncomment to enable MultiSite, then Admin > Tools > Network //define('WP_ALLOW_MULTISITE', true); define('WP_HOME','http://your-website.com'); define('WP_SITEURL','http://your-website.com'); define('DB_NAME', 'wordpress'); define('DB_USER', 'root'); define('DB_PASSWORD', 'password'); define('DB_HOST', 'localhost'); WP-CronFor single Wordpress, create this daily Cron job wget http://yourdomain.com/wp-cron.php?doing_wp_cron Add to wp-config.php define('DISABLE_WP_CRON', true); Full article Enable remote editingAdmin > Settings > Writing
Use clean urlsAdmin > Settings > Permalinks
User permissionsDon't make everyone administrator. Set appropriate permissions for every user
See Scaling WordPressMultiple slaves to load-balance database reads |
Notes >