- 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 Redirect Visitor On 404 Error
- WPScan WordPress Security Scanner
WordPress Installation
WordPress Migration
- Change WordPress URL
- How to extract wpress file
- WordPress Avada theme load fontawesome from old site
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 the following code to wp-config.php to get WordPress work behind a reverse proxy
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
define( 'WP_MEMORY_LIMIT', '256M' );
Leave a Reply