Tuesday, August 17, 2010

Lite speed webserver + Connection was reset ?

Guys,

As per my knowledge either session is being expired or another processes or connections are initiating to setup the new connections. This violates to disconnect the established connection. For my case, above error messages usually came out when maximum execution time of the php variable was less than total time required for uploading file. I have increased the value of the variable. Our server lsws has compiled as a CGI sapi and I put the variable in the htaccess file. Here are those my tuned values.

====
root@server [/home/test123/public_html]# tail -15 ~test123/public_html/.htaccess |head -10
php_value post_max_size 900M
php_value upload_max_filesize 900M
php_value max_execution_time 172800
php_value , 172800
php_value session.gc_maxlifetime 172800
php_value output_buffering on
php_value mysql.connect_timeout 86400
root@server [/home/test123/public_html]
====

You can increase the value of ax_execution_time, max_input_time and session.gc_maxlifetime in the php.ini file when php has compiled as a dso module with the webserver. Please note that you need to copy the global php.ini file inside the public_html directory. Then change the value.

Try :)

No comments:

Post a Comment