Is there a way to change the timeout values in Konqueror?
Beginning with 2.2 beta series, you can change the timeout settings in the control panel under “Network->Preferences”. If you are using the 2.1 series, however, you have to manipulate the config file manually to adjust these values to your liking. Here is the procedure for doing that: • Open $KDEHOME/share/config/kioslaverc in your favorite editor, where $KDEHOME is your local kde config directory (usually ~/.kde/). • Add the following entries without any HEADING, i.e outside of any [] block. Simply adding it to the top of the file will suffice. ReadTimeout=x // length of time to wait for arrival of requested data ResponseTimeout=x // length of time to wait for a response after sending a request ConnectTimeout=x // length of time to wait for response after attempting to connect ProxyConnectTimeout=x // same a above except it is used for proxy servers. where x is the value you need in seconds. To give you an idea, here are the default values: DEFAULT_READ_TIMEOUT 15 // 15 SECONDS DEFAUL
You can change the timeout settings in the system settings under “Network->Connection Preferences”. If you would rather do it by hand, the configuration file for this is $KDEHOME/share/config/kioslaverc, where $KDEHOME is your local kde config directory (usually ~/.kde/). • Add the following entries without any HEADING, i.e outside of any [] block. Simply adding it to the top of the file will suffice. ReadTimeout=x // length of time to wait for arrival of requested data ResponseTimeout=x // length of time to wait for a response after sending a request ConnectTimeout=x // length of time to wait for response after attempting to connect ProxyConnectTimeout=x // same a above except it is used for proxy servers. where x is the value you need in seconds.