To use SKT Admire, you must be running WordPress 5.6 or higher, PHP7.4 or higher, and MySQL version 5.7 or MariaDB version 10.4 or higher. We have tested it with Mac, Windows and Linux. Below is a list of items you should ensure your host can comply with.
Requirement PHP Configuration Limits
Many issues that you may run into such as: white screen, demo content fails when importing, empty page content and other similar issues are all related to low PHP configuration limits. The solution is to increase the PHP limits. You can do this on your own, or contact your web host and ask them to increase those limits to a minimum as follows:
Memory Size: memory_limit = 256M
Script execution time: max_execution_time = 300
Script input time: max_input_time = 300
Number of input variables: max_input_vars = 5000
upload_max_filesize = 32M
post_max_size = 32M
If you don’t have access to the php.ini file, you can add the following values in your .htaccess
file:
php_value memory_limit 256M
php_value max_execution_time 300
php_value max_input_time 300
php_value max_input_vars 5000
php_value upload_max_filesize 32M
php_value post_max_size 32M