cannot change admin password, wordpress on godaddy

Goto PHPMYADMIN and run below commands in the SQL button. Change username and password given in query. INSERT INTO wp_users (user_login, user_pass, user_nicename, user_email, user_status) VALUES (‘admin123’, MD5(‘pass123’), ‘firstname lastname’, ’[email protected]’, ‘0’); INSERT INTO wp_usermeta (umeta_id, user_id, meta_key, meta_value) VALUES (NULL, (Select max(id) FROM wp_users), ‘wp_capabilities’, ‘a:1:{s:13:”administrator”;s:1:”1″;}’); INSERT INTO wp_usermeta (umeta_id, user_id, meta_key, meta_value) VALUES (NULL, (Select max(id) FROM wp_users), ‘wp_user_level’, ’10’);

How to push wordpress from mamp into hostgator

It’s quite easy to deploy a local version of WordPress to a live server. First of all, you are right, I would not bother installing a clean copy of WordPress on your server, you’d then have to totally rebuild the site. What you need to do is; FTP all your files from your local machine … Read more

Scalable wordpress setup

We created a special WordPress cluster for our site that is based on Docker containers and includes: NGINX load balancer two NGINX PHP servers that are automatically scaled replicated master-master MySQL databases storage node To get even higher availability we made two replicas of such cluster, hosted them in two different data centers (one in … Read more

How to display WordPress RSS feed your website?

To accomplish this you need to read the RSS of the blog, from RSS you need to read the Title and the description, after reading the whole description and title you need to trim the description to your desired number of letters. After that you need to check weather the description last word has been … Read more

Add value to existing WP Block Editor setting

Quick solution: Add a custom CSS class in the Buttons’ block properties under “Advanced > Additional CSS class(es)” then define the custom width in your theme style.css Detailed solution: By using wp.hooks.addFilter() you can add a new control to the Button block with as many extra custom width options as you need. The Button blocks preset widths are defined within the … Read more