DO NOT UPGRADE GLOBAL TABLES WPXSS - DO_NOT_UPGRADE_GLOBAL_TABLES

DO_NOT_UPGRADE_GLOBAL_TABLES

DO_NOT_UPGRADE_GLOBAL_TABLES is a WordPress constant that can be added to the wp-config.php file in order to avoid the upgrade functions from doing expensive queries against global tables. To enable it, simply add the following to your wp-config.php file: WordPress websites that use bbPress have large users and usermeta tables. When upgrades are running, ALTER, DELETE … Read full article →

Reset WordPress password from the command line - Reset WordPress password from the command line

Reset WordPress password from the command line

1. log in to the MySQL: mysql -u root -p; 2. Select the database: use database_name; 3. List all users: select * from wp_users\G 4. Change the password for the user you require: UPDATE wp_users SET user_pass=MD5(‘new_password_here’) where ID=user_id_here;

wp xml to markdown - Convert WordPress to Markdown

Convert WordPress to Markdown

Export WordPress posts to XML an then convert it into Markdown files suitable for a static site generator such as Gridsome, Gatsby, Hugo, Jekyll, etc. Step 1. Export WordPress to XML Navigate to Tools > Export and Select “All Content” File will be saved as [website].WordPress. [DATE].xml Step 3. Install NodeJS & Git Make sure … Read full article →

Increase WordPress Security using the wp config php file - Increase WordPress Security using wp-config.php

Increase WordPress Security using wp-config.php

Here are some examples of security configurations that can be added to your WordPress website’s wp-config.php file: Disable file editing define( ‘DISALLOW_FILE_EDIT’, true ); This configuration will disable the built-in WordPress file editor, which can prevent users from accidentally or intentionally making changes to the core WordPress files. Change the default database table prefix $table_prefix … Read full article →

Happy New Year WordPress 2023 - New Ideas For 2023? 🎊🥳🕺

New Ideas For 2023? 🎊🥳🕺

We wish all our readers a Happy and Healthy New Year! We hope you enjoyed WPXSS in 2022 and that you will keep reading our blog in the coming years! To make the site more interesting for you, I would like to hear from you, what you like to read on our blog!

I would greatly appreciate it if you can provide us with new ideas and suggestions on what we could write about in 2023. We like to have user-driven content – unique and helpful posts, that the vast majority of visitors find worth reading. So leave your ideas in our comment area and I will try my best to cover them in the upcoming year. 🥳

I wish everyone a Happy New Year!

stefanpejcic signature - New Ideas For 2023? 🎊🥳🕺
Banned Why Kinsta error message - Kinsta Banned Plugins

Kinsta Banned Plugins

Kinsta has a list of Banned plugins that they don’t allow to be used on their hosting. The complete list of plugins can be viewed here: https://kinsta.com/knowledgebase/banned-plugins/ But even after you migrate your WordPress website from Kinsta to another hosting provider, you are left with this annoying Banned Why? message on some plugins. To get … Read full article →

How to Rename wp login.php  - How to Rename wp-login.php

How to Rename wp-login.php

It is generally not recommended to rename the wp-login.php file in a WordPress installation as this can cause issues with the WordPress site and may make it difficult or impossible to log in to the WordPress administration panel. However, if you still want to rename the wp-login.php file, you can do so by following these … Read full article →

installatron wp - How To Install WordPress Using cPanel and Installatron

How To Install WordPress Using cPanel and Installatron

Installatron allows you to easily with a few clicks install any application in your hosting account, and the installation process is the same for many applications. To install WordPress, follow these steps: Step 1. In the “Software” section of the cPanel, click the Installatron icon. Step 2. Click on the “Application Browser” > WordPress Step … Read full article →