Block only external access to wp-cron.php on OpenLiteSpeed

I use OpenLitespeed server with multiple WordPress installation and want to restrict external access to some files, only allowing server itself to access them (for example to call cron), so: What I did: RewriteCond %{REMOTE_ADDR} !^127\.0\.0\.1 RewriteCond %{REQUEST_URI} wp-trackback.php|xmlrpc.php|wp-cron.php [NC] RewriteRule .* – [F,L] Result: /xmlrpc.php – returns 403 as expected; /wp-trackback.php – returns 403 … Read more

How to remove unused avatar uploads in buddypress [closed]

Closed. This question is off-topic. It is not currently accepting answers. Your question should be specific to WordPress. Generic PHP/JS/HTML/CSS questions might be better asked at Stack Overflow or another appropriate site of the Stack Exchange network. Third party plugins and themes are off topic. Closed 7 years ago. Improve this question Im seeing in … Read more

Scheduled posting not working

I have WordPress 3.5.1 and I use Bluehost hosting service. When I schedule posts after that time passed, WP posts dashboard shows “Missed schedule” message under the date. Then I checked my wp-config.php has define(‘DISABLE_WP_CRON’, true); there’s no such a define line. Then I added define(‘DISABLE_WP_CRON’, false); under the database lines. After that I added … Read more