PHP request takes too long to process and is timed out by WordPress

PHP Error

What do you need to do first?

You need to modify the .htaccess file in the main root of your WordPress directory.

# START LiteSpeed Timeout Solution
php_value upload_max_filesize 128M
php_value post_max_size 128M
php_value max_execution_time 300
php_value max_input_vars 3000
php_value memory_limit 256M

<IfModule Litespeed>
SetEnv noabort 1
SetEnv noconntimeout 1
</IfModule>

set_time_limit(1500)
# END LiteSpeed Timeout Solution

Once completed make sure you refresh your page so it uses the new rules from .htaccess

Your issue should now be resolved!

How to Solve PHP 8.0 Critical Error with cPanel?

Computer Error

PHP 8.0 Causing Critical Error on cPanel Site

Ever seen this critical error before?

Critical Error Message for WordPress
Critical Error Message for WordPress

There are a number of reasons this message can show up. One of the main reasons when switching to PHP 8.0 is due to an extension not being enabled. We can fix that!

  1. login to your control panel
  2. goto Php Selector option
  3. enable nd_mysqli
PHP 8.0 Required Extension to Fix Critical Error - Solution
  1. Once nd_mysqli is enabled your website will start working

Congratulations