Looks like somethings gone wrong. Wait a couple seconds, and then try again.

⚠️ Looks like something’s gone wrong. Wait a couple seconds, and then try again.

When editing the menu in customizer the changes failed to save with the error message: Looks like something’s gone wrong. Wait a couple seconds, and then try again. And when inspecting the page the following error appears: POST http://plugins.club/wp-admin/admin-ajax.php 403 (Forbidden) The 403 error is caused by something blocking access to the file such as … Read full article →

curl error 60 - How to fix curl error 60: SSL certificate problem: certificate has expired error ✅

How to fix curl error 60: SSL certificate problem: certificate has expired error ✅

From September 30, 2021, WordPress websites that use Let’s Encrypt certificates are having issues with HTTP API requests. For example, here is an example that will cause this error: $res = wp_remote_get( ‘https://abcdef.com/’ ); if( is_wp_error( $res ) ){ echo $res->get_error_message(); } the error message: cURL error 60: SSL certificate problem: certificate has expired What causes this error? … Read full article →

Missing a temporary folder - Hot to fix error: Missing a temporary folder. ✔️

Hot to fix error: Missing a temporary folder. ✔️

Missing a temporary folder. WordPress error can be caused for multiple reasons: How to fix this error: 1. Enable required extensions Check if required extensions are enabled in Tools > Site Health: If they are not, enable them from cPanel > PHP Selector 2. Check wp-config.php for WP_TEMP_DIR Check if a custom path for file … Read full article →

cant edit plugins - Can’t Add or Install Plugins in WordPress

Can’t Add or Install Plugins in WordPress

Q: Why can’t I add plugins in WordPress? A: The following code was added to wp-config.php file that disables file editing and uploading. Simply remove these files from the wp-config.php file and then refresh the wp-admin page.

wpadmin issue - wp-admin works but not website 🤔

wp-admin works but not website 🤔

Is your wp-admin working, but the front-end is white page? This usually happens when a certain WordPress plugin is running up against the PHP Memory Limit. Check your error_log file for any error messages that confirm this: Edit the file /etc/php7/apache2/php.ini and increase the memory limit: Increase the limit and then restart Apache. I also suggest … Read full article →