How to Fix PHP Time Limit Issue?
Fix the PHP time limit (max_execution_time) error when importing large UiChemy templates into Elementor.
One common issue when importing a large or complex Figma design with large images into Elementor via UiChemy is the max_execution_time (PHP time limit) issue. The import takes a while and then shows an Internal Server Issue error.

Why Does This Happen?
When you click Export to Elementor in UiChemy, the images used in your Figma layout upload to our cloud server. When you import the template, the time it takes depends on factors like image size, your network speed, and your server location.
By default, WordPress has a PHP time limit (max_execution_time) of 30 seconds, if your import takes longer, it times out and shows the error.
How to Check Your PHP Time Limit
- From the Dashboard, go to Tools → Site Health.
- Go to Info → Server, you'll see your current PHP time limit here.

We recommend a PHP time limit of 300 seconds.
How to Increase the PHP Time Limit
Increasing the PHP time limit is a bit technical, and varies by host, your best option is to contact your host and ask them to increase it. If that's not possible, try one of these:
Using PHP.ini
Most small hosting providers don't give you access to php.ini, but if you have it, add:
max_execution_time = 300;
Using wp-config.php
Go to your WordPress installation directory, edit wp-config.php, and add:
set_time_limit(300);

Using .htaccess
Open your .htaccess file and add:
max_execution 300

Be careful editing .htaccess, changes made without care can make your site inaccessible.
Once you've made the change, check the server info in Site Health again to confirm it took effect.

If you're using InstaWP, follow their guide to increase the PHP time limit.
To reduce the risk of hitting this issue in the first place, you can export your Figma template without images, or export with scaled images to reduce execution time.
Frequently Asked Questions
What should I do if I encounter an Internal Server Issue while importing a Figma design?
This usually comes from the default 30-second PHP time limit. Increase it to 300 seconds, for example, by adding set_time_limit(300); to wp-config.php.
Is there a best practice for exporting Figma designs to avoid PHP time limit issues?
Export your template without images, or with scaled images, to reduce import time and the chance of timing out.
What factors affect the PHP time limit when importing designs with UiChemy?
Image size in your Figma design, your network speed, and your server location, larger images and slower connections increase the risk of hitting the limit.