- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
$xml = @simplexml_load_string($sXMLdata,'SimpleXMLElement',LIBXML_NONET);
$xml = @simplexml_load_string($sXMLdata,'SimpleXMLElement',LIBXML_NONET | LIBXML_PARSEHUGE);
Votre serveur est sous Nginx ou Apache?
personnellement, sur un serveur Nginx j'ai du:
1. Dans nginx.conf, ajouter les lignes:
client_max_body_size 200M;
client_header_timeout 6000;
client_body_timeout 6000;
fastcgi_read_timeout 6000;
2. Dans php.ini changer/ajouter:
(post_max_size est très important)
post_max_size = 200M
max_execution_time = 6000
max_input_time = 6000
memory_limit = 300M
default_socket_timeout = 6000