WordPress Playground
WordPress Playground brings key platform dependencies into the browser. Here’s a quick breakdown of how it works:
- PHP runs as a WebAssembly binary
- MySQL is replaced for SQLite via a WordPress plugin
- Web server is implemented with the Service Worker API
Panama Papers: Email Hackable via WordPress, Docs Hackable via Drupal
The Mossack Fonseca (MF) data breach, aka Panama Papers, is the largest data breach to journalists in history and includes over 4.8 million emails. Yesterday we broke the story that MF was running WordPress with a vulnerable version of Revolution Slider and the WordPress server was on the same network as their email servers when ...Read More
Browser warning when closing tab when editing/filling out a form! - Feature Requests - Gravity Forms
var userStartedForm;
jQuery(document).on('focus', '.gform_wrapper input', function(){
userStartedForm = true;
});
jQuery(window).on('beforeunload', function(){
if(userStartedForm){ return ''; }
});
Wordfence and LiteSpeed - Wordfence
Find your site’s main “.htaccess” file. This file usually exists in the document root directory where WordPress is installed. Open the file with a text editor. Find the line that says “# BEGIN WordPress” and add this code above it:
```
# BEGIN LiteSpeed noabort
RewriteEngine On
RewriteRule .* - [E=noabort:1]
# END liteSpeed noabort
```