Skip to main content
deleted 28 characters in body
Source Link
Dharman
  • 33.9k
  • 27
  • 103
  • 155

You are using PHP/5.3.3 which has some serious bugs too ... I would adviceadvise you to work with a more recent version of PHP and CURL

One common cause of this error is that the MTU (Maximum Transmission Unit) size of packets travelling over your network connection havehas been changed from the default of 1500 bytes. If you have configured a VPN this most likely must changed during configuration

Try on a different server or on a remote server ( So many free cloud hosting online) and test the same script .. ifIf it works then my guesses are correct ... You need to update your system

I hope it helps

You are using PHP/5.3.3 which has some serious bugs too ... I would advice you to work with a more recent version of PHP and CURL

One common cause of this error is that the MTU (Maximum Transmission Unit) size of packets travelling over your network connection have been changed from the default of 1500 bytes. If you have configured a VPN this most likely must changed during configuration

Try on a different server or on a remote server ( So many free cloud hosting online) and test the same script .. if it works then my guesses are correct ... You need to update your system

I hope it helps

You are using PHP/5.3.3 which has some serious bugs too ... I would advise you to work with a more recent version of PHP and CURL

One common cause of this error is that the MTU (Maximum Transmission Unit) size of packets travelling over your network connection has been changed from the default of 1500 bytes. If you have configured a VPN this most likely must changed during configuration

Try on a different server or on a remote server ( So many free cloud hosting online) and test the same script. If it works then my guesses are correct ... You need to update your system

It might be a TCP/IP issue you need to resolve with your host or upgrade your OS most times connection is close beforeclosed with remote server before it finished downloading the content resulting toin Connection reset by peer.....

B. KannelKernel Bug

You are using PHP/5.3.3 which has some serious bugs too ... iI would advice you to work with a more recent version of PHP and CURL

One common cause of this error is that the MTU (Maximum Transmission Unit) size of packets travelling over your network connection have been changed from the default of 1500 bytes. If you have configured a VPN this most likely must changed during configuration

If you don't know your way around thisthese guys they wouldcan cause some serious issues .. try and access the server you are connecting to check the following

Try on a different server or on a remote server ( So many feefree cloud hosting online) and test the same script .. if it works then imy guesses are as good as truecorrect ... You need to update your system

If Yii::app()->params['pdfUrl'] is a url with https not including proper SSL settingsettings can also cause this error in old version of curl

It might be TCP/IP issue you need to resolve with your host or upgrade your OS most times connection is close before remote server before it finished downloading the content resulting to Connection reset by peer.....

B. Kannel Bug

You are using PHP/5.3.3 which has some serious bugs too ... i would advice you work with a more recent version of PHP and CURL

One common cause of this error is that the MTU (Maximum Transmission Unit) size of packets travelling over your network connection have been changed from the default of 1500 bytes. If you have configured VPN this most likely must changed during configuration

If you don't know your way around this guys they would cause some serious issues .. try and access the server you are connecting to check the following

Try a different server or remote server ( So many fee cloud hosting online) and test the same script .. if it works then i guesses are as good as true ... You need to update your system

If Yii::app()->params['pdfUrl'] is a url with https not including proper SSL setting can also cause this error in old version of curl

It might be a TCP/IP issue you need to resolve with your host or upgrade your OS most times connection is closed with remote server before it finished downloading the content resulting in Connection reset by peer.....

B. Kernel Bug

You are using PHP/5.3.3 which has some serious bugs too ... I would advice you to work with a more recent version of PHP and CURL

One common cause of this error is that the MTU (Maximum Transmission Unit) size of packets travelling over your network connection have been changed from the default of 1500 bytes. If you have configured a VPN this most likely must changed during configuration

If you don't know your way around these guys they can cause some serious issues .. try and access the server you are connecting to check the following

Try on a different server or on a remote server ( So many free cloud hosting online) and test the same script .. if it works then my guesses are correct ... You need to update your system

If Yii::app()->params['pdfUrl'] is a url with https not including proper SSL settings can also cause this error in old version of curl

Bounty Awarded with 250 reputation awarded by CommunityBot
Better Formatting , More Reasons
Source Link
Baba
  • 95.3k
  • 29
  • 172
  • 222

D. Maximum Transmission UnitFirewall : iptables

One common cause ofIf you don't know your way around this error is that the MTUguys they would cause some serious issues (Maximum Transmission Unit) size of packets travelling over your network connection have been changed from the default of 1500 bytes. If. try and access the server you have configured VPN this most likely must changed during configurationare connecting to check the following

  • You have access to port 80 on that server

Example

 -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT`
  • The Following is at the last line not before any other ACCEPT

Example

  -A RH-Firewall-1-INPUT -j REJECT --reject-with icmp-host-prohibited 
  • Check for ALL DROP , REJECT and make sure they are not blocking your connection

  • Temporary allow all connection as see if it foes through

D. Maximum Transmission Unit

One common cause of this error is that the MTU (Maximum Transmission Unit) size of packets travelling over your network connection have been changed from the default of 1500 bytes. If you have configured VPN this most likely must changed during configuration

D. Firewall : iptables

If you don't know your way around this guys they would cause some serious issues .. try and access the server you are connecting to check the following

  • You have access to port 80 on that server

Example

 -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT`
  • The Following is at the last line not before any other ACCEPT

Example

  -A RH-Firewall-1-INPUT -j REJECT --reject-with icmp-host-prohibited 
  • Check for ALL DROP , REJECT and make sure they are not blocking your connection

  • Temporary allow all connection as see if it foes through

added 1233 characters in body
Source Link
Baba
  • 95.3k
  • 29
  • 172
  • 222
Loading
added php 5.3.3 curl bug links
Source Link
Baba
  • 95.3k
  • 29
  • 172
  • 222
Loading
Source Link
Baba
  • 95.3k
  • 29
  • 172
  • 222
Loading