Common PHP issues

Common PHP issues and their solutions.

Memory Limit Errors

Increase memory in php.ini or .htaccess:

memory_limit = 256M

Execution Time Errors

Increase max execution time:

max_execution_time = 300

Input Variables Limit

For Theme Options saving issues:

max_input_vars = 4000

PHP Version

Ensure you're running PHP 7.4 or higher for best compatibility.

Contact your hosting provider if you cannot change these settings.