Dit moet afhankelijk van de hosting provider in .htaccess of in .user.ini
.htaccess
# START Recommended PHP values (Divi theme)
php_value display_errors 0
php_value max_execution_time 180
php_value memory_limit 256M
php_value max_input_time 180
php_value max_input_vars 3000
php_value post_max_size 64M
php_value upload_max_filesize 64M
# STOP Recommended PHP values (Divi theme)Code language: PHP (php)
.user.ini {#user.ini}
If it doesn’t work like this (Hostnet), remove the ” around the values.
; START Recommended PHP values (Divi theme)
display_errors = "0"
max_execution_time = "180"
memory_limit = "256M"
max_input_time = "180"
max_input_vars = "3000"
post_max_size = "64M"
upload_max_filesize = "64M"
; STOP Recommended PHP values (Divi theme)Code language: JavaScript (javascript)