WordPress
- How to Speed Up Your WordPress Site
- WordPress Plugins
- WordPress Updating with FTP
- Find WordPress Version
- Find WordPress Version from command line
- Running wp-cron with cronjob
- Ubuntu Apache Setup for WordPress
- WordPress debug
- WordPress CLI
- https://wpscan.com
- How to Enable WordPress Toolkit in Cpanel/WHM
- WordPress HyperDB
- How to reset WordPress Password using wpcli
WordPress Installation
WordPress Migration
WordPress Developement
Tools
https://scanwp.net – Scan WordPress for plugins/theme installed
Errors
- WordPress CherryFramework lessphp fatal error
- CURL ERROR 7 could not establish a secure connection to WordPress.org
WordPress Attacks
WordPress Behind Reverse Proxy
Add following code to wp-config.php to get WordPress work behind a reverse proxy
1 2 3 |
if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') { $_SERVER['HTTPS']='on'; } |
Enable SSL
update wp_options set option_value="https://yourdomain.extn" where option_name="siteurl" or option_name="home";
Increase wordpress memory
Add the following to wp-config.php
1 |
define( 'WP_MEMORY_LIMIT', '256M' ); |